Commit 92e6a7e5 authored by Paul Wolneykien's avatar Paul Wolneykien

Lighten the background of list boxes (closes: 41514)

To the pity, it seems there is currently no way to alter the color that is used to highlight the currently selected option: * https://stackoverflow.com/questions/17698110/how-to-change-color-of-selection-in-select-option * https://stackoverflow.com/questions/26392014/change-color-of-selected-option-in-html-select-input
parent 34755d57
......@@ -87,6 +87,15 @@ select {
background-color: #e6e6e6;
}
/* These two are for better visibility of current selection.
See ALTBUG #41514. */
select[size] {
background-color: #f6f6f6;
}
select option:checked {
text-decoration: underline;
}
fieldset {
border: 1px solid #c4c4c4;
margin-bottom: 6px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment