Fix richlistitem cut-off with double-byte characters (#3931)
This commit is contained in:
parent
8b30f08db8
commit
86bb8f06cb
2 changed files with 33 additions and 32 deletions
|
@ -15,21 +15,6 @@
|
||||||
padding:0;
|
padding:0;
|
||||||
}
|
}
|
||||||
|
|
||||||
richlistitem {
|
|
||||||
padding: 0.2em 0.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
richlistitem, richlistitem > * {
|
|
||||||
overflow-x: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
richlistcheckbox[selected=true] {
|
|
||||||
background-color: -moz-cellhighlight;
|
|
||||||
color: -moz-cellhighlighttext;
|
|
||||||
}
|
|
||||||
|
|
||||||
groupbox > label > h2, groupbox > * > label > h2 {
|
groupbox > label > h2, groupbox > * > label > h2 {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
|
|
|
@ -18,3 +18,19 @@ richlistbox.theme-listbox {
|
||||||
--listitem-selectedFocusCurrentBottomBorder: transparent;
|
--listitem-selectedFocusCurrentBottomBorder: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
richlistitem {
|
||||||
|
padding: 0.2em 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
richlistitem, richlistitem > * {
|
||||||
|
// Prevent word cut-off with double-byte characters
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
richlistcheckbox[selected=true] {
|
||||||
|
background-color: -moz-cellhighlight;
|
||||||
|
color: -moz-cellhighlighttext;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue