makes Cohost's sidenav and Cohost Corner sidebar partially transparent until hovered over
Cohost Sidenav and Corner Fade Out by qim
Details
Authorqim
LicenseThe Unlicense
Categorycohost.org
Created
Updated
Size505 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
tested with Cohost Theme Customizer and Cohost Tweaks
Source code
/* ==UserStyle==
@name Cohost Sidenav and Corner Fade Out
@namespace cohost.org
@version 1.0.0
@description makes Cohost's sidenav and Cohost Corner sidebar partially transparent until hovered over
@author qim
==/UserStyle== */
@-moz-document domain("cohost.org") {
ul.bg-sidebarBg,
section.bg-sidebarBg {
opacity: 0.3;
transition: opacity 0.5s ease-in-out;
}
ul.bg-sidebarBg:hover,
section.bg-sidebarBg:hover {
opacity: 1;
}
}