mediawiki-skins-Citizen/resources/skins.citizen.styles/common/content.less
alistair3149 5ebd7ad025
feat(core): remove plainlist styles
It should not be a part of the skin as it belongs to a template
2023-01-23 00:17:32 -05:00

40 lines
651 B
Plaintext

.firstHeading {
margin: 0;
overflow-wrap: break-word;
word-break: break-word;
}
.firstHeading-parenthesis {
color: var( --color-base--subtle );
}
.mw-page-title {
&-namespace {
color: var( --color-base );
}
&-separator {
margin-right: var( --space-xxs );
color: var( --color-base--subtle );
}
}
.citizen-body {
a.image {
display: inline-block;
overflow: hidden;
vertical-align: top; // get rid of that weird bottom gap from inline block
> img {
transition: @transition-transform;
}
// Add affordance to replace magnify icon
&:hover:not( .lazy ):not( .new ) {
> img {
transform: scale( 1.1 );
}
}
}
}