mediawiki-skins-Citizen/skinStyles/ext.uls.pt.less

32 lines
578 B
Plaintext
Raw Normal View History

2019-08-15 17:40:13 +00:00
/*
* Citizen - ULS toggle Styles
* https://starcitizen.tools
*/
@import '../resources/variables.less';
// Styles for ULS icon
#pt-uls a.uls-trigger {
2019-12-26 10:21:50 +00:00
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;
2019-08-15 17:40:13 +00:00
2019-12-26 10:21:50 +00:00
&:hover,
&:focus,
&:active {
opacity: 0.8;
}
2019-08-15 17:40:13 +00:00
}
2019-12-02 21:05:23 +00:00
2019-12-26 10:21:50 +00:00
@media ( prefers-color-scheme: dark ) {
#pt-uls a.uls-trigger {
filter: invert( 1 );
}
}