Hides the obnoxiously bright color that shows on the background, along with the sidebar label "Most Popular". Particularly useful for inverted browser themes.
Verge: Remove Bright BG & "Most Popular" Label by Koolstr
Details
AuthorKoolstr
LicenseNo License
Categorytheverge
Created
Updated
Size715 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name The Verge - Remove Bright Background & Sidebar "Most Popular" Label
@version 20231010.09.26
@namespace ?
==/UserStyle== */
@-moz-document domain("theverge.com") {
/* Hides obnoxiously bright vertical sidebar label of "Most Popular". */
article div.duet--recirculation--list-breaker-standard > div.absolute {
display: none;
}
/* Hides obnoxiously bright color that shows on the background at the top & bottom of the page. Particularly useful for inverted browser themes. */
/*
Alternate, more specific selector that only targets footer section:
body > div section.duet--article--more--stories
*/
.bg-franklin {
background-color: transparent;
}
}