mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
5d3ecd9edd
This is an on-going work to adapt Codex into Citizen. Some of the CSS variables are soft depreciated, see tokens.less for updated info.
41 lines
722 B
Plaintext
41 lines
722 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* Module: mediawiki.skinning.interface-subtitle
|
|
* Version: REL1_39
|
|
*
|
|
* Date: 2023-06-06
|
|
*/
|
|
|
|
#siteSub,
|
|
#contentSub,
|
|
#contentSub2 {
|
|
overflow: hidden;
|
|
font-size: var( --font-size-x-small );
|
|
line-height: var( --line-height-xs );
|
|
color: var( --color-subtle );
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
// #contentSub can be empty
|
|
#contentSub:not( :empty ),
|
|
#contentSub2 {
|
|
margin-bottom: var( --space-md );
|
|
}
|
|
|
|
// Reduced spacing if both sub1 and 2 exists
|
|
#contentSub + #contentSub2 {
|
|
margin-top: ~'calc( var( --space-xs ) * -1 )';
|
|
}
|
|
|
|
#citizen-tagline-user > span + span::before {
|
|
margin: 0 var( --space-xxs );
|
|
content: '·';
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
span.subpages {
|
|
display: block;
|
|
}
|