diff options
author | james <28635265+JimMatthew@users.noreply.github.com> | 2024-03-12 11:12:12 -0500 |
---|---|---|
committer | Paul Donald <itsascambutmailmeanyway@gmail.com> | 2024-03-12 20:24:06 +0100 |
commit | 056407754d00e05a432f38b51c6ad103a1a12a6d (patch) | |
tree | 5818d0c45a3c0aa524a3741c95f06988c4b693dd /themes/luci-theme-bootstrap/htdocs | |
parent | 7053272b559e17415966e5b8e935b2630dee688b (diff) |
luci-theme-bootstrap: Realtime Graphs dark mode
This feature is to have the realtime graphs dark when using Bootstrap Dark Theme
Signed-off-by: james <jameslindstrom2@gmail.com>
Diffstat (limited to 'themes/luci-theme-bootstrap/htdocs')
-rw-r--r-- | themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css index e4a669a43f..37063627bc 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -2565,3 +2565,15 @@ div.cbi-value var.cbi-tooltip-container, [data-page="admin-system-admin-sshkeys"] .cbi-dynlist { max-width: none; } + +[data-darkmode="true"] [data-page="admin-status-realtime-load"] #view > div[style] { + background-color: var(--background-color-high)!important; +} + +[data-darkmode="true"] [data-page="admin-status-realtime-bandwidth"] #view > div > div > div > div[style] { + background-color: var(--background-color-high)!important; +} + +[data-darkmode="true"] [data-page="admin-status-realtime-connections"] #view > div[style] { + background-color: var(--background-color-high)!important; +} |