mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
8a0a589d17
bug 168504: de-XBLify the bookmarks toolbar bug 172328, 172291: various DND problems bug 192028: add context menus to the bookmark menu and the bookmarks toolbar.
31 lines
905 B
CSS
31 lines
905 B
CSS
|
|
/* ::::::::::
|
|
:: Rules for 'hiding' portions of the chrome for special
|
|
:: kinds of browser-specific window toolbars. Other global
|
|
:: window rules are in xul.css
|
|
::::: */
|
|
|
|
window[chromehidden~="toolbar"] #nav-bar-buttons,
|
|
window[chromehidden~="toolbar"] #print-button {
|
|
display: none;
|
|
}
|
|
|
|
window[chromehidden~="toolbar"] #navigator-throbber {
|
|
margin: 0 5px 0 0 !important;
|
|
list-style-image: url("chrome://communicator/skin/brand/throbber16-single.gif") !important;
|
|
}
|
|
|
|
window[chromehidden~="toolbar"] #navigator-throbber[busy="true"] {
|
|
list-style-image: url("chrome://communicator/skin/brand/throbber16-anim.gif") !important;
|
|
}
|
|
|
|
#search-bar {
|
|
-moz-binding: url("chrome://browser/content/search.xml#searchbar");
|
|
}
|
|
|
|
/* ::::: print preview toolbar ::::: */
|
|
|
|
toolbar[printpreview="true"] {
|
|
-moz-binding: url("chrome://browser/content/printPreviewBindings.xml#printpreviewtoolbar");
|
|
}
|