2006-09-14 06:00:29 +00:00
|
|
|
/* ::::: Hide the link toolbar if it is set to autohide and has no items. ::::: */
|
|
|
|
|
XUL/theme simplification changes - removing unnecessary boxes and re-writing large portions of the themes to use new -moz-border-colors and -moz-image-region css features. Also cleans up the classic skin quite a bit for both mac and win. Fixes bugs 113024, 113043, 113585, 113586, 115943, 113643, 114475, 99787, 110214, 113977, 113966, 114802, 64894, 90724, 103173, 103199, 103298, 110442, 111472, 111989, 113027, 113041, 109180, 109204, 81581, 81903, 103324, 110108, 114540, and probably more I forgot to mention. r=ben, sr=hyatt
2006-09-14 06:02:17 +00:00
|
|
|
#linktoolbar[hidden="maybe"][hasitems="false"] {
|
2006-09-14 06:00:29 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2006-09-14 05:57:38 +00:00
|
|
|
/* ::::: urlbar autocomplete ::::: */
|
|
|
|
|
2006-09-14 05:59:29 +00:00
|
|
|
#urlbar {
|
|
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#urlbar");
|
2006-09-14 05:57:38 +00:00
|
|
|
}
|
|
|
|
|
2006-09-14 05:59:29 +00:00
|
|
|
.autocomplete-result-popup[for="urlbar"] {
|
|
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#autocomplete-result-popup") !important;
|
2006-09-14 05:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-search-box {
|
|
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#autocomplete-search-box");
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-search-engine {
|
|
|
|
-moz-binding: url("chrome://navigator/content/urlbarBindings.xml#autocomplete-search-engine");
|
|
|
|
}
|
2006-09-14 06:02:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* ::::::::::
|
|
|
|
:: Rules for 'hiding' portions of the chrome for special
|
|
|
|
:: kinds of browser windows.
|
|
|
|
::::: */
|
|
|
|
|
|
|
|
window[chromehidden~="menubar"] .chromeclass-menubar,
|
|
|
|
window[chromehidden~="directories"] .chromeclass-directories,
|
|
|
|
window[chromehidden~="status"] .chromeclass-status,
|
|
|
|
window[chromehidden~="extrachrome"] .chromeclass-extrachrome,
|
2006-09-14 06:03:07 +00:00
|
|
|
window[chromehidden~="location"] .chromeclass-location,
|
2006-09-14 06:02:59 +00:00
|
|
|
window[chromehidden~="location"][chromehidden~="toolbar"] .chromeclass-toolbar
|
|
|
|
{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|