root/trunk/chrome/skin/manager/style.css

Revision 728, 4.0 kB (checked in by MaierMan, 3 years ago)

better visual for paused downloads

Line 
1 @import 'chrome://dta/skin/common/style.css';
2 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
3 @namespace html url("http://www.w3.org/1999/xhtml");
4  
5  
6 treechildren::-moz-tree-progressmeter(progressUndetermined) {
7   list-style-image: url('chrome://dta/skin/manager/undetermined.gif');
8 }
9 treechildren::-moz-tree-progressmeter(progressUndetermined, pausedUndetermined) {
10   list-style-image: url('chrome://dta/skin/manager/paused-undetermined.png');
11 }
12 toolbox {
13   border-width: 0px;
14 }
15
16 #tools {
17   background: url(chrome://dta/skin/manager/barback.png) repeat-x;
18   border-width: 0px;
19   height: 51px;
20   -moz-appearance: none !important;
21 }
22 #tools toolbarbutton {
23   -moz-image-region: rect(0px,51px,25px,26px);   
24   -moz-box-orient: vertical !important;
25   -moz-box-align: center !important;
26   -moz-appearance: none !important;
27   border: 0px hidden !important;
28   margin-top: 2px;
29   min-width: 55px;
30 }
31
32 #tools toolbarbutton:hover, #tools toolbarbutton:active {
33   -moz-image-region: rect(0px,25px,25px,0px);
34 }
35 #tools toolbarbutton[disabled="true"] {
36   -moz-image-region: rect(0px,77px,25px,52px) !important;   
37 }
38 #tools spacer {
39   min-width: 5px;
40 }
41 #tools spacer.visible {
42   background: url("chrome://dta/skin/common/toolbarspacer.png") no-repeat 50% 11px;
43   min-width: 13px;
44 }
45 #tooladd {
46   list-style-image: url("chrome://dta/skin/manager/add26.png");
47 }
48
49 #toolplay {
50   list-style-image: url("chrome://dta/skin/manager/play26.png");
51 }
52
53 #toolpause {
54   list-style-image: url("chrome://dta/skin/manager/pause26.png");
55 }
56
57 #toolcancel {
58   list-style-image: url("chrome://dta/skin/manager/cancel26.png");
59 }
60
61 #toolmovetop {
62   list-style-image: url("chrome://dta/skin/manager/movetop26.png");
63 }
64
65 #toolmovebottom {
66   list-style-image: url("chrome://dta/skin/manager/movebottom26.png");
67 }
68
69 #toolmovedown {
70   list-style-image: url("chrome://dta/skin/manager/movedown26.png");
71 }
72
73 #toolmoveup {
74   list-style-image: url("chrome://dta/skin/manager/moveup26.png");
75 }
76
77 #toolprefs {
78   list-style-image: url("chrome://dta/skin/manager/prefs26.png");
79 }
80
81 #tooldonate {
82   background: url("chrome://dta/skin/manager/bardonate-ltr.png") top right;
83   min-width: 200px !important;
84 }
85 #tooldonate:hover {
86   background: url("chrome://dta/skin/manager/bardonate-hover-ltr.png") top right;
87 }
88 #tooldonate[chromedir="rtl"] {
89   background: url("chrome://dta/skin/manager/bardonate-rtl.png") top right;
90 }
91 #tooldonate[chromedir="rtl"]:hover {
92   background: url("chrome://dta/skin/manager/bardonate-hover-rtl.png") top right;
93 }
94 #tooltip{
95   width: 470px;
96   padding: 0; /* work around incorrect tooltip implementation in FX2.0 */
97 }
98 /* work around incorrect tooltip implementation in FX2.0 */
99 #tooltip > vbox {
100   background-color: infobackground !important;
101   padding: 5pt;
102   margin: 0;
103 }
104 #infoIcon {
105   margin: 1.6ex;
106   width: 32px !important;
107   height: 32px !important;
108   -moz-box-flex: 0 !important;
109 }
110 #tooltip grid {
111   -moz-box-flex: 1;
112 }
113 #infoGrid label {
114   margin-bottom: 0;
115   font-weight: bold;
116 }
117 #infoGrid label[crop] {
118   font-weight: normal;
119   max-width: 300px;
120 }
121 #canvasGrid label[id] {
122   font-weight: bold;
123 }
124 #infoPercent {
125   text-align: center;
126   margin: 0;
127   padding: 0;
128   font-size: 14px;
129   font-weight: bold;
130   background: transparent !important;
131 }
132 stack > #infoPercent {
133   padding-top: 7px;
134   height: 40px;
135 }
136 #chunkAlt {
137   height: 32px;
138   margin-top: 1ex;
139   margin-bottom: 1ex;
140 } 
141 #chunkAlt > #infoPercent {
142   margin-top: auto;
143   margin-bottom: auto;
144   padding-top: 6px;
145   min-width: 4.2ex;
146 }
147 #infoDest {
148   font-weight: bold !important;
149   font-size: 105%;
150 }
151
152 treechildren::-moz-tree-progressmeter(completed) {
153   color: #008F00 !important;
154 }
155
156 treechildren::-moz-tree-progressmeter(paused) {
157   color: #FFCC00 !important;
158 }
159
160 treechildren::-moz-tree-progressmeter(canceled) {
161   color: #B12801 !important;
162 }
163
164 treechildren::-moz-tree-progressmeter(queued) {
165   color: #BFDEFF !important;
166 }
167
168 treechildren::-moz-tree-progressmeter(inprogress) {
169   color: #AAE061 !important;
170 }
171 textbox.plain {
172   background-color: transparent !important;
173 }
Note: See TracBrowser for help on using the browser.