From 51391df5933d474595e12a9b96685d66aa19a039 Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 30 Oct 2023 16:28:25 +0900 Subject: [PATCH 1/2] fix: cannot see "Controller" row in dark mode --- admin/css/debug-toolbar/_theme-dark.scss | 4 ---- system/Debug/Toolbar/Views/toolbar.css | 6 ------ 2 files changed, 10 deletions(-) diff --git a/admin/css/debug-toolbar/_theme-dark.scss b/admin/css/debug-toolbar/_theme-dark.scss index 5f68f8c20b5f..ead7d02a58e3 100644 --- a/admin/css/debug-toolbar/_theme-dark.scss +++ b/admin/css/debug-toolbar/_theme-dark.scss @@ -150,10 +150,6 @@ .timer { background-color: $g-orange; } - - .timeline-parent-open td { - color: $t-dark; - } } } diff --git a/system/Debug/Toolbar/Views/toolbar.css b/system/Debug/Toolbar/Views/toolbar.css index 89555b4f7d40..8a302b4019e9 100644 --- a/system/Debug/Toolbar/Views/toolbar.css +++ b/system/Debug/Toolbar/Views/toolbar.css @@ -532,9 +532,6 @@ #debug-bar .timeline .timer { background-color: #DD8615; } - #debug-bar .timeline .timeline-parent-open td { - color: #252525; - } .debug-view.show-view { border-color: #DD8615; } @@ -647,9 +644,6 @@ #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 e3440d756071373cc3f20c90677e7c727fad0745 Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 30 Oct 2023 16:29:56 +0900 Subject: [PATCH 2/2] docs: update css.md --- contributing/css.md | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/contributing/css.md b/contributing/css.md index 7accf5e83801..267d4f7a5609 100644 --- a/contributing/css.md +++ b/contributing/css.md @@ -9,7 +9,9 @@ the official website: Open your terminal, and navigate to CodeIgniter's root folder. To generate the CSS file, use the following command: -`sass --no-source-map admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css` +```console +sass --no-source-map admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css` +``` Details: - `--no-source-map` is an option which prevents sourcemap files from being generated @@ -18,23 +20,4 @@ Details: ## Color scheme -**Themes** - -Dark: `#252525` / `rgb(37, 37, 37)` -Light: `#FFFFFF` / `rgb(255, 255, 255)` - -**Glossy colors** - -Blue: `#5BC0DE` / `rgb(91, 192, 222)` -Gray: `#434343` / `rgb(67, 67, 67)` -Green: `#9ACE25` / `rgb(154, 206, 37)` -Orange: `#DD8615` / `rgb(221, 134, 21)` -Red: `#DD4814` / `rgb(221, 72, 20)` - -**Matt colors** - -Blue: `#D8EAF0` / `rgb(216, 234, 240)` -Gray: `#DFDFDF` / `rgb(223, 223, 223)` -Green: `#DFF0D8` / `rgb(223, 240, 216)` -Orange: `#FDC894` / `rgb(253, 200, 148)` -Red: `#EF9090` / `rgb(239, 144, 144)` +See [_graphic-charter.scss](../admin/css/debug-toolbar/_graphic-charter.scss).