Don't show thin glay bar for pinned tabs on fullscreen HTML5 video

This commit is contained in:
YUKI Hiroshi 2015-12-25 16:06:34 +09:00
parent 2b2d3574e6
commit ca63c220f9

View File

@ -94,7 +94,13 @@
tabbrowser[tabcontainer]
.tabbrowser-strip.treestyletab-tabbar-placeholder+splitter,
:root[inDOMFullscreen="true"]
.treestyletab-tabbar-toggler {
.treestyletab-tabbar-toggler,
:root[inDOMFullscreen="true"]
.tabbrowser-tabs[treestyletab-mode="vertical"]
.tabbrowser-tab[pinned],
:root[inDOMFullscreen="true"]
.tabbrowser-tabs[treestyletab-mode="vertical"]
.tabbrowser-tab[pinned] * /* this is required to hide unexpectedly shown gray rect (ex. .tab-background) */ {
visibility: collapse !important;
}
@ -611,10 +617,6 @@ toolbar.treestyletab-tabbar-toolbar-ready:not([nowindowdrag="true"]),
.tabbrowser-tab[pinned],
*[collapsed="true"]
.tabbrowser-tabs[treestyletab-mode="vertical"]
.tabbrowser-tab[pinned] * /* this is required to hide unexpectedly shown gray rect (ex. .tab-background) */,
.tabbrowser-tabs[treestyletab-mode="vertical"][treestyletab-dom-fullscreen-activated="true"]
.tabbrowser-tab[pinned],
.tabbrowser-tabs[treestyletab-mode="vertical"][treestyletab-dom-fullscreen-activated="true"]
.tabbrowser-tab[pinned] * /* this is required to hide unexpectedly shown gray rect (ex. .tab-background) */ {
visibility: collapse;
}