Cleans actualized.org forum UI to mute a low-frequency-change text distractions, and "unmutes" those on mouse hover
actualized.org - cleaner forum by ellockie

Details
Authorellockie
LicenseNo License
Categoryactualized.org
Created
Updated
Code size1.3 kB
Code checksum943265b2
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name actualized.org - cleaner forum
@version 20240216.22.00
@namespace https://userstyles.world/user/ellockie
@description Cleans actualized.org forum UI to mute a low-frequency-change text distractions, and "unmutes" those on mouse hover
@author ellockie
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://www.actualized.org/forum/") {
/* mute the low-frequency-change elements */
aside > ul > li,
aside > ul > li.ipsResponsive_hidePhone.ipsType_break,
div.ipsType_normal.ipsType_richText.ipsContained > span,
[data-role="memberSignature"],
div.cPost_contentWrap.ipsPad > ul,
div.ipsComment_meta.ipsType_light > p:nth-child(2) {
opacity: 0.2;
}
/* restore the low-frequency-change elements opacity */
aside > ul > li.cAuthorPane_photo,
aside > ul > li:hover,
aside > ul > li.ipsResponsive_hidePhone.ipsType_break:hover,
div.ipsType_normal.ipsType_richText.ipsContained > span:hover,
[data-role="memberSignature"]:hover,
div.cPost_contentWrap.ipsPad > ul:hover,
div.ipsComment_meta.ipsType_light > p:nth-child(2):hover {
opacity:1;
}
/* comment content minor wrapper, dictates the height */
div.cPost_contentWrap.ipsPad {
min-height: 0;
}
/* author pane changes */
aside > ul > li.cAuthorPane_photo {
margin: 0 0 4px 0;
}
aside > ul {
line-height: 1.1em;
}
}