mediawiki-skins-Citizen/resources/skins.citizen.styles/common/content.less
2023-01-31 15:01:03 -05:00

19 lines
338 B
Plaintext

.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 );
}
}
}
}