Makes table headers on ping.sx sticky
ping.sx sticky headers by quantum
Details
Authorquantum
LicenseMIT
Categoryping.sx
Created
Updated
Size549 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name ping.sx sticky headers
@version 20240602.05.16
@namespace https://quantum5.ca
@description Makes table headers on ping.sx sticky
@homepage https://quantum5.ca/
@author Quantum
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://ping.sx/") {
#__next > div, main section div.overflow-x-auto, main section div.shadow.overflow-hidden {
overflow: unset !important;
}
main section table thead {
position: sticky;
top: 80px;
z-index: 10;
}
}