-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathprogress_bar.css
More file actions
44 lines (43 loc) · 1.3 KB
/
Copy pathprogress_bar.css
File metadata and controls
44 lines (43 loc) · 1.3 KB
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
/*New progress bar*/
#indexPage .innerCardFooterClear,
.libraryPage .innerCardFooterClear,
#itemDetailPage .innerCardFooterClear {
background-color: transparent !important;
box-shadow: none !important;
}
#indexPage .itemProgressBarForeground,
.libraryPage .itemProgressBarForeground,
#itemDetailPage .itemProgressBarForeground,
#indexPage .itemProgressBar,
.libraryPage .itemProgressBar,
#itemDetailPage .itemProgressBar {
border-radius: var(--rounded-cards);
}
#indexPage .itemProgressBarForeground,
.libraryPage .itemProgressBarForeground,
#itemDetailPage .itemProgressBarForeground {
background-color: var(--primary-accent-color) !important;
}
#indexPage .itemProgressBar,
.libraryPage .itemProgressBar,
#itemDetailPage .itemProgressBar {
height: 8px;
background: var(--secondary-background-transparent) !important;
margin: .5em .8em;
}
/*Accommodate play button on mobile*/
/* @media all and (max-width: 100em){
#indexPage .itemProgressBar,
.libraryPage .itemProgressBar,
#itemDetailPage .itemProgressBar {
margin-right: 3.2em;
}
} */
@supports (backdrop-filter: blur(15px)) {
#indexPage .itemProgressBar,
.libraryPage .itemProgressBar,
#itemDetailPage .itemProgressBar{
backdrop-filter: blur(4px);
background: var(--secondary-background-transparent) !important;
}
}