update for trunk changes between 2008-02-07 and today
[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"] {
14 padding: 4px 8px 4px 4px;
15 min-height: 46px;
d0ff98fe
RK
16 border-bottom: 1px solid #9999CC;
17}
18
19richlistitem[type="download"][selected="true"] {
20 background-image: url("chrome://mozapps/skin/extensions/itemEnabledFader.png");
4d12b027
RK
21}
22
ecb2fda9
RK
23richlistitem[type="download"][alternate="true"]:not([selected="true"]) {
24 background-color: #9999CC;
25}
26
4d12b027
RK
27richlistitem[type="download"] .name {
28 font-size: larger;
29}
30
6c5a63bb
RK
31richlistitem[type="download"] .dateTime {
32 font-size: smaller;
4d12b027
RK
33}
34
d0ff98fe
RK
35richlistitem[type="download"]:not([selected="true"]) .dateTime,
36richlistitem[type="download"]:not([selected="true"]) .status {
37 color: #000000;
38}
39
4d12b027
RK
40.mini-button {
41 -moz-appearance: none;
42 list-style-image: url("chrome://mozapps/skin/downloads/buttons.png");
43 background-color: transparent;
44 border: none;
45 padding: 0;
46 margin: 0;
47 min-width: 0;
48 min-height: 0;
49}
50
51.mini-button > .button-box {
52 padding: 0 !important;
53}
54
55.cancel {
56 -moz-image-region: rect(0px, 32px, 16px, 16px);
57}
4d12b027 58.pause {
559908da
RK
59 -moz-image-region: rect(0px, 48px, 16px, 32px);
60}
61.pause[disabled="true"] {
62 -moz-image-region: rect(16px, 48px, 16px, 32px);
4d12b027
RK
63}
64.resume {
559908da 65 -moz-image-region: rect(0px, 16px, 16px, 0px);
4d12b027
RK
66}
67.retry {
559908da 68 -moz-image-region: rect(0px, 64px, 16px, 48px);
4d12b027
RK
69}
70
4d12b027
RK
71.blockedIcon {
72 list-style-image: url("chrome://global/skin/icons/alert-error.gif");
73}
74
75/* prevent flickering when changing states */
76.downloadTypeIcon {
77 min-height: 32px;
78 min-width: 32px;
79}
80
4d12b027
RK
81#searchbox[empty] {
82 color: #808080;
83}
d0ff98fe
RK
84
85#clearListButton {
86 min-height: 0;
87 min-width: 0;
88 margin-top: 3px;
89}