forked from akudamatata/Solara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesktop.css
More file actions
84 lines (73 loc) · 2.1 KB
/
desktop.css
File metadata and controls
84 lines (73 loc) · 2.1 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
/* Desktop-only overrides for mobile UI chrome */
html.desktop-view .mobile-status-bar,
html.desktop-view .mobile-toolbar,
html.desktop-view .mobile-panel-header,
html.desktop-view .mobile-overlay-scrim,
html.desktop-view .mobile-quality-chip,
html.desktop-view .mobile-close-btn,
html.desktop-view .mobile-turntable__tonearm,
html.desktop-view .mobile-turntable__label,
html.desktop-view .mobile-inline-lyrics {
display: none;
}
/* Remove circular decoration from playlist action buttons on desktop */
html.desktop-view .playlist-action-btn {
width: auto;
height: auto;
padding: 6px;
border: none;
border-radius: 6px;
background: none;
box-shadow: none;
color: var(--text-secondary-color);
transition: color 0.2s ease;
}
html.desktop-view body.dark-mode .playlist-action-btn {
background: none;
border: none;
box-shadow: none;
color: var(--text-secondary-color);
}
html.desktop-view .playlist-action-btn:hover:not(:disabled),
html.desktop-view .playlist-action-btn:focus-visible:not(:disabled) {
transform: none;
box-shadow: none;
filter: none;
border: none;
color: var(--primary-color);
}
html.desktop-view .playlist-action-btn--clear {
color: rgba(231, 76, 60, 0.85);
}
html.desktop-view .playlist-action-btn--clear:hover:not(:disabled),
html.desktop-view .playlist-action-btn--clear:focus-visible:not(:disabled) {
color: var(--warning-color);
}
html.desktop-view .playlist-action-btn:focus-visible {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
html.desktop-view .playlist-action-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
/* Keep the desktop search import button visible without an opaque bar */
html.desktop-view .search-results {
gap: 0;
}
html.desktop-view .search-results-toolbar {
display: block;
padding: 0;
height: 0;
overflow: visible;
pointer-events: none;
}
html.desktop-view .search-results-toolbar .import-selected-btn {
position: absolute;
top: 16px;
right: 20px;
pointer-events: auto;
}
html.desktop-view .search-results-list {
padding-top: 60px;
}