Just blurs the background, also allows you to hid the side bar.
Blur Reddit Popups Background by zadencodes
Details
Authorzadencodes
LicenseNo License
Categoryreddit.com
Created
Updated
Size1.5 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Blur Reddit Popups Background
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Just blurs the background, also allows you to hid the side bar.
@author Me
@preprocessor stylus
@var checkbox sidebar 'hide sidebar' 0
@var checkbox blurpops 'blur popups' 1
==/UserStyle== */
@-moz-document domain("reddit.com") {
if sidebar {
#SHORTCUT_FOCUSABLE_DIV ._1BFbVxT49QnrAN3fqGZ1z8,
._2Xq-4oyrEvHjL5U_EeMnK8,
._20b4i5iUhjZQqDZ1BM_Q-9,
._3Kd8DQpBIbsr5E1JcrMFTY,
._1tvThPWQpORoc2taKebHx {
display: none !important;
}
}
if blurpops {
._1npCwF50X2J7Wt82SZi6J0,
._3obgdFz00GvpqpuX8QCsNK {
max-width: 150000px;
width: 100% !important;
}
._2DJXORCrmcNpPTSq0LqL6i {
background-color: transparent;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
top: 0px !important;
--comments-overlay-background: transparent !important;
}
._3obgdFz00GvpqpuX8QCsNK {
background: rgba(0, 0, 0, .15);
backdrop-filter: blur(35px);
-webkit-backdrop-filter: blur(35px);
}
.u35lf2ynn4jHsVUwPmNU,
.Dx3UxiK86VcfkFQVHNXNi,
._2Xq-4oyrEvHjL5U_EeMnK8,
._20b4i5iUhjZQqDZ1BM_Q-9 {
margin-top: 5px;
}
}
}