diff options
author | Moonchild <mcwerewolf@wolfbeast.com> | 2019-03-18 01:59:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 01:59:24 +0100 |
commit | b0c7cca308a4321dea734044ccdb511dbedea83b (patch) | |
tree | f61267eee6ea358503ffe090b0201c687ccd1afc /application/palemoon/themes/linux | |
parent | c7b3c68ae9bfc2ee6c5337072f1bbbc539840231 (diff) | |
parent | 07122c4454ef294067e77dcf1f04b1424dfe1f73 (diff) | |
download | UXP-b0c7cca308a4321dea734044ccdb511dbedea83b.tar UXP-b0c7cca308a4321dea734044ccdb511dbedea83b.tar.gz UXP-b0c7cca308a4321dea734044ccdb511dbedea83b.tar.lz UXP-b0c7cca308a4321dea734044ccdb511dbedea83b.tar.xz UXP-b0c7cca308a4321dea734044ccdb511dbedea83b.zip |
Merge pull request #1011 from Lootyhoof/issue-725
Draw a border when hiding the tab bar
Diffstat (limited to 'application/palemoon/themes/linux')
-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; |