mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 23:05:47 +00:00
6efff7f5da
* 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
28 lines
404 B
Plaintext
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 );
|
|
}
|
|
}
|