Files
Ɀeus 55cdb2938d Align numbers with keyboard controls (#618)
Don't reset numbers after pinned tabs, skip increment for folded tab groups
2026-04-16 05:41:36 +03:00

9 lines
460 B
CSS

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/numbered_tabs.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Show a number before tab text*/
#tabbrowser-tabs{ counter-reset: nth-tab 0 } /* Change to -1 for 0-indexing */
:not(tab-group[collapsed])>.tabbrowser-tab{ counter-increment: nth-tab }
.tab-text::before{ content: counter(nth-tab) " " }