mediawiki-skins-Citizen/resources/skins.citizen.styles/skinning/content.thumbnails-screen.less
alistair3149 85f036c2f8
feat(core): remove expensive CSS animation
Avoid paint and layout triggering transitions
2023-07-16 15:32:13 -04:00

48 lines
765 B
Plaintext

/*
* Citizen
*
* Module: mediawiki.skinning.content.thumbnails-screen
* Version: REL1_39
*
* Date: 2022-11-18
*/
.thumbinner {
> a {
display: block;
border-radius: var( --border-radius--small );
&.image {
max-width: inherit;
margin-right: 1px;
// Counter the weird hardcoded 2px width added by core
margin-left: 1px;
> img {
max-width: inherit;
height: auto;
}
}
&::before {
content: none;
}
// Broken file styles
&.new {
padding: var( --space-sm );
border: 1px dashed var( --border-color-base--darker );
&:hover {
background-color: var( --color-destructive--hover );
color: #fff;
}
&:active {
background-color: var( --color-destructive--active );
color: #fff;
}
}
}
}