luci-theme-bootstrap: allow pointer events on readonly textareas and dropdowns

This is required to scroll and select text.

Fixes #1965
Fixes 887d0a685 ("luci-theme-bootstrap: cleanup CSS")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2018-07-19 16:50:50 +02:00
parent 39cabc0361
commit a68006245d

View file

@ -598,6 +598,12 @@ textarea[readonly] {
cursor: default;
}
select[readonly],
textarea[readonly] {
pointer-events: auto;
cursor: auto;
}
.cbi-optionals,
.cbi-section-create {
padding: 0 0 10px 10px;