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
|
body.native {
background-color: transparent !important;
}
#ui, #lyrics-page, #lyrics-body {
background-color: white !important;
}
body.navigation-body {
background-color: rgba(255, 255, 255, .1) !important;
border-right: 1px solid rgba(0, 0, 0, .1) !important;
position: fixed;
inset: 0;
}
#navigation-gradient {
display: none !important;
}
@media (prefers-color-scheme: dark) {
body, #player.bg-white {
background-color: transparent !important;
}
body.navigation-body {
background-color: rgba(0, 0, 0, .1) !important;
border-right: 1px solid rgba(255, 255, 255, .1) !important;
position: fixed;
inset: 0;
}
#navigation-gradient {
display: none !important;
}
}
|