mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 17:56:50 +03:00
Inherit text color for filter list elements
Filter list (left side panel) in WebUI is implemented using <a> tags, CSS defines default style for all <a> elements, and specific style for filter list elements. Default style for <a> elements sets color, and this color also used in list. This is looks not so well. So lets just inherit text color from parent element, and as so as it is not set, so default text color will be used. This makes filter list looks like other UI elemets, making all UI more consistent (like in desktop app).
This commit is contained in:
parent
1e63dcb400
commit
1e59dcdb6c
1 changed files with 1 additions and 0 deletions
|
@ -457,6 +457,7 @@ ul.filterList a {
|
|||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
ul.filterList li:hover {
|
||||
|
|
Loading…
Reference in a new issue