mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 12:04:51 +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;
|
||||
}
|
||||
|
||||
/* Peers Grid */
|
||||
.x-deluge-peer {
|
||||
|
||||
}
|
||||
|
||||
.x-deluge-seed {
|
||||
|
||||
}
|
||||
|
||||
/* Login Window */
|
||||
.x-deluge-login-window-icon {
|
||||
background: url('/icons/login.png') no-repeat 2px;
|
||||
|
@ -153,6 +144,19 @@ input {
|
|||
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 */
|
||||
.x-deluge-filters .x-grid3-col-filter {
|
||||
height: 16px;
|
||||
|
|
|
@ -356,7 +356,8 @@ Deluge.Details.Panel = new Ext.TabPanel({
|
|||
},{
|
||||
header: _('Progress'),
|
||||
width: 150,
|
||||
dataIndex: 'progress'
|
||||
dataIndex: 'progress',
|
||||
renderer: peer_progress
|
||||
},{
|
||||
header: _('Priority'),
|
||||
width: 150,
|
||||
|
|
Loading…
Add table
Reference in a new issue