Display files hierarchically in Web UI content tab

This commit is contained in:
Thomas Piccirello
2019-07-26 02:06:45 -07:00
parent e0037b819a
commit 60a1835813
9 changed files with 980 additions and 119 deletions

View File

@@ -352,7 +352,6 @@ a.propButton img {
#torrentsFilterToolbar {
float: right;
margin-right: 30px;
margin-right: 30px;
}
#torrentsFilterInput {
@@ -364,6 +363,20 @@ a.propButton img {
background-position: left;
}
#torrentFilesFilterToolbar {
float: right;
margin-right: 30px;
}
#torrentFilesFilterInput {
width: 160px;
padding-left: 2em;
background-image: url("../images/qbt-theme/edit-find.svg");
background-repeat: no-repeat;
background-size: 1.5em;
background-position: left;
}
/* Tri-state checkbox */
label.tristate {
@@ -470,6 +483,19 @@ td.generalLabel {
line-height: 25px;
}
.filesTableCollapseIcon {
width: 15px;
height: 15px;
cursor: pointer;
margin-bottom: -3px;
padding-right: 5px;
}
.filesTableCollapseIcon.rotate {
transform: rotate(270deg);
margin-bottom: -1px;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
@@ -596,3 +622,17 @@ td.statusBarSeparator {
.searchPluginsTableRow {
cursor: pointer;
}
#torrentFilesTableDiv .dynamicTable tr.nonAlt {
background-color: #fff;
}
#torrentFilesTableDiv .dynamicTable tr.nonAlt.selected {
background-color: #354158;
color: #fff;
}
#torrentFilesTableDiv .dynamicTable tr.nonAlt:hover {
background-color: #ee6600;
color: #fff;
}