1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
#transfers-view-downloads {
width: 100%;
}
#transfers-view-uploads {
width: 100%;
}
.transfer-list {
min-height: 50px;
font-size: 16px;
width: 100%;
}
.transfer-item {
position: relative;
overflow: hidden;
margin-top: 2px;
height: 37px;
background-color: #FFF;
border-radius: 3px;
-moz-border-radius: 3px;
vertical-align: middle;
border: solid 1px #FFF;
white-space: nowrap;
}
.transfer-item:nth-child(odd) {
background-color: #eaf5f7;
}
.transfer-item:hover {
border: solid 1px #4297d7;
}
.transfer-item .transfer-file-name {
position: absolute;
top: 3px;
left: 40px;
width: 34%;
font-size: 16px;
font-weight: bold;
text-overflow: ellipsis;
overflow: hidden;
}
.transfer-item .transfer-progress-label {
position: absolute;
top: 22px;
left: 40px;
width: 34%;
font-size: 11px;
text-overflow: ellipsis;
overflow: hidden;
}
.transfer-item .transfer-file-thumb {
position: absolute;
top: 1px;
left: 2px;
width: 32px;
height: 32px;;
border-radius: 3px;
margin: 2px;
margin-right: 5px;
}
.transfer-item .transfer-progress-bar {
position: absolute;
top: 7px;
left: 40%;
width: 15%;
border-radius: 3px;
-moz-border-radius: 3px;
border: solid 1px #4297d7;
text-align: center;
}
.transfer-item .transfer-progress-bar-inner {
position: absolute;
border-radius: 3px;
-moz-border-radius: 3px;
width: 0px;
}
.transfer-item .transfer-progress-bar-label {
position: relative;
font-weight: bold;
}
.transfer-item.active .transfer-progress-bar-inner {
background-color: #4297d7;
}
.transfer-item.completed .transfer-progress-bar-inner {
background-color: #6EAC2C;
}
.transfer-item.aborted .transfer-progress-bar-inner {
background-color: #E74242;
}
.transfer-item .transfer-progress-bar {
position: absolute;
top: 7px;
left: 40%;
width: 15%;
border-radius: 3px;
-moz-border-radius: 3px;
border: solid 1px #4297d7;
text-align: center;
}
.transfer-item .transfer-time-label {
position: absolute;
top: 8px;
left: 58%;
width: 15%;
text-align: right;
padding-left: 10px;
}
.transfer-item .transfer-bw-label {
position: absolute;
top: 8px;
left: 78%;
width: 12%;
text-align: right;
text-overflow: ellipse;
}
.transfer-item.completed .transfer-time-label,
.transfer-item.aborted .transfer-time-label,
.transfer-item.completed .transfer-bw-label,
.transfer-item.aborted .transfer-bw-label {
display: none;
}
.transfer-item .transfer-cancel-btn {
position: absolute;
top: 1px;
right: 5px;
width: 5%;
height: 37px;
text-align: right;
cursor: pointer;
background: url("./delete.png");
background-repeat: no-repeat;
background-position: 96% 6px;
}
.transfer-list .list-empty-note {
text-align: center;
font-size: 22px;
color: #FF7700;
}
#transfer-list-confirm-cancel {
display: none;
color: #4297d7;
}
|