2012-06-25 18:52:41 +02:00
|
|
|
/*
|
2015-08-08 22:40:33 +02:00
|
|
|
#############################
|
|
|
|
CSS rules for a more sane web
|
|
|
|
#############################
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
# Safari
|
|
|
|
select as user style sheet in browser
|
|
|
|
or use defaults write... rules from dotfiles/osx
|
|
|
|
|
|
|
|
# Chrome
|
|
|
|
symlink to
|
|
|
|
Application Support/Google/Chrome/Default/User StyleSheets/Custom.css
|
2012-06-25 18:52:41 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* GOOGLE SEARCH
|
|
|
|
-----------------------------------------*/
|
|
|
|
|
|
|
|
/* Ads */
|
|
|
|
#tads,
|
|
|
|
#bottomads {
|
2020-11-02 23:32:03 +01:00
|
|
|
display: none !important;
|
2012-06-25 18:52:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TWITTER
|
|
|
|
-----------------------------------------*/
|
|
|
|
|
|
|
|
/* Nice try, Twitter */
|
2023-01-16 21:21:05 +01:00
|
|
|
div.promoted-tweet {
|
2020-11-02 23:32:03 +01:00
|
|
|
display: none !important;
|
2012-06-25 18:52:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Discover menu, Who to follow, Similiar, Trends */
|
2020-11-02 23:32:03 +01:00
|
|
|
[aria-label="Timeline: Trending now"],
|
|
|
|
[aria-label="Who to follow"],
|
|
|
|
[data-testid="DMDrawer"] {
|
|
|
|
visibility: hidden !important;
|
2012-06-25 18:52:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-02 23:32:03 +01:00
|
|
|
[data-testid="sidebarColumn"] form {
|
|
|
|
visibility: visible !important;
|
2016-02-18 00:51:30 +01:00
|
|
|
}
|
|
|
|
|
2012-06-25 18:52:41 +02:00
|
|
|
/* STACK OVERFLOW ET AL.
|
|
|
|
-----------------------------------------*/
|
|
|
|
|
|
|
|
.ad-container,
|
|
|
|
#newsletter-ad,
|
|
|
|
#recent-badges,
|
|
|
|
.everyonelovesstackoverflow {
|
2020-11-02 23:32:03 +01:00
|
|
|
display: none !important;
|
2015-08-08 22:40:33 +02:00
|
|
|
}
|