From: Jo-Philipp Wich Date: Sun, 18 Feb 2024 22:22:58 +0000 (+0100) Subject: luci-theme-bootstrap: add dropdown option hover styles X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=f57514d63ca23ec3020a5605a039ac0b228e994d;p=project%2Fluci.git luci-theme-bootstrap: add dropdown option hover styles Subsequent commits will drop the JS based mouse following focus behavior, so add appropriate replacement CSS hover styles. Ref: #6903 Signed-off-by: Jo-Philipp Wich --- diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css index f1b6dccab2..e4a669a43f 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -1716,12 +1716,14 @@ body.modal-overlay-active #modal_overlay { color: var(--on-primary-color); } -.cbi-dropdown[open] > ul.dropdown > li.focus { +.cbi-dropdown[open] > ul.dropdown > li.focus, +.cbi-dropdown[open] > ul.dropdown > li:hover { background: var(--primary-color-low); color: var(--on-primary-color); } -.cbi-dropdown[open] > ul.dropdown > li[selected].focus { +.cbi-dropdown[open] > ul.dropdown > li[selected].focus, +.cbi-dropdown[open] > ul.dropdown > li[selected]:hover { background: linear-gradient(90deg, var(--primary-color-medium) 50%, var(--primary-color-low)); }