2019-12-29 18:45:17 +00:00
|
|
|
/*
|
|
|
|
* Citizen - ULS toggle Styles
|
|
|
|
* https://starcitizen.tools
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
|
|
|
|
// Styles for ULS icon
|
2020-06-04 20:43:29 +00:00
|
|
|
#pt-uls a.uls-trigger,
|
|
|
|
#pt-uls a.uls-trigger:before {
|
2019-12-29 18:45:17 +00:00
|
|
|
display: block;
|
|
|
|
width: @icon-box-size + @icon-padding;
|
|
|
|
height: @header-height;
|
2021-01-11 16:45:52 +00:00
|
|
|
padding: 0 !important;
|
|
|
|
background-position: center;
|
|
|
|
background-size: @icon-box-size;
|
2019-12-29 18:45:17 +00:00
|
|
|
color: transparent; // Hide text
|
|
|
|
opacity: 0.6; // Replicate color of other icons
|
2020-03-21 04:41:45 +00:00
|
|
|
transition: @transition-opacity-quick;
|
2019-12-29 18:45:17 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-09 21:57:28 +00:00
|
|
|
.skin-citizen-dark {
|
2019-12-29 18:45:17 +00:00
|
|
|
#pt-uls a.uls-trigger {
|
|
|
|
filter: invert( 1 );
|
|
|
|
}
|
|
|
|
}
|