Bug 534152 - When the toolbars in the main browser window are hidden using the toolbar toggle pill, add a dummy 2px-high toolbar so that the titlebar separator isn't shown and the tabs can visually merge with the titlebar. r=dao

This commit is contained in:
Markus Stange 2010-01-13 17:19:49 +01:00
parent f68d649d95
commit 79fa9ec30d

View File

@ -120,8 +120,11 @@
background-color: #eeeeee;
}
#main-window[chromehidden~="toolbar"][chromehidden~="location"][chromehidden~="directories"] {
border-top: 1px solid rgba(0,0,0,0.65);
#main-window[chromehidden~="toolbar"][chromehidden~="location"][chromehidden~="directories"]::before {
content: "";
display: -moz-box;
-moz-appearance: -moz-mac-unified-toolbar;
height: 2px;
}
/* ----- INACTIVE WINDOW ----- */