Allow selecting individual files to torrent

Saves bandwidth and disk space when a torrent contains extra files you don't need

Fixes #360
This commit is contained in:
DC
2016-05-11 05:42:06 -07:00
parent 0095687bf5
commit 6518a1535c
4 changed files with 113 additions and 19 deletions

View File

@@ -113,6 +113,10 @@ table {
opacity: 0.3;
}
.clickable {
cursor: pointer;
}
.float-right {
float: right;
}
@@ -597,7 +601,7 @@ body.drag .app::after {
}
.torrent-details {
padding: 8em 20px 20px 20px;
padding: 8em 12px 20px 20px;
}
.torrent-details table {
@@ -611,6 +615,10 @@ body.drag .app::after {
height: 28px;
}
.torrent-details td {
vertical-align: center;
}
.torrent-details tr:hover {
background-color: rgba(200, 200, 200, 0.3);
}
@@ -621,16 +629,16 @@ body.drag .app::after {
vertical-align: bottom;
}
.torrent-details td.col-icon {
width: 2em;
}
.torrent-details td.col-icon .icon {
.torrent-details td .icon {
font-size: 18px;
position: relative;
top: 3px;
}
.torrent-details td.col-icon {
width: 2em;
}
.torrent-details td.col-name {
width: auto;
text-overflow: ellipsis;
@@ -646,6 +654,11 @@ body.drag .app::after {
text-align: right;
}
.torrent-details td.col-select {
width: 2em;
text-align: right;
}
/*
* PLAYER
*/