mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-16 19:10:34 +00:00
496b6f9403
Seeing variable @icon-size is undefined in file /srv/mediawiki/w/skins/Citizen/skinStyles/extensions/UniversalLanguageSelector/ext.uls.pt.less in ext.uls.pt.less on line 19. Which I think is due to a missing import that contains the definition of @icon-size.
39 lines
782 B
Plaintext
39 lines
782 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Extension:UniversalLanguageSelector
|
|
* Module: ext.uls.pt
|
|
* Version: MLEB 2021.12
|
|
*
|
|
* Date: 2022-05-17
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
// Needed to override specificity from original style
|
|
.skin-citizen #pt-uls .uls-trigger {
|
|
display: flex;
|
|
flex-direction: row-reverse; // So that icon is after the text
|
|
padding: 0.625rem 1.25rem !important;
|
|
|
|
// Sync with .resource-loader-list-icon() mixin
|
|
&:before {
|
|
width: @icon-size;
|
|
height: @icon-size;
|
|
flex-shrink: 0;
|
|
padding: 0;
|
|
background-position: center;
|
|
background-size: contain;
|
|
opacity: var( --opacity-icon-base );
|
|
}
|
|
|
|
// Hide default icon
|
|
&:after {
|
|
content: none;
|
|
}
|
|
}
|
|
|
|
.skin-citizen-dark .uls-trigger:before {
|
|
filter: invert( 1 ) hue-rotate( 180deg );
|
|
}
|