mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-10 17:35:00 -06:00
WebUI: Allow to move state icon to name column in torrents table
PR #22118.
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
}
|
||||
|
||||
#transferList .dynamicTable td {
|
||||
padding: 3px 2px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.dynamicTableDiv table.dynamicTable tbody tr.selected {
|
||||
@@ -22,10 +22,61 @@
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
#transferList img.stateIcon {
|
||||
height: 1.3em;
|
||||
margin-bottom: -1px;
|
||||
vertical-align: middle;
|
||||
#transferList .stateIcon {
|
||||
background: left center / contain no-repeat;
|
||||
margin-left: 3px;
|
||||
padding-left: 1.65em;
|
||||
|
||||
&.stateIconColumn {
|
||||
height: 14px;
|
||||
margin: auto;
|
||||
padding-left: 0;
|
||||
width: 14px;
|
||||
}
|
||||
|
||||
&.stateDownloading {
|
||||
background-image: url("../images/downloading.svg");
|
||||
}
|
||||
|
||||
&.stateUploading {
|
||||
background-image: url("../images/upload.svg");
|
||||
}
|
||||
|
||||
&.stateStalledUP {
|
||||
background-image: url("../images/stalledUP.svg");
|
||||
}
|
||||
|
||||
&.stateStalledDL {
|
||||
background-image: url("../images/stalledDL.svg");
|
||||
}
|
||||
|
||||
&.stateStoppedDL {
|
||||
background-image: url("../images/stopped.svg");
|
||||
}
|
||||
|
||||
&.stateStoppedUP {
|
||||
background-image: url("../images/checked-completed.svg");
|
||||
}
|
||||
|
||||
&.stateQueued {
|
||||
background-image: url("../images/queued.svg");
|
||||
}
|
||||
|
||||
&.stateChecking {
|
||||
background-image: url("../images/force-recheck.svg");
|
||||
}
|
||||
|
||||
&.stateMoving {
|
||||
background-image: url("../images/set-location.svg");
|
||||
}
|
||||
|
||||
&.stateError {
|
||||
background-image: url("../images/error.svg");
|
||||
}
|
||||
|
||||
&.stateUnknown {
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
|
||||
#transferList #transferList_pad {
|
||||
|
||||
Reference in New Issue
Block a user