blob: 66b9c39c3f2f9d63e0ecc896f9d509cf063a0a78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@import "chrome://browser/skin/downloads/progressmeter.css";
@import "chrome://browser/skin/downloads/download-blockedStates.css";
/*** View and outer controls ***/
#downloadsListBox {
margin: 0;
}
/*** List items ***/
#downloadsListBox > richlistitem {
min-height: 4.5em;
}
.downloadTypeIcon {
margin: 8px 13px;
width: 32px;
height: 32px;
}
.downloadTarget {
margin: 0;
}
.downloadDetails {
opacity: 0.7;
font-size: 95%;
/* Use calc() to keep the height consistent with .downloadTarget, so that the
progress bar can be vertically centered. */
margin: 4px 0 calc(1em / 0.95 - 1em);
}
.downloadDetailsHover,
.downloadDetailsButtonHover {
display: none;
}
.downloadButton {
appearance: none;
align-items: center;
background: transparent;
min-width: 0;
min-height: 0;
margin: 0;
border: none;
color: inherit;
padding: 0 12px;
}
.downloadButton > .button-box {
padding: 8px;
border-radius: 4px;
}
.downloadButton > .button-box > .button-icon {
width: 16px;
height: 16px;
margin: 0;
-moz-context-properties: fill;
fill: currentColor;
}
.downloadButton > .button-box > .button-text {
display: none;
}
.downloadButton:hover > .button-box {
background-color: color-mix(in srgb, currentColor 15%, transparent);
}
.downloadButton:hover:active > .button-box {
background-color: color-mix(in srgb, currentColor 30%, transparent);
}
/*** Button icons ***/
.downloadIconCancel > .button-box > .button-icon {
list-style-image: url("chrome://global/skin/icons/close.svg");
}
.downloadIconShow > .button-box > .button-icon {
list-style-image: url("chrome://global/skin/icons/folder.svg");
}
@media (-moz-platform: macos) {
.downloadIconShow > .button-box > .button-icon {
list-style-image: url("chrome://global/skin/icons/search-glass.svg");
}
}
.downloadIconRetry > .button-box > .button-icon {
list-style-image: url("chrome://global/skin/icons/reload.svg");
}
|