diff options
author | Lootyhoof <lootyhoofer@gmail.com> | 2019-03-15 22:53:09 +0000 |
---|---|---|
committer | Lootyhoof <lootyhoofer@gmail.com> | 2019-03-15 22:53:09 +0000 |
commit | ca141778245946e9378704dbcf05355c6cb108f3 (patch) | |
tree | 1f9a38124d0ed2e32966abb9b48b7a9da7340d0c /application/palemoon/themes/linux/browser.css | |
parent | c7b3c68ae9bfc2ee6c5337072f1bbbc539840231 (diff) | |
download | UXP-ca141778245946e9378704dbcf05355c6cb108f3.tar UXP-ca141778245946e9378704dbcf05355c6cb108f3.tar.gz UXP-ca141778245946e9378704dbcf05355c6cb108f3.tar.lz UXP-ca141778245946e9378704dbcf05355c6cb108f3.tar.xz UXP-ca141778245946e9378704dbcf05355c6cb108f3.zip |
Draw a border when hiding the tab bar
Diffstat (limited to 'application/palemoon/themes/linux/browser.css')
-rw-r--r-- | application/palemoon/themes/linux/browser.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/application/palemoon/themes/linux/browser.css b/application/palemoon/themes/linux/browser.css index b545b06cb..933067c2b 100644 --- a/application/palemoon/themes/linux/browser.css +++ b/application/palemoon/themes/linux/browser.css @@ -1607,6 +1607,17 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- background-image: linear-gradient(to top, rgba(0,0,0,.3) 1px, rgba(0,0,0,.05) 1px, transparent 50%); } +/* When the tab bar is collapsed, show a 1px border in its place. */ +#TabsToolbar[collapsed="true"] { + visibility: visible; + height: 1px; + border-bottom-width: 1px; + /* !important here to override border-style: none on the toolbar */ + border-bottom-style: solid !important; + border-bottom-color: ThreeDShadow; + overflow: hidden; +} + .tabbrowser-tab, .tabs-newtab-button { position: static; |