mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
5d3ecd9edd
This is an on-going work to adapt Codex into Citizen. Some of the CSS variables are soft depreciated, see tokens.less for updated info.
37 lines
605 B
Plaintext
37 lines
605 B
Plaintext
/*
|
|
* Citizen - SRF jQuery Fancybox
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../../resources/variables.less';
|
|
|
|
.skin-theme-clientpref-night {
|
|
#fancybox-outer {
|
|
background: var( --color-surface-0 );
|
|
}
|
|
|
|
#fancybox-content {
|
|
border: 0 solid var( --color-surface-0 );
|
|
}
|
|
|
|
#fancybox-error {
|
|
color: var( --color-subtle );
|
|
}
|
|
|
|
.fancybox-title-inside {
|
|
background: var( --color-surface-0 );
|
|
}
|
|
|
|
.fancybox-title-outside {
|
|
color: var( --color-surface-0 );
|
|
}
|
|
|
|
.fancybox-title-over {
|
|
color: var( --color-surface-0 );
|
|
}
|
|
|
|
#fancybox-title-float-main {
|
|
color: var( --color-surface-0 );
|
|
}
|
|
}
|