Reduce font size of priority combo boxes

They were too big in some cases (e.g. Firefox on Linux).
This commit is contained in:
Gabriele 2014-11-04 22:00:00 +01:00
commit 0d2e9a9473
2 changed files with 9 additions and 0 deletions

View file

@ -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;
} }

View file

@ -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;
} }