Don't show bottom border for non-tabs-on-top tab bar, on Linux

This commit is contained in:
YUKI Hiroshi 2014-04-01 12:29:03 +09:00
parent 17317fab8d
commit f2298baa89

View File

@ -49,3 +49,9 @@
background: url("chrome://browser/skin/privatebrowsing-mask.png") center no-repeat; background: url("chrome://browser/skin/privatebrowsing-mask.png") center no-repeat;
width: 30px; width: 30px;
} }
/* disable bottom border of the tab bar */
#main-window:not([treestyletab-tabbar-position="top"])
#TabsToolbar::after {
display: none;
}