aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/firefox/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-03-05 20:40:29 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-03-05 20:40:29 -0600
commit11c0d95039d32f52ed9982b2f51648defc91aeeb (patch)
tree404094892f6144b99ec926eabb454f2ec24308ca /firefox/.config
parente532e67f41ce77014526e3afaefe9e1ea7c5ba0e (diff)
feat(firefox): add userChrome.css
Diffstat (limited to 'firefox/.config')
-rw-r--r--firefox/.config/firefox/chrome/userChrome.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/firefox/.config/firefox/chrome/userChrome.css b/firefox/.config/firefox/chrome/userChrome.css
new file mode 100644
index 0000000..9a32264
--- /dev/null
+++ b/firefox/.config/firefox/chrome/userChrome.css
@@ -0,0 +1,14 @@
+statuspanel[type="overLink"],
+#statuspanel[type="overLink"] {
+ right: 0;
+ display: inline;
+}
+
+tabs {
+ counter-reset: tab-counter;
+}
+
+.tab-label::before {
+ counter-increment: tab-counter;
+ content: counter(tab-counter) " - ";
+} \ No newline at end of file