luci-theme-bootstrap, luci-theme-openwrt-2020: fix dynlist overflows
Fixes: #3795 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
0c3152c88d
commit
015712bba0
2 changed files with 4 additions and 1 deletions
|
@ -494,6 +494,8 @@ select,
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
position: relative;
|
position: relative;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
overflow: hidden;
|
||||||
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cbi-dynlist > .item::after {
|
.cbi-dynlist > .item::after {
|
||||||
|
|
|
@ -1114,13 +1114,14 @@ textarea {
|
||||||
.cbi-dynlist > .item {
|
.cbi-dynlist > .item {
|
||||||
box-shadow: 0 0 2px var(--main-dark-color);
|
box-shadow: 0 0 2px var(--main-dark-color);
|
||||||
margin: .3em 0;
|
margin: .3em 0;
|
||||||
padding: .15em .2em;
|
padding: .15em 2em .15em .2em;
|
||||||
border-radius: .25em;
|
border-radius: .25em;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: box-shadow .25s ease-in-out;
|
transition: box-shadow .25s ease-in-out;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cbi-dynlist > .item::after {
|
.cbi-dynlist > .item::after {
|
||||||
|
|
Loading…
Reference in a new issue