Jump to content

MediaWiki:Common.css: Difference between revisions

From λ LUMENWARD
No edit summary
No edit summary
Line 105: Line 105:


/* =========================================================
/* =========================================================
   Lumenward Infobox: top alignment + tighter image placement
   Lumenward Infobox: keep frame, fix top alignment + image fit
   ========================================================= */
   ========================================================= */


/* Pull the whole infobox up so it aligns with the first paragraph */
/* 1) Align the infobox with the first paragraph line */
.mw-parser-output .infobox{
.mw-parser-output .infobox{
   margin-top: 0 !important;
   margin-top: 0 !important;
  margin-right: 0 !important;
}
}


/* If Vector adds any clearing/offset, this helps keep it snug */
/* 2) Make the image row feel integrated (keep your card background) */
.mw-parser-output .infobox{
  float: right;
  clear: right;
}
 
/* Tighter image row: remove excess padding and make it feel attached */
.infobox > tbody > tr:nth-child(2) > td{
.infobox > tbody > tr:nth-child(2) > td{
   padding: 8px !important;
   padding: 10px 12px !important;         /* matches header padding */
   background: #ffffff !important;
   background: inherit !important;         /* IMPORTANT: do NOT force white */
  border-bottom: 1px solid #e6e6e6;        /* keeps the “section” separation */
}
}


/* Keep the image centered but not "floating" */
/* 3) Make the image itself sit nicely */
.infobox img{
.infobox img{
  display: block !important;
   margin: 0 auto !important;
   margin: 0 auto !important;
  max-width: 100% !important;
  height: auto !important;
}
}


/* Optional: reduce the "double frame" look around the image */
/* 4) If the infobox is still 1–2px too low in some pages */
.infobox img{
.mw-parser-output .infobox{
  border-radius: 8px;
   position: relative;
}
   top: -2px; /* tweak -1px / -2px / -3px if needed */
 
/* If you still see too much vertical gap above the first row */
.infobox > tbody > tr:first-child > td,
.infobox > tbody > tr:first-child > th{
   padding-top: 8px !important;
   padding-bottom: 8px !important;
}
}

Revision as of 14:22, 15 December 2025

/* =========================================================
   Vector 2022: Center header search WITHOUT moving user tools
   ========================================================= */

/* Use Vector's real header row as the layout context */
.vector-header {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

/* Force the right-side tools to remain FAR RIGHT */
.vector-header-end {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* Center ONLY the actual search box (do NOT touch wrappers like [role="search"]) */
.vector-header .vector-search-box,
.vector-header .vector-search-box-vue,
.vector-header #p-search {
  position: absolute !important;
  left: 38.7% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  z-index: 1 !important;

  width: min(620px, calc(100vw - 760px)) !important;
}

/* Keep user tools clickable above any overlap */
.vector-header-end,
.vector-user-links,
.vector-user-menu,
#p-personal {
  position: relative !important;
  z-index: 2 !important;
}

/* Mobile: revert to normal flow */
@media (max-width: 900px) {
  .vector-header .vector-search-box,
  .vector-header .vector-search-box-vue,
  .vector-header #p-search {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
}

/* =========================================================
   Lumenward visual policy (grayscale-only)
   ========================================================= */

/* Logo text always black */
.mw-logo a,
.mw-logo a:visited,
.mw-logo a:hover,
.mw-logo a:active {
  color: #000 !important;
  text-decoration: none !important;
}

/* Links: grayscale only */
a { color: #111 !important; }
a:visited { color: #333 !important; }

a:hover,
a:focus {
  color: #111 !important;
  text-decoration: underline !important;
}

/* TOC links specifically */
.vector-toc a,
.vector-toc a:visited,
#toc a,
#toc a:visited {
  color: #111 !important;
}

/* Footer centered on every page */
#footer { text-align: center !important; }

#footer ul,
#footer-info,
#footer-places,
#footer-icons {
  float: none !important;
  display: inline-block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#footer li {
  float: none !important;
  display: inline !important;
  margin: 0 8px !important;
}

/* =========================================================
   Lumenward Infobox: keep frame, fix top alignment + image fit
   ========================================================= */

/* 1) Align the infobox with the first paragraph line */
.mw-parser-output .infobox{
  margin-top: 0 !important;
  margin-right: 0 !important;
}

/* 2) Make the image row feel integrated (keep your card background) */
.infobox > tbody > tr:nth-child(2) > td{
  padding: 10px 12px !important;          /* matches header padding */
  background: inherit !important;          /* IMPORTANT: do NOT force white */
  border-bottom: 1px solid #e6e6e6;        /* keeps the “section” separation */
}

/* 3) Make the image itself sit nicely */
.infobox img{
  display: block !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  height: auto !important;
}

/* 4) If the infobox is still 1–2px too low in some pages */
.mw-parser-output .infobox{
  position: relative;
  top: -2px; /* tweak -1px / -2px / -3px if needed */
}