Adds sticky headers to long tables in the pmOS wiki.
postmarketOS Wiki Sticky Table Headers by heyarne
Details
Authorheyarne
LicenseNo License
Categorywiki.postmarketos.org
Created
Updated
Size463 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 postmarketOS Wiki Sticky Table Headers
@version 20240813.08.48
@namespace https://userstyles.world/user/heyarne
@description Adds sticky headers to long tables in the pmOS wiki.
@author heyarne
@license No License
==/UserStyle== */
@-moz-document domain("wiki.postmarketos.org") {
.cargoTable {
max-height: 80vh;
border: 1px solid #a2a9b1;
}
.cargoTable thead th {
position: sticky;
top: 0;
}
}