summaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css17
1 files changed, 16 insertions, 1 deletions
diff --git a/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css b/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css
index e96c01914..595656eed 100644
--- a/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css
+++ b/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css
@@ -153,6 +153,12 @@ body {
padding: 1em;
}
+#mainmenu:empty {
+ max-width: 0;
+ padding: 1em 0;
+ transition: all .2s ease-in-out;
+}
+
#mainmenu > div {
position: sticky;
top: 1em;
@@ -976,6 +982,10 @@ button[disabled], button.disabled, .btn[disabled], .btn.disabled {
opacity: .6;
}
+.cbi-checkbox input[type="checkbox"][disabled] {
+ pointer-events: none;
+}
+
input:not([type]),
input[type="text"],
input[type="password"],
@@ -1002,7 +1012,8 @@ select:focus,
input[disabled]:not([type]),
input[disabled][type="text"],
input[disabled][type="password"],
-select[disabled] {
+select[disabled],
+.cbi-dynlist[disabled] {
opacity: .6;
pointer-events: none;
}
@@ -1149,6 +1160,10 @@ textarea {
pointer-events: all;
}
+.cbi-dynlist[disabled] > .item::after {
+ pointer-events: none;
+}
+
.cbi-dynlist > .item:hover {
box-shadow: 0 0 2px var(--main-bright-color);
}