forked from 1280px/rainfox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userChromeDownloads.css
47 lines (42 loc) · 1.33 KB
/
userChromeDownloads.css
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
/* / // / / RainFox v0.5 // / / // ☔ Based on MaterialFox and QuietFox | 2019-2021 */
/* make panel smaller */
#downloadsPanel-mainView {
width: 32em !important;
padding: 0 0.62em 0.62em !important;
}
#downloadsListBox {
margin: 0.31em 0 0.31em !important;
}
/* buttons icons fix */
.button-box {
padding-block: 3px !important; padding-inline: 5px !important;
}
/* enlarge your p rogress bar */
.downloadContainer {
margin-inline-end: -4px !important;
}
.downloadBlockedBadgeNew {
margin: 0 0 !important;
}
/* normal download prograss bar (if anyone's intrested, I used elementaryOS 0.6 beta ISO for testing :D) */
.downloadProgress {
border: none !important; border-radius: 4px !important;
background-color: var(--button-active-bgcolor) !important;
margin: 6px 0 0 !important;
height: 4px !important;
transition: var(--userChrome-animation-speed);
}
.downloadProgress::-moz-progress-bar {
background-color: var(--toolbarbutton-icon-fill-attention) !important;
border: none !important; border-radius: 4px;
margin: 0 0 !important; height: inherit !important;
}
/* make download progress bar bigger when hover */
.downloadProgress:hover {
height: 32px !important;
margin: 3px 0 -2px !important;
position: relative;
}
.downloadProgress:hover::-moz-progress-bar {
border-right: 2px double currentColor !important;
}