luci-theme-material: Add main color variable 2236/head
authorSimon Tretter <simon@mediaarchitectu.re>
Sun, 21 Oct 2018 03:50:55 +0000 (11:50 +0800)
committerSimon Tretter <simon@mediaarchitectu.re>
Sun, 21 Oct 2018 03:50:55 +0000 (11:50 +0800)
Signed-off-by: Simon Tretter <simon@mediaarchitectu.re>
themes/luci-theme-material/htdocs/luci-static/material/cascade.css
themes/luci-theme-material/htdocs/luci-static/material/custom.css

index 65aaf73be0e7b07069ec7d8ee7c2ef04759bfd7a..6961bfe2d762d94a8b3e24dda96dc846ea577513 100644 (file)
@@ -154,7 +154,7 @@ input,
 
 select:not([multiple="multiple"]):focus,
 input:focus {
-    border-color: #0099CC;
+    border-color: var(--main-color, #0099CC);
 }
 
 select[multiple="multiple"] {
@@ -162,7 +162,7 @@ select[multiple="multiple"] {
 }
 
 code {
-    color: #0099CC;
+    color: var(--main-color, #0099CC);
 }
 
 abbr {
@@ -457,7 +457,7 @@ header > .fill > .container > .status {
 }
 
 .main > .main-left > .nav > .slide > .slide-menu > .active:hover {
-    background-color: #0099CC;
+    background-color: var(--main-color, #0099CC);
     cursor: hand;
 }
 
@@ -615,7 +615,7 @@ div > .table > .tbody > .tr:nth-of-type(2n) {
 #conns > div > div,
 #memtotal > div > div {
     height: 100% !important;
-    background-color: #0099CC !important;
+    background-color: var(--main-color, #0099CC) !important;
 }
 
 /* fix multiple table */
@@ -796,13 +796,13 @@ td > table > tbody > tr > td,
 .tabs > li[class~="active"],
 .tabs > li:hover {
     cursor: pointer;
-    border-bottom: 0.2rem solid #0099CC;
-    color: #0099CC;
+    border-bottom: 0.2rem solid var(--main-color, #0099CC);
+    color: var(--main-color, #0099CC);
     margin-bottom: -0.18751rem;
 }
 
 .tabs > li[class~="active"] > a {
-    color: #0099cc;
+    color: var(--main-color, #0099CC);
 }
 
 .tabs > li:hover {
index adb9c753e2ba450b10e4cf53e35594b301adb2a9..e53ac6db4cc31147ea4c9cfa94da7fc0e65d624e 100644 (file)
@@ -1,5 +1,6 @@
 
 :root {
+       --main-color: #0099CC;
        --header-bg: #0099CC;
        --header-color: #FFFFFF;
        --menu-bg-color: #FFFFFF;