gets rid of ads and some garbage, and minimizes the right rail unless hovered over
cleaner fandom.com by ripooof
Details
Authorripooof
LicenseNo License
Categoryfandom
Created
Updated
Size954 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 cleaner fandom.com
@version 20240220.22.24
@namespace fandom
@description gets rid of ads and some garbage, and minimizes the right rail unless hovered over
==/UserStyle== */
@-moz-document domain("fandom.com") {
/* ads */
.top-ads-container,
#rail-boxad-wrapper,
[data-spotim-app="reactions"],
.openweb-ad-unit,
.bottom-ads-container,
.global-footer__section.global-footer__section-advertise,
#WikiaAdInContentPlaceHolder,
#WikiaRail > *:not(.rail-module),
.marketing-notifications,
.ad-slot-placeholder,
/* other */
.WikiaBarWrapper,
.mcf-wrapper .mcf-card-article__link {
display: none !important;
opacity: 0 !important;
}
.page.has-right-rail .page__right-rail {
transition: width 1s cubic-bezier(0, 0, 0, 1) !important;
width: 36px !important;
overflow: hidden;
}
.page.has-right-rail .page__right-rail:hover {
transition-delay: 300ms !important;
width: 315px !important;
}
}