Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

From PlusEV Wiki Page
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* === Vector 2022: move search box to the right === */
/* Hide Discussion (Talk) tab */
 
#ca-talk {
/* Ensure header uses flex properly */
   display: none !important;
.vector-header {
  display: flex;
  align-items: center;
}
 
/* Push the end section (search + user links) to the right */
.vector-header-end {
  margin-left: auto;
   display: flex;
  align-items: center;
}
 
/* Optional: tighten search spacing (Kouzina-like) */
.vector-search-box {
  margin-right: 0.5rem;
}
}

Latest revision as of 19:37, 28 December 2025

/* Hide Discussion (Talk) tab */
#ca-talk {
  display: none !important;
}