-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (80 loc) · 2.44 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (80 loc) · 2.44 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
/* Стили для кнопки скачивания обложки (полноэкранный плеер + inline рядом с треком) */
.cover-download-button {
position: absolute;
top: 16px;
left: 16px;
z-index: 9999;
background-color: rgba(26, 26, 26, 0.9);
color: white;
border: none;
border-radius: 50%;
width: 64px;
height: 64px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
backdrop-filter: #1A1A1AE6;
font-size: 20px;
opacity: 0;
pointer-events: none;
}
/* Показываем кнопку при наведении на родительский контейнер */
.cover-download-button-container:hover .cover-download-button {
opacity: 1;
pointer-events: auto;
}
.cover-download-button:hover {
background-color: rgba(48, 47, 45, 0.9);
transform: scale(1.1);
}
.cover-download-button:active {
transform: scale(0.95);
}
.cover-download-button svg {
width: 32px;
height: 32px;
fill: white;
}
/* ===== Windows 2000 стиль кнопки (активируется при включённой теме Windows2000) ===== */
.cover-download-button.win2k-style {
background-color: #C0C0C0 !important;
border-radius: 0 !important;
border: none !important;
box-shadow:
inset -1px -1px 0px #0A0A0A,
inset 1px 1px 0px #FFFFFF,
inset -2px -2px 0px #808080,
inset 2px 2px 0px #DFDFDF !important;
}
.cover-download-button.win2k-style:hover {
background-color: #C0C0C0 !important;
}
.cover-download-button.win2k-style:active {
box-shadow:
inset -1px -1px 0px #FFFFFF,
inset 1px 1px 0px #0A0A0A,
inset -2px -2px 0px #DFDFDF,
inset 2px 2px 0px #808080 !important;
}
.cover-download-button.win2k-style svg {
fill: #000000 !important;
}
/* ===== Inline-кнопка рядом с названием трека ===== */
.cd-inline-icon {
background: transparent;
border: none;
cursor: pointer;
padding: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
transition: opacity 0.2s, color 0.2s;
margin-left: 8px;
vertical-align: middle;
color: var(--ym-controls-color-primary-text-enabled_variant, #ffffff);
}
.cd-inline-icon:hover {
opacity: 1 !important;
}