diff options
| author | Autumn <git@autumnfo.rest> | 2026-05-13 19:39:43 +0100 |
|---|---|---|
| committer | Autumn <git@autumnfo.rest> | 2026-05-13 19:39:43 +0100 |
| commit | cb2c3cefc12b864d731cbb76487258e4a40aabf0 (patch) | |
| tree | 14fd6cef9511137a829f9ac42d263f65e8458cbc | |
| parent | c25c54211b19b08e79ee4b10e7a40fce39594a8a (diff) | |
[css] changed tab border radius
| -rw-r--r-- | css/userChrome.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/css/userChrome.css b/css/userChrome.css index ad6f3ef..86f4b69 100644 --- a/css/userChrome.css +++ b/css/userChrome.css @@ -38,4 +38,25 @@ * ~~~ sidebar */ #sidebar-main { background-color: var(--autumn-color-background) !important; + + /* new tab button */ + toolbarbutton { + border-radius: 4px !important; + } +} + +/* + * ~~~ tabs */ +tab { + + /* background */ + .tab-background { + border-radius: 4px !important; + } +} + +/* + * ~~~ tab groups */ +tab-group .tab-group-label { + border-radius: 2px !important; } |
