2021-05-27 14:57:20 +00:00
|
|
|
figure,
|
|
|
|
.thumb {
|
|
|
|
margin: @content-margin-top 0;
|
|
|
|
|
|
|
|
.thumbinner {
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
a {
|
|
|
|
&.image {
|
|
|
|
overflow: hidden;
|
|
|
|
max-width: inherit;
|
|
|
|
margin-right: 2px; // Counter the 2px space added by core
|
|
|
|
border-radius: var( --border-radius--small );
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover:not( .lazy ):not( .new ) {
|
2022-04-24 19:24:09 +00:00
|
|
|
box-shadow: var( --box-shadow-card );
|
2021-05-27 14:57:20 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
transform: scale( 1.1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.new {
|
|
|
|
display: block;
|
|
|
|
padding: @margin-side / 2;
|
|
|
|
background-color: var( --background-color-framed );
|
2022-05-01 23:14:17 +00:00
|
|
|
transition: @transition-background, @transition-color;
|
2021-05-27 14:57:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
figcaption,
|
|
|
|
.thumbcaption {
|
|
|
|
margin: @content-margin-top / 2 0;
|
|
|
|
color: var( --color-base--subtle );
|
|
|
|
}
|