makes the edges of buttons on Reddit less round (like they used to be)
also hides the "notification bell" and adds a border around posts on the commenting page.
Authorclemenslucas
LicenseAttribution-NonCommercial-ShareAlike
CategoryReddit
Created
Updated
Size1.2 kB
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
makes the edges of buttons on Reddit less round (like they used to be)
also hides the "notification bell" and adds a border around posts on the commenting page.
/* ==UserStyle==
@name less round edges - Reddit
@namespace userstyles.world/user/clemenslucas
@version 2022.1
@description makes the edges of buttons on Reddit less round (like they used to be). Also adds a border around posts where it's missing and hides the "notification bell"
@author clemenslucas
@license Attribution-NonCommercial-ShareAlike
==/UserStyle== */
@-moz-document domain("reddit.com") {
/*make reddit edgy again*/
/* create post, join/leave & hotnewtop round */
._2iuoyPiKHN3kfOoeIQalDT,
/*join leave active*/
._2tU8R9NTqhvBrhoNAXWWcP:before,
/*create post active*/
._10BQ7pjWbeYP63SAPNS8Ts:before
{
border-radius: 5px !important;}
/* keep hotnewtop round*/
a.M2Hk_S2yvXpsNPfZMBMur{
border-radius: 20px !important;
}
/*this adds back a border around the post, when viewing comments*/
.uI_hDmU5GSiudtABRz_37 {
border: solid !important;
border-color: #b7b7b7 !important;
border-width: thin !important;
}
/*hides the "notification bell" */
._1cAYKT6f3GM-_aZei--pxM {
display: none;
}
}