mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-29 16:45:28 +00:00
28 lines
570 B
Plaintext
28 lines
570 B
Plaintext
/*
|
|
* Citizen - Popups Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../resources/variables.less';
|
|
@import '../resources/mixins.less';
|
|
|
|
.mwe-popups {
|
|
border: 0;
|
|
border-radius: 0;
|
|
.boxshadow(4);
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.mwe-popups {
|
|
background: @dark-bg-50;
|
|
|
|
.mwe-popups-container,
|
|
.mwe-popups-extract {
|
|
color: @dark-text-90;
|
|
}
|
|
|
|
.mwe-popups-extract[dir='ltr']:after {
|
|
background-image: linear-gradient(to right, rgba(255, 255, 255, 0), @dark-bg-50 50%);
|
|
}
|
|
}
|
|
} |