你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/371490-reddit-multi-column/discussions/246327,源站連結 點此以跳轉

Reddit Multi Column

Multi column layout for reddit redesign

< 脚本 Reddit Multi Column 的反馈

评价:好评 - 脚本运行良好

§
发布于:2024-06-01
编辑于:2024-06-01

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.

发布留言

登录以发布留言。