/*
Hides all banners including siteNotice and fly-in-notification. Is used in Template:Hide_all_banners
See detailed documentation in Dev/mediawiki
*/

#siteNotice {
	display: none !important;
}

/* Note: We don't use display:none because this is the standard setting
 * for the notification panel anyways and will be overwritten by JS
 * visibility:hidden will be interpreted by JS so that no setup will happen
 * and no events will be bound
 */
#fly-in-notification-panel { visibility: hidden; }

/*
[[Category:MultiWiki]]
*/