From: Jo-Philipp Wich Date: Thu, 16 Apr 2020 11:19:56 +0000 (+0200) Subject: luci-theme-openwrt-2020: disabled widget style tweaks X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=52486e5862926294fd6ea1b6db48bf1ae515d7a6;p=oweals%2Fluci.git luci-theme-openwrt-2020: disabled widget style tweaks Signed-off-by: Jo-Philipp Wich --- 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); }