Reddit Multi Column

Multi column layout for reddit redesign

< Valutazione su Reddit Multi Column

Recensione: Bene - lo script funziona

§
Pubblicato: 01/06/2024
Modificato: 01/06/2024

Awesome update! :) Obligatory may I suggest... :D

1. Get rid of the left sidebar as well and use the whole width:
#left-sidebar-container {display:none)
.subgrid-container {max-width:unset}
div.grid-container{display:block}

2. Instead of getting rid of the side bars, hide them off-screen and display them on hover:
#right-sidebar-container {
position:fixed;
z-index:10;
top:60px;
right:-300px;
display:block!important;
}
#right-sidebar-container:hover {right:0;}
#left-sidebar-container {
position:fixed;
z-index:10;
top:60px;
left:-330px;
display:block!important;
}
#left-sidebar-container:hover {left:0;}
The visible area for hovering is so thin because if it's bigger it covers the prev/next buttons of the lightbox and I couldn't figure out how to move them; span[slot="prevButton"] wouldn't work.

Pubblica risposta

Accedi per pubblicare una risposta.