Skip to content

Commit 37af29e

Browse files
authored
Merge pull request #8125 from kenjis/fix-toolbar-dark-mode
fix: [DebugBar] dark mode timeline "Controller"
2 parents 2df4a3f + e3440d7 commit 37af29e

File tree

3 files changed

+4
-31
lines changed

3 files changed

+4
-31
lines changed

admin/css/debug-toolbar/_theme-dark.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,6 @@
150150
.timer {
151151
background-color: $g-orange;
152152
}
153-
154-
.timeline-parent-open td {
155-
color: $t-dark;
156-
}
157153
}
158154
}
159155

contributing/css.md

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ the official website: <https://sass-lang.com/install>
99
Open your terminal, and navigate to CodeIgniter's root folder. To
1010
generate the CSS file, use the following command:
1111

12-
`sass --no-source-map admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css`
12+
```console
13+
sass --no-source-map admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css`
14+
```
1315

1416
Details:
1517
- `--no-source-map` is an option which prevents sourcemap files from being generated
@@ -18,23 +20,4 @@ Details:
1820

1921
## Color scheme
2022

21-
**Themes**
22-
23-
Dark: `#252525` / `rgb(37, 37, 37)`
24-
Light: `#FFFFFF` / `rgb(255, 255, 255)`
25-
26-
**Glossy colors**
27-
28-
Blue: `#5BC0DE` / `rgb(91, 192, 222)`
29-
Gray: `#434343` / `rgb(67, 67, 67)`
30-
Green: `#9ACE25` / `rgb(154, 206, 37)`
31-
Orange: `#DD8615` / `rgb(221, 134, 21)`
32-
Red: `#DD4814` / `rgb(221, 72, 20)`
33-
34-
**Matt colors**
35-
36-
Blue: `#D8EAF0` / `rgb(216, 234, 240)`
37-
Gray: `#DFDFDF` / `rgb(223, 223, 223)`
38-
Green: `#DFF0D8` / `rgb(223, 240, 216)`
39-
Orange: `#FDC894` / `rgb(253, 200, 148)`
40-
Red: `#EF9090` / `rgb(239, 144, 144)`
23+
See [_graphic-charter.scss](../admin/css/debug-toolbar/_graphic-charter.scss).

system/Debug/Toolbar/Views/toolbar.css

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -532,9 +532,6 @@
532532
#debug-bar .timeline .timer {
533533
background-color: #DD8615;
534534
}
535-
#debug-bar .timeline .timeline-parent-open td {
536-
color: #252525;
537-
}
538535
.debug-view.show-view {
539536
border-color: #DD8615;
540537
}
@@ -647,9 +644,6 @@
647644
#toolbarContainer.dark #debug-bar .timeline .timer {
648645
background-color: #DD8615;
649646
}
650-
#toolbarContainer.dark #debug-bar .timeline .timeline-parent-open td {
651-
color: #252525;
652-
}
653647
#toolbarContainer.dark .debug-view.show-view {
654648
border-color: #DD8615;
655649
}

0 commit comments

Comments
 (0)