-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
41 lines (35 loc) · 861 Bytes
/
main.css
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
:root{
--iron-icon-color: #606060;
}
.youtube-shorts-block a[title='Shorts'], .youtube-shorts-block a[title='ショート']{
display: none !important;
pointer-events: none !important;
}
.youtube-shorts-block ytm-pivot-bar-item-renderer:has(.pivot-bar-item-tab.pivot-shorts){
display: none !important;
}
#block.youtube-shorts-block{
color: white;
margin: 6px 0;
display: flex;
flex-flow: column;
text-align: center;
font-size: 14px;
user-select: none;
cursor: pointer;
}
#block.youtube-shorts-block>svg{
fill: white;
margin: auto;
}
ytd-continuation-item-renderer:not(:last-child){
display: none;
}
@media screen and (min-width:600px){
#block.youtube-shorts-block{
color: var(--iron-icon-color);
}
#block.youtube-shorts-block>svg{
fill: var(--iron-icon-color);
}
}