MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 420: Line 420:
   flex: 0 0 auto;
   flex: 0 0 auto;
   white-space: nowrap;
   white-space: nowrap;
}
/* === FINAL OVERRIDE: ICE List siteNotice layout === */
/* This block intentionally overrides all previous #siteNotice rules */
#siteNotice {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}
/* Text (everything except Donate + X) */
#siteNotice > :not(a):not(.icelist-notice-close) {
  flex: 1 1 auto !important;
}
/* Donate button */
#siteNotice a {
  flex: 0 0 auto !important;
  margin-left: 24px !important;
  white-space: nowrap !important;
}
}