-
Notifications
You must be signed in to change notification settings - Fork 3
/
_hide-dickbars.user.css
144 lines (122 loc) · 2.78 KB
/
_hide-dickbars.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* ==UserStyle==
@name Hide dickbars
@description Hides “dickbars”, i.e. annoying CTAs and floating bars in several websites.
@author Heracles Papatheodorou <[email protected]> (https://heracl.es)
@namespace https://heracl.es
@homepageURL https://github.com/Arty2/userstyles
@updateURL https://raw.githubusercontent.com/Arty2/userstyles/master/_hide-dickbars.user.css
@supportURL https://github.com/Arty2/userstyles/issues
@version 0.1.22
@license MIT License
==/UserStyle== */
@-moz-document domain("facebook.com") {
#pagelet_growth_expanding_cta {
display: none !important;
}
}
@-moz-document domain("instagram.com") {
div#scrollview + div:has(#loginForm) {
display: none !important;
}
div[style="width: 100%;"]:has(span[aria-label="Log in"]) {
display: none !important;
}
}
@-moz-document domain("twitter.com") {
div[data-testid="BottomBar"] {
display: none !important;
}
}
@-moz-document domain("newyorker.com") {
[class*="PaywallBarWrapper"],
.paywall-bar__wrapper,
.paywall-modal,
.unit-overlay,
#signInContainer {
display: none !important;
}
}
@-moz-document domain("nytimes.com") {
#app > div:first-child > div:first-child {
overflow: scroll !important;
}
#app > div > div > div:last-child {
display: none;
}
#gateway-content,
.expanded-dock {
display: none;
}
/* interactive category */
#standalone-footer {
display: none;
}
#site-content {
overflow: scroll !important;
}
/* wirecutter section */
#modal-portal-regiwall {
display: none;
}
body {
overflow: auto !important;
}
}
@-moz-document domain("wired.com") {
[class^="paywall-"],
[class^="PaywallBarWrapper-"] {
display: none !important;
}
}
@-moz-document domain("artforum.com") {
.paywall-counter {
display: none !important;
}
}
@-moz-document domain("japantimes.co.jp") {
.tp-modal-open {
overflow-y: scroll !important;
}
.tp-backdrop,
.tp-modal {
visibility: hidden !important;
pointer-events: none;
}
}
@-moz-document domain("tumblr.com") {
#glass-container > div[role="dialog"]:first-child {
display: none !important;
}
body#tumblr {
overflow: scroll !important;
}
div[style="background: rgb(124, 92, 255); color: rgb(255, 255, 255);"]:has(button[aria-label="Sign me up"]) {
display: none !important;
}
}
@-moz-document domain("kathimerini.gr") {
#k-footer-paywall,
.articlepaywall article .entry-content::before {
display: none !important;
}
body.articlepaywall {
position: absolute;
overflow: auto;
background: none;
height: auto;
}
.articlepaywall article .entry-content {
position: relative;
max-height: none;
overflow: auto;
}
}
@-moz-document domain("linkedin.com") {
#public_post_contextual-sign-in,
.cta-modal:has([class*="upsell"]) {
display: none;
}
body {
overflow: auto !important;
}
}