MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 41: | Line 41: | ||
body.skin-vector-legacy #content.mw-body { | body.skin-vector-legacy #content.mw-body { | ||
margin-left: calc(var(--wiki-shell-gap) + var(--wiki-sidebar-width)); | margin-left: calc(var(--wiki-shell-gap) + var(--wiki-sidebar-width)); | ||
width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width)); | |||
max-width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width)); | max-width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width)); | ||
box-sizing: border-box; | box-sizing: border-box; | ||
| Line 48: | Line 49: | ||
/* Top head/navigation also begins beside sidebar */ | /* Top head/navigation also begins beside sidebar */ | ||
body.skin-vector-legacy #mw-head { | body.skin-vector-legacy #mw-head { | ||
position: absolute; | |||
top: 0; | |||
left: calc(var(--wiki-shell-gap) + var(--wiki-sidebar-width)); | left: calc(var(--wiki-shell-gap) + var(--wiki-sidebar-width)); | ||
right: var(--wiki-shell- | right: auto; | ||
width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width)); | |||
box-sizing: border-box; | |||
background: #fff; | |||
} | } | ||
/* Personal links stay inside centred shell */ | /* Personal links stay inside centred shell */ | ||
body.skin-vector-legacy #p-personal { | body.skin-vector-legacy #p-personal { | ||
position: absolute; | |||
top: 0; | |||
right: var(--wiki-shell-gap); | right: var(--wiki-shell-gap); | ||
width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width)); | |||
box-sizing: border-box; | |||
} | |||
/* Keep the content tabs/search inside the same shell */ | |||
body.skin-vector-legacy #left-navigation { | |||
left: 0; | |||
} | |||
body.skin-vector-legacy #right-navigation { | |||
right: 0; | |||
} | } | ||
| Line 83: | Line 102: | ||
padding: 0; | padding: 0; | ||
background: transparent; | background: transparent; | ||
} | } | ||
Revision as of 18:37, 1 June 2026
/* CENTERED VECTOR LAYOUT */
/* ---------------------- */
:root {
--wiki-shell-width: 1350px;
--wiki-sidebar-width: 210px;
--wiki-shell-gap: max(0px, calc((100vw - var(--wiki-shell-width)) / 2));
}
body.skin-vector-legacy {
background: #f5f3ee;
}
/* Sidebar sits at the top-left of the centred shell */
body.skin-vector-legacy #mw-panel {
left: var(--wiki-shell-gap);
top: 0;
width: var(--wiki-sidebar-width);
min-height: 100vh;
box-sizing: border-box;
padding: 24px 18px;
background: #171717;
color: #f2eadc;
border-left: 1px solid #3a2f1d;
border-right: 1px solid #3a2f1d;
}
/* Logo lives inside the sidebar */
body.skin-vector-legacy #p-logo {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 150px;
margin: 0 0 24px 0;
background-position: center top;
background-size: contain;
}
/* Content begins beside the sidebar */
body.skin-vector-legacy #content.mw-body {
margin-left: calc(var(--wiki-shell-gap) + var(--wiki-sidebar-width));
width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width));
max-width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width));
box-sizing: border-box;
background: #fff;
}
/* Top head/navigation also begins beside sidebar */
body.skin-vector-legacy #mw-head {
position: absolute;
top: 0;
left: calc(var(--wiki-shell-gap) + var(--wiki-sidebar-width));
right: auto;
width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width));
box-sizing: border-box;
background: #fff;
}
/* Personal links stay inside centred shell */
body.skin-vector-legacy #p-personal {
position: absolute;
top: 0;
right: var(--wiki-shell-gap);
width: calc(var(--wiki-shell-width) - var(--wiki-sidebar-width));
box-sizing: border-box;
}
/* Keep the content tabs/search inside the same shell */
body.skin-vector-legacy #left-navigation {
left: 0;
}
body.skin-vector-legacy #right-navigation {
right: 0;
}
/* Sidebar link styling */
body.skin-vector-legacy #mw-panel a {
color: #d08b00;
}
body.skin-vector-legacy #mw-panel a:visited {
color: #d08b00;
}
body.skin-vector-legacy #mw-panel .portal {
margin: 0 0 18px 0;
padding: 0;
}
body.skin-vector-legacy #mw-panel .portal h3 {
color: #cfc2aa;
font-weight: bold;
border-bottom: 1px dotted #7b5b1d;
margin: 0 0 8px 0;
padding-bottom: 4px;
}
body.skin-vector-legacy #mw-panel .portal .body {
margin: 0;
padding: 0;
background: transparent;
}