Makes ads on F-Chat less bold and eye-catching, so they don't dominate every public channel
F-Chat Less Overt Ads by sierramontana

Details
Authorsierramontana
LicenseWTFPL
Categoryf-list
Created
Updated
Code size686 B
Code checksum3541ba57
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Changes the appearance of ads when both posts and ads are viewed together on F-Chat. Makes no changes (or shouldn't, at least) to ad-only view. This is to compensate for how ads flood every channel unless you block them all.
Source code
/* ==UserStyle==
@name F-Chat Less Overt Ads
@namespace sierramontana
@version 1
@description Makes ads on F-Chat less bold and eye-catching, so they don't dominate every public channel
@author Sierra Montana
@license WTFPL
==/UserStyle== */
@-moz-document url-prefix("https://www.f-list.net/chat3/") {
.messages-both .message.message-ad::before {
content: "\F1EA";
font-family: "Font Awesome 5 Free";
padding: 0px 3px;
font-weight: 900;
}
.messages-both .message-ad {
background-color: #000d22;
padding: 0px;
box-shadow: none;
opacity: 50%;
color: #fff;
}
}