mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-19 01:31:37 +00:00
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
|
/*
|
||
|
* Citizen
|
||
|
*
|
||
|
* SkinStyles for StructuredNavigation
|
||
|
* Module: ext.structuredNav.NavigationView.styles
|
||
|
* Version: REL1_39 55e2ec0
|
||
|
*
|
||
|
* Date: 2024-09-06
|
||
|
*/
|
||
|
|
||
|
/* ext.structuredNav.NavigationView.less */
|
||
|
.mw-structurednav-navigation-container {
|
||
|
background-color: var( --color-surface-0 );
|
||
|
border-color: var( --border-color-subtle );
|
||
|
font-size: var( --font-size-small );
|
||
|
border-radius: var( --border-radius-base );
|
||
|
}
|
||
|
|
||
|
.mw-structurednav-header {
|
||
|
background: var( --color-surface-3 );
|
||
|
color: var( --color-base );
|
||
|
font-size: var( --font-size-small );
|
||
|
|
||
|
// Needs higher specificity to override default skin styles
|
||
|
// for the h2 element - Samantha Nguyen
|
||
|
.mw-structurednav-header-title {
|
||
|
font-family: var( --font-family-base );
|
||
|
font-size: var( --font-size-medium );
|
||
|
font-weight: var( --font-weight-semibold );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.mw-structurednav-group-title,
|
||
|
.mw-structurednav-group-content {
|
||
|
border-top-color: var( --color-surface-0 );
|
||
|
}
|
||
|
|
||
|
.mw-structurednav-group-title {
|
||
|
background: var( --color-surface-2 );
|
||
|
color: var( --color-base );
|
||
|
font-weight: var( --font-weight-semibold );
|
||
|
font-family: var( --font-family-base );
|
||
|
text-align: start ;
|
||
|
}
|
||
|
|
||
|
/* ext.structuredNav.NavigationView.separator.less */
|
||
|
.mw-structurednav-group-content-item:not( :last-child ):after {
|
||
|
color: var( --color-base );
|
||
|
}
|