mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 23:18:40 +00:00
add a progress bar to the files
This commit is contained in:
parent
e903e14188
commit
e0cba5bca3
2 changed files with 15 additions and 10 deletions
|
@ -89,15 +89,6 @@ input {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Peers Grid */
|
|
||||||
.x-deluge-peer {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.x-deluge-seed {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Login Window */
|
/* Login Window */
|
||||||
.x-deluge-login-window-icon {
|
.x-deluge-login-window-icon {
|
||||||
background: url('/icons/login.png') no-repeat 2px;
|
background: url('/icons/login.png') no-repeat 2px;
|
||||||
|
@ -153,6 +144,19 @@ input {
|
||||||
color: White;
|
color: White;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Adjust progressbar for torrent files tree */
|
||||||
|
.x-tree .x-progress-bar, .x-tree .x-progress-inner {
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-tree .x-progress-text-back, .x-tree .x-progress-text {
|
||||||
|
font-size: 10px;
|
||||||
|
vertical-align: top;
|
||||||
|
font-weight: normal;
|
||||||
|
padding-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Sidebar styles */
|
/* Sidebar styles */
|
||||||
.x-deluge-filters .x-grid3-col-filter {
|
.x-deluge-filters .x-grid3-col-filter {
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
|
|
@ -356,7 +356,8 @@ Deluge.Details.Panel = new Ext.TabPanel({
|
||||||
},{
|
},{
|
||||||
header: _('Progress'),
|
header: _('Progress'),
|
||||||
width: 150,
|
width: 150,
|
||||||
dataIndex: 'progress'
|
dataIndex: 'progress',
|
||||||
|
renderer: peer_progress
|
||||||
},{
|
},{
|
||||||
header: _('Priority'),
|
header: _('Priority'),
|
||||||
width: 150,
|
width: 150,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue