luci-theme-material: add missing css classes 1696/head
authorFlorian Eckert <fe@dev.tdt.de>
Fri, 23 Mar 2018 08:35:26 +0000 (09:35 +0100)
committerFlorian Eckert <fe@dev.tdt.de>
Fri, 23 Mar 2018 09:31:46 +0000 (10:31 +0100)
* Add missing css class danger
* Add missing css class success
* Update background color for css class warning

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
themes/luci-theme-material/htdocs/luci-static/material/css/style.css

index 545c5fb..57bbaf6 100755 (executable)
@@ -253,9 +253,19 @@ header > .container > .brand {
     vertical-align: text-bottom;
 }
 
+.danger {
+    background-color: #FA8072 !important;
+    color: black;
+}
+
 .warning {
-    background-color: #FF7D60 !important;
-    color: #FFF;
+    background-color:  #F0E68C !important;
+    color: black;
+}
+
+.success {
+    background-color: #90EE90 !important;
+    color: black;
 }
 
 .errorbox,
@@ -1546,4 +1556,4 @@ body.lang_pl.node-main-login .cbi-value-title {
     .cbi-value-field .cbi-input-select {
         min-width: 25rem;
     }
-}
\ No newline at end of file
+}