mediawiki-skins-Citizen/resources/skins.citizen.styles.sitestats/skins.citizen.styles.sitestats.less
alistair3149 6efff7f5da feat: revamp drawer header
* wgLogo is always visible in the drawer
* Increase the size of wiki name
* Sitestats will now format large numbers into human readable formats (e.g. 12.2K, 3M, etc.)
* Sitestats now use icons instead of text as labels
* Remove wordmark for now, will revisit later
2022-04-23 01:30:02 -04:00

28 lines
404 B
Plaintext

@import '../variables.less';
#mw-drawer-sitestats {
display: flex;
font-size: @ui-menu-text;
}
.sitestats-item {
display: flex;
align-items: center;
margin-right: 15px;
&:before {
width: 14px;
height: 14px;
margin-right: 7px;
background-size: contain;
content: '';
opacity: var( --opacity-icon-base );
}
}
.skin-citizen-dark {
.sitestats-item:before {
filter: invert( 1 );
}
}