mediawiki-skins-Citizen/skinStyles/extensions/Capiunto/capiunto.infobox.main.less
alistair3149 60999eb1d9
feat(core): replace breakpoint LESS variables with Codex tokens
Codex tokens are a better implementation and this should ensure consistency across the MW ecosystem.
We have to keep a copy for now as they are introduced in 1.41.

Related: #735
2023-11-16 17:55:59 -05:00

36 lines
715 B
Plaintext

/*
* Citizen
*
* SkinStyles for Extension:Capiunto
* Module: capiunto.infobox.main
* Version: REL1_39 3a6d523
*
* Date: 2023-07-14
*/
@import '../../../resources/variables.less';
.mw-capiunto-infobox {
float: none;
margin: 0 auto var( --space-md ) auto;
clear: none;
font-size: 0.875rem;
color: var( --color-base );
background-color: var( --color-surface-2 );
border-color: var( --border-color-base );
border-radius: var( --border-radius--medium );
caption,
&-top {
font-size: 1rem;
font-weight: var( --font-weight-semibold );
}
/* Sync with floatright styles */
@media ( min-width: @min-width-breakpoint-tablet ) {
float: right;
margin-left: var( --space-lg );
clear: right;
}
}