first (largest) part of sync for both themes with toolkit windows theme changes in...
[themes.git] / EarlyBlue / mozapps / downloads / downloads.css
CommitLineData
4d12b027
RK
1#downloadManager {
2 background-color: #CCD0DD;
3}
4
5/* Download View */
6#downloadView {
7 -moz-appearance: none !important;
8 margin: 0;
9 border-bottom: 1px solid #9999CC;
10}
11
12/* Download View Items */
13richlistitem[type="download"] {
02920d2b 14 padding: 4px;
dae45075 15 padding-inline-end: 8px;
4d12b027 16 min-height: 46px;
d0ff98fe
RK
17 border-bottom: 1px solid #9999CC;
18}
19
726e083d 20richlistitem[type="download"]:not([selected="true"]):nth-child(odd) {
ecb2fda9
RK
21 background-color: #9999CC;
22}
23
4d12b027
RK
24richlistitem[type="download"] .name {
25 font-size: larger;
26}
27
6c5a63bb
RK
28richlistitem[type="download"] .dateTime {
29 font-size: smaller;
4d12b027
RK
30}
31
32.mini-button {
33 -moz-appearance: none;
6daee013 34 list-style-image: url("chrome://mozapps/skin/downloads/downloadButtons.png");
4d12b027
RK
35 background-color: transparent;
36 border: none;
37 padding: 0;
38 margin: 0;
39 min-width: 0;
40 min-height: 0;
41}
42
43.mini-button > .button-box {
44 padding: 0 !important;
45}
46
47.cancel {
48 -moz-image-region: rect(0px, 32px, 16px, 16px);
49}
6daee013
RK
50.cancel:hover {
51 -moz-image-region: rect(16px, 32px, 32px, 16px);
52}
53.cancel:active {
54 -moz-image-region: rect(32px, 32px, 48px, 16px);
55}
56.cancel[disabled="true"] {
57 -moz-image-region: rect(48px, 32px, 64px, 16px);
58}
59
4d12b027 60.pause {
559908da
RK
61 -moz-image-region: rect(0px, 48px, 16px, 32px);
62}
6daee013
RK
63.pause:hover {
64 -moz-image-region: rect(16px, 48px, 32px, 32px);
65}
66.pause:active {
67 -moz-image-region: rect(32px, 48px, 48px, 32px);
68}
559908da 69.pause[disabled="true"] {
6daee013 70 -moz-image-region: rect(48px, 48px, 64px, 32px);
4d12b027 71}
6daee013 72
4d12b027 73.resume {
559908da 74 -moz-image-region: rect(0px, 16px, 16px, 0px);
4d12b027 75}
6daee013
RK
76.resume:hover {
77 -moz-image-region: rect(16px, 16px, 32px, 0px);
78}
79.resume:active {
80 -moz-image-region: rect(32px, 16px, 48px, 0px);
81}
82.resume[disabled="true"] {
83 -moz-image-region: rect(48px, 16px, 64px, 0px);
84}
85
4d12b027 86.retry {
559908da 87 -moz-image-region: rect(0px, 64px, 16px, 48px);
4d12b027 88}
6daee013
RK
89.retry:hover {
90 -moz-image-region: rect(16px, 64px, 32px, 48px);
91}
92.retry:active {
93 -moz-image-region: rect(32px, 64px, 48px, 48px);
94}
95.retry[disabled="true"] {
96 -moz-image-region: rect(48px, 64px, 64px, 48px);
97}
4d12b027 98
4d12b027
RK
99.blockedIcon {
100 list-style-image: url("chrome://global/skin/icons/alert-error.gif");
101}
102
103/* prevent flickering when changing states */
104.downloadTypeIcon {
105 min-height: 32px;
106 min-width: 32px;
107}
108
d0ff98fe
RK
109#clearListButton {
110 min-height: 0;
111 min-width: 0;
112 margin-top: 3px;
62736c3e 113}