mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-13 01:57:07 -07:00
Reduce font size of priority combo boxes
They were too big in some cases (e.g. Firefox on Linux).
This commit is contained in:
parent
fa706b24be
commit
0d2e9a9473
2 changed files with 9 additions and 0 deletions
|
@ -344,6 +344,10 @@ ul.filterList li:hover a {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#filesTable {
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
#filesTable tr:nth-child(even) {
|
#filesTable tr:nth-child(even) {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
@ -382,4 +386,8 @@ ul.filterList li:hover a {
|
||||||
#error_div {
|
#error_div {
|
||||||
float: left;
|
float: left;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.combo_priority {
|
||||||
|
font-size: 1em;
|
||||||
}
|
}
|
|
@ -172,6 +172,7 @@ var createPriorityCombo = function(id, selected_prio) {
|
||||||
} else {
|
} else {
|
||||||
select.removeClass("invisible");
|
select.removeClass("invisible");
|
||||||
}
|
}
|
||||||
|
select.addClass("combo_priority");
|
||||||
return select;
|
return select;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue