Skip to content

Old Reddit Sidebar Hide by xnick

Details

Authorxnick

LicenseNo License

Categoryold.reddit.com

Created

Updated

Size991 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Puts the Reddit sidebar out of the way. Turns it into a box that expands when you hover the mouse over it. Very useful on vertical monitors.

Notes

/I'm pretty sure I didn't make this one,
If I find the original author, I'll credit them.
/

Source code

/* ==UserStyle==
@name         Old Reddit Sidebar Hide
@version      20220914.21.31
@namespace    userstyles.world/user/xnick
@description  Puts the Reddit sidebar out of the way. Turns it into a box that expands when you hover the mouse over it. Very useful on vertical monitors.
@author       xnick
@license      No License
==/UserStyle== */

@-moz-document domain("reddit.com") {
/*I'm pretty sure I didn't make this one, 
If I find the original author, I'll credit them.*/
div.side {
	position: fixed !important;
	opacity: 0.5 !important;
	right: 0px !important;
	height: 20px !important;
	width: 20px !important;
	overflow: hidden !important;
	top: 0px !important;
	z-index: 100 !important;
	margin-top: 50px !important;
}

div.side:hover {
	background-color: #262626 !important;
	position: fixed !important;
	opacity: 1 !important;
	border: 0px solid #000000 !important;
	height: 100% !important;
	width: auto !important;
	overflow: auto !important;
	padding-top: 2.5em !important;
}
}

Reviews

No reviews yet.