improve naming of column icons, introduce not-quite-neutral icon for unknown junk...
[themes.git] / EarlyBlue / mozapps / downloads / downloads.css
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 */
13 richlistitem[type="download"] {
14   padding: 4px 8px 4px 4px;
15   min-height: 46px;
16 }
17
18 richlistitem[type="download"][alternate="true"]:not([selected="true"]) {
19   background-color: #9999CC;
20 }
21
22 richlistitem[type="download"] .name {
23   font-size: larger;
24 }
25
26 #information {
27   -moz-appearance: none;
28   background-color: white;
29   width: 300px;
30   max-width: 300px;
31 }
32
33 #information > button .button-text {
34   -moz-box-flex: 1;
35   text-align: left;
36   -moz-padding-start: 2px;
37 }
38
39 .mini-button {
40   -moz-appearance: none;
41   list-style-image: url("chrome://mozapps/skin/downloads/buttons.png");
42   background-color: transparent;
43   border: none;
44   padding: 0;
45   margin: 0;
46   min-width: 0;
47   min-height: 0;
48 }
49
50 .mini-button > .button-box {
51   padding: 0 !important;
52 }
53
54 .cancel {
55   -moz-image-region: rect(0px, 32px, 16px, 16px);
56 }
57 .info {
58   -moz-image-region: rect(0px, 16px, 16px, 0px);
59 }
60 .open {
61   -moz-image-region: rect(16px, 32px, 32px, 16px);
62 }
63 .pause {
64   -moz-image-region: rect(32px, 32px, 48px, 16px);
65 }
66 .resume {
67   -moz-image-region: rect(16px, 48px, 32px, 32px);
68 }
69 .retry {
70   -moz-image-region: rect(0px, 48px, 16px, 32px);
71 }
72
73 #information-uri {
74   -moz-image-region: rect(16px, 16px, 32px, 0px);
75 }
76 #information-location {
77   -moz-image-region: rect(32px, 16px, 48px, 0px);
78 }
79
80 .blockedIcon {
81   list-style-image: url("chrome://global/skin/icons/alert-error.gif");
82 }
83
84 /* prevent flickering when changing states */
85 .downloadTypeIcon {
86   min-height: 32px;
87   min-width: 32px;
88 }
89
90 #searchbox[empty] {
91   color: #808080;
92 }