mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
32 lines
584 B
Plaintext
32 lines
584 B
Plaintext
/*
|
|
* Citizen - ULS toggle Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
// Styles for ULS icon
|
|
#pt-uls a.uls-trigger {
|
|
padding: 0;
|
|
display: block;
|
|
width: @icon-box-size + @icon-padding;
|
|
height: @header-height;
|
|
color: transparent; // Hide text
|
|
opacity: 0.6; // Replicate color of other icons
|
|
background-size: @icon-box-size;
|
|
background-position: center;
|
|
transition: @transition-opacity;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
#pt-uls a.uls-trigger {
|
|
filter: invert( 1 );
|
|
}
|
|
}
|