-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.user.css
117 lines (99 loc) · 2.68 KB
/
styles.user.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* ==UserStyle==
@name YouTube Time Saver 🕒
@namespace https://github.com/ivanaugustobd/youtube-time-saver
@homepageURL https://github.com/ivanaugustobd/youtube-time-saver
@version 1.6.0
@updateURL https://raw.githubusercontent.com/ivanaugustobd/youtube-time-saver/master/styles.user.css
@description Small CSS set to save you A LOT of time on YouTube 📺
@author ivanaugustobd
@license MIT
@preprocessor stylus
@var checkbox home-videos "Hide videos in home" 1
@var checkbox side-videos "Hide right sidebar" 1
@var checkbox gourmet-lies 'Hide gourmet lies (self proclaimed "fact checking")' 1
@var checkbox description "Hide video description" 1
@var checkbox comments "Hide comments" 1
@var checkbox videowall "Hide videowall" 1
@var checkbox sidebar-subscriptions "Hide subscriptions in sidemenu" 1
@var checkbox subscriptions-as-text "Subscriptions as text-only list" 1
@var checkbox shorts "Hide shorts" 1
==/UserStyle== */
@-moz-document domain("youtube.com")
html > body {
overflow-y: auto
}
#cinematics {
display: none !important
}
if comments {
.ytd-comments {
display: none !important;
}
}
if description {
#bottom-row {
display: none !important;
}
}
if gourmet-lies {
#contents > ytd-info-panel-container-renderer:first-child,
#clarify-box {
display: none !important;
}
}
if home-videos {
ytd-browse[page-subtype="home"] {
display: none !important;
}
}
if side-videos {
#secondary {
display: none !important;
}
}
if sidebar-subscriptions {
#sections > ytd-guide-section-renderer:nth-of-type(2) {
display: none !important;
}
}
if videowall {
.videowall-endscreen {
display: none !important;
}
}
if subscriptions-as-text {
ytd-browse[page-subtype="subscriptions"] {
#content,
#contents {
display: block !important;
height: auto !important;
}
#thumbnail,
#thumbnail-underlay,
#avatar-link {
display: none !important;
}
ytd-rich-grid-media {
max-width: none;
}
ytd-rich-item-renderer {
display: block !important;
margin: 0;
width: 100%;
border-bottom: 1px solid var(--yt-spec-10-percent-layer);
margin-bottom: 12px;
padding-bottom: 12px;
h3.ytd-rich-grid-media {
margin-top: 0;
}
}
}
}
if shorts {
#navigation-button-down.navigation-button.style-scope.ytd-shorts,
#shorts-inner-container > ytd-reel-video-renderer:not(:first-of-type),
#guide-wrapper #items > :nth-child(2),
#contents > ytd-rich-section-renderer {
display: none !important;
}
}