mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
03da361b97
- Refactor existing template data-related partials into CitizenComponent components - Re-implement user menu header as UserInfo - Add description text for anon and temp user in UserMenu --------- Co-authored-by: github-actions <github-actions@users.noreply.github.com>
90 lines
1.9 KiB
Plaintext
90 lines
1.9 KiB
Plaintext
.citizen-page-container {
|
|
display: flex; // Should fix weird margin issues
|
|
flex-direction: column;
|
|
min-height: 100vh; // Ensure footer goes to the bottom of the page
|
|
min-height: stretch; // for iOS, excludes safe areas
|
|
}
|
|
|
|
.mw-body,
|
|
.parsoid-body {
|
|
min-height: 100vh; // avoid footer being in the middle of the page
|
|
}
|
|
|
|
.citizen-body-container {
|
|
display: grid;
|
|
grid-template-areas:
|
|
'header'
|
|
'content'
|
|
'footer';
|
|
// Using auto as min value will cause overflow
|
|
grid-template-columns: minmax( 0, var( --width-layout ) );
|
|
gap: var( --space-md ) var( --space-xl );
|
|
justify-content: center;
|
|
padding: 0 var( --padding-page );
|
|
margin: var( --space-xl ) 0; // don't collide with other components (e.g. notice)
|
|
}
|
|
|
|
.citizen-page-header {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
// So that the modal are above custom sticky headers
|
|
z-index: @z-index-page-header + 1;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
grid-area: header;
|
|
gap: var( --space-md );
|
|
align-items: center;
|
|
padding-top: var( --space-md );
|
|
}
|
|
|
|
.citizen-page-heading {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.firstHeading-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.citizen-body {
|
|
grid-area: content;
|
|
}
|
|
|
|
@media ( min-width: @min-width-breakpoint-desktop ) {
|
|
.citizen-page-container {
|
|
// Reserve space for header
|
|
margin-left: var( --header-size );
|
|
}
|
|
|
|
.citizen-toc-enabled {
|
|
.citizen-body-container {
|
|
display: grid;
|
|
grid-template-areas:
|
|
'header header'
|
|
'content sidebar'
|
|
'footer footer';
|
|
grid-template-columns: minmax( 0, var( --width-layout ) ) var( --width-toc );
|
|
}
|
|
}
|
|
|
|
.citizen-animations-ready {
|
|
.citizen-body-container {
|
|
transition: var( --transition-menu );
|
|
transition-property: grid;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Wider page width for certain namespaces */
|
|
@media ( min-width: @min-width-breakpoint-desktop-wide ) {
|
|
// 1 - Special, 6 - File, 14 - Category
|
|
.ns {
|
|
&--1,
|
|
&-6,
|
|
&-14 {
|
|
--width-layout: var( --width-layout--extended );
|
|
}
|
|
}
|
|
}
|