-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathplaylist-info.scss
84 lines (69 loc) · 1.35 KB
/
playlist-info.scss
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
.playListThumbnail {
inline-size: 100%;
}
.playlistThumbnail .firstVideoLink {
cursor: pointer;
}
.playlistThumbnail img {
inline-size: 100%;
// Ensure placeholder image displayed at same aspect ratio as most other images
aspect-ratio: 16/9;
@media only screen and (width <= 800px) {
display: none;
}
}
.playlistStats {
font-size: 15px;
}
.playlistStats p {
color: var(--secondary-text-color);
margin: 0;
}
.playlistTitle {
margin-block-end: 0.1em;
}
.playlistDescription {
max-block-size: 20vh;
overflow-y: auto;
white-space: break-spaces;
@media only screen and (width <= 500px) {
max-block-size: 10vh;
}
}
.playlistChannel {
align-items: center;
color: inherit;
display: flex;
gap: 8px;
block-size: 40px;
text-decoration: none;
}
.channelThumbnail {
border-radius: 200px;
float: var(--float-left-ltr-rtl-value);
inline-size: 40px;
}
.channelName {
font-size: 15px;
margin: 0;
word-break: break-all;
}
.channelShareWrapper {
column-gap: 8px;
display: grid;
grid-template-columns: auto minmax(min-content, 1fr);
}
.playlistOptions {
display: grid;
grid-auto-flow: column;
column-gap: 8px;
justify-content: flex-end;
}
.searchInputsRow {
margin-block-start: 8px;
}
@media only screen and (width <= 1250px) {
:deep(.sharePlaylistIcon .iconDropdown) {
inset-inline: auto auto;
}
}