Skip to content

Commit

Permalink
Merge pull request #7907 from ddevsr/patch-1
Browse files Browse the repository at this point in the history
fix: [DebugBar] dark mode `timeline-color-open` color text on `Debug`
  • Loading branch information
kenjis authored Sep 11, 2023
2 parents 6c4f668 + 7b901c5 commit 10b2514
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions admin/css/debug-toolbar/_theme-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@
.timer {
background-color: $g-orange;
}

.timeline-parent-open td {
color: $t-dark;
}
}
}

Expand Down
6 changes: 6 additions & 0 deletions system/Debug/Toolbar/Views/toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,9 @@
#debug-bar .timeline .timer {
background-color: #DD8615;
}
#debug-bar .timeline .timeline-parent-open td {
color: #252525;
}
.debug-view.show-view {
border-color: #DD8615;
}
Expand Down Expand Up @@ -644,6 +647,9 @@
#toolbarContainer.dark #debug-bar .timeline .timer {
background-color: #DD8615;
}
#toolbarContainer.dark #debug-bar .timeline .timeline-parent-open td {
color: #252525;
}
#toolbarContainer.dark .debug-view.show-view {
border-color: #DD8615;
}
Expand Down

0 comments on commit 10b2514

Please sign in to comment.