mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-04 18:59:03 +00:00
9db1f9215c
Check commit and GitHub actions for more details
37 lines
735 B
Plaintext
37 lines
735 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Extension:DataMaps
|
|
* Module: ext.datamaps.core.styles
|
|
* Version: 0.17.7 9c448d3
|
|
*
|
|
* Date: 2024-07-11
|
|
*/
|
|
|
|
/* early.less */
|
|
.ext-datamaps-container {
|
|
border-color: transparent !important; // Needed to override OOUI styles
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ext-datamaps-container-content {
|
|
.ext-datamaps-container-leaflet {
|
|
background: var( --color-surface-3 );
|
|
}
|
|
}
|
|
|
|
/* Status.less */
|
|
.ext-datamaps-container-status {
|
|
font-size: var( --font-size-x-large );
|
|
|
|
> :not( .oo-ui-widget ) {
|
|
color: var( --color-subtle );
|
|
background: transparent;
|
|
}
|
|
|
|
&[ data-severity='error' ] > :not( .oo-ui-widget ) {
|
|
color: var( --color-emphasized );
|
|
background: var( --background-color-destructive-subtle );
|
|
}
|
|
}
|