From 1de06324ca692f3b6a1341da2b6210993814e3d9 Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Mon, 2 Jan 2023 19:30:31 +0100 Subject: firefox: add userChrome.css --- firefox/userChrome.css | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 firefox/userChrome.css (limited to 'firefox') diff --git a/firefox/userChrome.css b/firefox/userChrome.css new file mode 100644 index 0000000..73835da --- /dev/null +++ b/firefox/userChrome.css @@ -0,0 +1,11 @@ +/* https://www.reddit.com/r/FirefoxCSS/comments/8ruy2d/numbered_tabs_revisited/ */ +#tabbrowser-tabs{ + counter-reset: n_tabs 0; +} +.tabbrowser-tab .tab-content{padding-left: 2px;} +.tabbrowser-tab .tab-content::before{ + display: -moz-box; + padding-right:4px; + counter-increment: n_tabs; + content: counter(n_tabs); +} -- cgit v1.2.3