From 1c4a5e8112a123bcb21e0db0c799bfcc6c2e6d15 Mon Sep 17 00:00:00 2001 From: Denny Septian Panggabean <97607754+ddevsr@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:48:18 +0700 Subject: [PATCH 1/3] fix: dark mode timeline-open color text --- system/Debug/Toolbar/Views/toolbar.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/Debug/Toolbar/Views/toolbar.css b/system/Debug/Toolbar/Views/toolbar.css index 8a302b4019e9..dbcc16ca1492 100644 --- a/system/Debug/Toolbar/Views/toolbar.css +++ b/system/Debug/Toolbar/Views/toolbar.css @@ -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; } From ddcc7d831a0632074a62ff8074e08b19ee9ee124 Mon Sep 17 00:00:00 2001 From: Denny Septian Panggabean Date: Thu, 7 Sep 2023 16:05:48 +0700 Subject: [PATCH 2/3] fix: theme dark scss timeline-parent-open --- admin/css/debug-toolbar/_theme-dark.scss | 4 ++++ system/Debug/Toolbar/Views/toolbar.css | 3 +++ 2 files changed, 7 insertions(+) diff --git a/admin/css/debug-toolbar/_theme-dark.scss b/admin/css/debug-toolbar/_theme-dark.scss index ead7d02a58e3..79cf9d7a85ff 100644 --- a/admin/css/debug-toolbar/_theme-dark.scss +++ b/admin/css/debug-toolbar/_theme-dark.scss @@ -150,6 +150,10 @@ .timer { background-color: $g-orange; } + + .timeline-parent-open td { + color: #252525; + } } } diff --git a/system/Debug/Toolbar/Views/toolbar.css b/system/Debug/Toolbar/Views/toolbar.css index dbcc16ca1492..89555b4f7d40 100644 --- a/system/Debug/Toolbar/Views/toolbar.css +++ b/system/Debug/Toolbar/Views/toolbar.css @@ -647,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; } From 7b901c5118efd8323a3546cd293096623c45f4ba Mon Sep 17 00:00:00 2001 From: Denny Septian Panggabean Date: Thu, 7 Sep 2023 16:07:36 +0700 Subject: [PATCH 3/3] fix: color hex to variable --- admin/css/debug-toolbar/_theme-dark.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/css/debug-toolbar/_theme-dark.scss b/admin/css/debug-toolbar/_theme-dark.scss index 79cf9d7a85ff..5f68f8c20b5f 100644 --- a/admin/css/debug-toolbar/_theme-dark.scss +++ b/admin/css/debug-toolbar/_theme-dark.scss @@ -152,7 +152,7 @@ } .timeline-parent-open td { - color: #252525; + color: $t-dark; } } }