MediaWiki:Common.css: Difference between revisions

Shift header up by 30px and perfectly align the left edges of the beige bar and content
Fix z-index to stop content from swallowing buttons, and pull login tools down
Line 718: Line 718:
#mw-head::before {
#mw-head::before {
     left: 175px !important;  
     left: 175px !important;  
}
/* --- 24. Fix Buttons Overlapping and Login Visibility --- */
/* Pull the login/register tools down so they don't disappear off the top of the screen */
#p-personal {
    top: 35px !important;
    z-index: 100 !important;
}
/* Ensure the entire navigation block (tabs, search, buttons) strictly sits ON TOP of the content box.
  This prevents the content box from swallowing the Read/Edit buttons. */
#left-navigation,
#right-navigation {
    position: relative !important;
    z-index: 50 !important;
}
/* Ensure the content box is layered safely UNDER the navigation menu */
#content {
    position: relative !important;
    z-index: 1 !important;
}
}