缩短帖子高度
方便S1爬楼 by ts8zs
Details
Authorts8zs
LicenseGPL
Categorybbs.saraba1st.com
Created
Updated
Code size724 B
Code checksum8a4d6fc9
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name 方便S1爬楼
@version 20240412.20.04
@namespace https://userstyles.world/user/Ts8zs
@description 缩短帖子高度
@author Ts8zs
@license GPL
==/UserStyle== */
@-moz-document regexp("https://bbs.saraba1st.com/2b/thread-.*.html") {
/* Hide content after the avatar element */
.favatar *:nth-child(n+4) {
display: none;
}
.favatar:hover *:nth-child(n+4) {
display: block;
}
.favatar :has(.avatar) {
display: block;
}
.favatar *:nth-child(3) img:nth-child(2) {
display: none;
}
.t_fsz{
min-height:0;
}
.avatar{
height:12px;
transform:scale(0.3) translate(-120%, -100%);
}
.t_f img{
max-height: 500px;
max-width:100%;
height:auto;
width:auto;
}
}