-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfloaty.less
More file actions
100 lines (84 loc) · 3 KB
/
floaty.less
File metadata and controls
100 lines (84 loc) · 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
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
99
100
:root {
--glassFilter2: blur(32px) saturate(180%);
}
#app.twopanel:not([window-state="fullscreen"]) {
.app-chrome.chrome-bottom {
--dist : 16px;
position : fixed;
bottom : var(--dist);
left : var(--dist);
right : var(--dist);
width : auto;
border-radius : 10px;
box-shadow : 0px 2px 6px 3px rgb(20 20 20 / 20%), 0px 0px 0px 1px rgb(200 200 200 / 22%), 0px 0px 0px 2px rgb(2 2 2 / 20%);
backdrop-filter: var(--glassFilter2);
z-index: 8;
}
.app-chrome.chrome-bottom .app-chrome-playback-duration-bottom input[type=range] {
height : 5px;
@shadowColor : #3D2116;
--songProgressBackground: #A5A8BA;
box-shadow : 0px 0px 0px 1px rgba(0 0 0 / 10%);
&::-webkit-slider-thumb {
opacity : 1;
transform : scale(1);
-webkit-appearance: none;
appearance : none;
width : 20px;
height : 20px;
border-radius : 100%;
background : #434444;
background-image : radial-gradient(var(--keyColor) 4px, transparent 5px, transparent 10px);
cursor : default;
transition : opacity .10s var(--appleEase), transform .10s var(--appleEase);
box-shadow : inset 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
&:hover {
opacity : 1;
background-image: radial-gradient(var(--keyColor) 5px, transparent 6px, transparent 10px);
}
}
}
.app-navigation {
height: 100%;
}
#app-sidebar {
background: var(--baseColorMix);
}
#app-content {
border: 0px;
}
.app-sidebar-content {
height : calc(100% - 140px);
background-color : transparent;
margin : 16px 6px;
padding-bottom : 32px;
-webkit-mask-image: linear-gradient(to bottom, blue 95%, transparent 100%);
}
.content-inner:not(.playlist-page) {
padding-bottom: 108px;
}
.app-chrome:not(.chrome-bottom) {
// box-shadow: unset;
backdrop-filter: var(--glassFilter2);
}
.app-drawer {
height: calc(calc(100% - 18%) - var(--chromeHeight1));
top : calc(var(--chromeHeight1) + 2%);
.lyric-footer {
padding-bottom: 35px;
}
}
.artist-page .artist-body {
padding-bottom: 80px !important;
}
.playlist-page .playlist-body {
padding-bottom: 110px;
}
.app-navigation {
background: transparent;
}
.modular-fs .app-drawer {
height: calc(calc(100% - 0%) - var(--chromeHeight1)) !important;
top : calc(var(--chromeHeight1) + 0%) !important;
}
}