mediawiki-skins-Citizen/resources/skins.citizen.styles/common/content.less

20 lines
377 B
Plaintext
Raw Normal View History

.citizen-body {
2020-06-12 18:16:45 +00:00
a.image {
display: inline-block;
2020-06-12 18:16:45 +00:00
overflow: hidden;
vertical-align: top; // get rid of that weird bottom gap from inline block
> img {
transition: var( --transition-hover );
transition-property: transform;
}
// Add affordance to replace magnify icon
&:hover:not( .lazy ):not( .new ) {
> img {
transform: scale( 1.1 );
}
}
2020-06-12 18:16:45 +00:00
}
}