summaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorFlorian Eckert <fe@dev.tdt.de>2018-03-23 09:35:26 +0100
committerFlorian Eckert <fe@dev.tdt.de>2018-03-23 10:31:46 +0100
commit2729f128c8571a6a79311c183f6b728c9161c1f0 (patch)
tree750a6b96ffe38cfdee6113dff2c3c78778d6748a /themes
parent10e5171ea6e971ce882b8a2257f70699fdd26f8a (diff)
luci-theme-material: add missing css classes
* 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>
Diffstat (limited to 'themes')
-rwxr-xr-xthemes/luci-theme-material/htdocs/luci-static/material/css/style.css16
1 files changed, 13 insertions, 3 deletions
diff --git a/themes/luci-theme-material/htdocs/luci-static/material/css/style.css b/themes/luci-theme-material/htdocs/luci-static/material/css/style.css
index 545c5fb3f..57bbaf6af 100755
--- a/themes/luci-theme-material/htdocs/luci-static/material/css/style.css
+++ b/themes/luci-theme-material/htdocs/luci-static/material/css/style.css
@@ -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
+}