diff options
| author | bh <qn+git@excalibur.computer> | 2026-01-15 17:29:36 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2026-01-15 17:29:36 +0800 |
| commit | 1e3d71b45809efe11905e91817de0950d685df42 (patch) | |
| tree | 55a5cf1631290c151fd4a5abe0a465b37825a707 /userChrome.css | |
| parent | 2403af2dcf0a7091f92e937acc9d549c42e9b920 (diff) | |
Added some new stuff to userChrome and treeStyleTabs. Refactored CSS for chatgpt
Diffstat (limited to 'userChrome.css')
| -rw-r--r-- | userChrome.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/userChrome.css b/userChrome.css index ca6a255..3b7ac24 100644 --- a/userChrome.css +++ b/userChrome.css @@ -141,3 +141,39 @@ treechildren::-moz-tree-row(even) { display: none !important; } + +/* ═══════════════════════════════════════════════════════════════════ + 📏 COMPACT TOP BAR + ═══════════════════════════════════════════════════════════════════ */ + +/* Make navigation bar taller than URL bar */ +#nav-bar { + max-height: 40px !important; + min-height: 40px !important; + padding-top: 4px !important; + padding-bottom: 4px !important; +} + +/* Set font size to 13px for top bar elements */ +#nav-bar, +#nav-bar * { + font-size: 13px !important; +} + +/* Compact URL bar */ +#urlbar, +#urlbar-input { + font-size: 13px !important; + min-height: 28px !important; +} + +/* Compact toolbar buttons */ +#nav-bar toolbarbutton { + padding: 2px !important; +} + +/* Compact URL bar container */ +#urlbar-container { + max-height: 28px !important; +} + |