apparently the override doesn't work here in themes, we'll need to find soemthing...
[themes.git] / LCARStrek / mozapps / downloads / downloads.css
CommitLineData
e10e7add
RK
1#downloadManager {
2 background-color: #000000;
3}
4
5/* Download View */
6#downloadView {
7 -moz-appearance: none !important;
8 margin: 0;
9 border-bottom: 1px solid #9C9CFF;
10}
11
12/* Download View Items */
13richlistitem[type="download"] {
02920d2b
RK
14 padding: 4px;
15 -moz-padding-end: 8px;
e10e7add
RK
16 min-height: 46px;
17 border-bottom: 1px solid #9C9CFF;
18}
19
20richlistitem[type="download"][selected="true"] {
21 background-image: url("chrome://mozapps/skin/extensions/itemEnabledFader.png");
22}
23
24richlistitem[type="download"]:not([selected="true"]):nth-child(odd) {
25 background-color: #3F2700;
26}
27
28richlistitem[type="download"] .name {
29 font-size: larger;
30}
31
32richlistitem[type="download"] .dateTime {
33 font-size: smaller;
34}
35
36.mini-button {
37 -moz-appearance: none;
38 list-style-image: url("chrome://mozapps/skin/downloads/downloadButtons.png");
39 background-color: transparent;
40 border: none;
41 padding: 0;
42 margin: 0;
43 min-width: 0;
44 min-height: 0;
45}
46
47.mini-button > .button-box {
48 padding: 0 !important;
49}
50
51.cancel {
52 -moz-image-region: rect(0px, 32px, 16px, 16px);
53}
54.cancel:hover {
55 -moz-image-region: rect(16px, 32px, 32px, 16px);
56}
57.cancel:active {
58 -moz-image-region: rect(32px, 32px, 48px, 16px);
59}
60.cancel[disabled="true"] {
61 -moz-image-region: rect(48px, 32px, 64px, 16px);
62}
63
64.pause {
65 -moz-image-region: rect(0px, 48px, 16px, 32px);
66}
67.pause:hover {
68 -moz-image-region: rect(16px, 48px, 32px, 32px);
69}
70.pause:active {
71 -moz-image-region: rect(32px, 48px, 48px, 32px);
72}
73.pause[disabled="true"] {
74 -moz-image-region: rect(48px, 48px, 64px, 32px);
75}
76
77.resume {
78 -moz-image-region: rect(0px, 16px, 16px, 0px);
79}
80.resume:hover {
81 -moz-image-region: rect(16px, 16px, 32px, 0px);
82}
83.resume:active {
84 -moz-image-region: rect(32px, 16px, 48px, 0px);
85}
86.resume[disabled="true"] {
87 -moz-image-region: rect(48px, 16px, 64px, 0px);
88}
89
90.retry {
91 -moz-image-region: rect(0px, 64px, 16px, 48px);
92}
93.retry:hover {
94 -moz-image-region: rect(16px, 64px, 32px, 48px);
95}
96.retry:active {
97 -moz-image-region: rect(32px, 64px, 48px, 48px);
98}
99.retry[disabled="true"] {
100 -moz-image-region: rect(48px, 64px, 64px, 48px);
101}
102
103.blockedIcon {
104 list-style-image: url("chrome://global/skin/icons/alert-error.gif");
105}
106
107/* prevent flickering when changing states */
108.downloadTypeIcon {
109 min-height: 32px;
110 min-width: 32px;
111}
112
e10e7add
RK
113#clearListButton {
114 min-height: 0;
115 min-width: 0;
116 margin-top: 3px;
117}