mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 04:49:47 -07:00
Merge pull request #10190 from Piccirello/webui-sorted-icon
Fix direction of Web UI sorted column icon
This commit is contained in:
commit
0facdf3dfb
2 changed files with 4 additions and 4 deletions
|
@ -78,14 +78,14 @@ tr.dynamicTableHeader {
|
||||||
}
|
}
|
||||||
|
|
||||||
.dynamicTable th.sorted {
|
.dynamicTable th.sorted {
|
||||||
background-image: url(../images/qbt-theme/go-down.svg);
|
background-image: url(../images/qbt-theme/go-up.svg);
|
||||||
background-position: right;
|
background-position: right;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 15px;
|
background-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dynamicTable th.sorted.reverse {
|
.dynamicTable th.sorted.reverse {
|
||||||
background-image: url(../images/qbt-theme/go-up.svg);
|
background-image: url(../images/qbt-theme/go-down.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dynamicTable td img.flags {
|
.dynamicTable td img.flags {
|
||||||
|
|
|
@ -79,7 +79,7 @@ var changeCategorySelect = function(item) {
|
||||||
item.nextElementSibling.value = "";
|
item.nextElementSibling.value = "";
|
||||||
item.nextElementSibling.select();
|
item.nextElementSibling.select();
|
||||||
|
|
||||||
if ($('autotmm').selectedIndex == 1)
|
if ($('autoTMM').selectedIndex == 1)
|
||||||
$('savepath').value = defaultSavePath;
|
$('savepath').value = defaultSavePath;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -87,7 +87,7 @@ var changeCategorySelect = function(item) {
|
||||||
var text = item.options[item.selectedIndex].innerHTML;
|
var text = item.options[item.selectedIndex].innerHTML;
|
||||||
item.nextElementSibling.value = text;
|
item.nextElementSibling.value = text;
|
||||||
|
|
||||||
if ($('autotmm').selectedIndex == 1) {
|
if ($('autoTMM').selectedIndex == 1) {
|
||||||
var categoryName = item.value;
|
var categoryName = item.value;
|
||||||
var category = categories[categoryName];
|
var category = categories[categoryName];
|
||||||
var savePath = defaultSavePath;
|
var savePath = defaultSavePath;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue