paperless-ngx/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss

37 lines
513 B
SCSS
Raw Normal View History

2020-12-13 14:10:55 +01:00
@import "/src/theme";
2020-10-27 01:10:18 +01:00
.doc-img {
2020-12-07 22:29:51 +01:00
object-fit: cover;
object-position: top;
2020-11-22 21:06:48 +01:00
height: 200px;
2020-12-13 14:10:55 +01:00
mix-blend-mode: multiply;
}
.document-card-check {
2020-12-14 23:14:04 -08:00
display: none;
position: absolute;
top: 0;
left: 0;
.custom-control {
margin-left: 4px;
margin-right: -3px;
}
}
.document-card:hover .document-card-check {
display: block;
2020-12-13 14:10:55 +01:00
}
.card-selected {
border-color: $primary;
2020-12-14 23:14:04 -08:00
.document-card-check {
display: block;
}
2020-12-13 14:10:55 +01:00
}
.doc-img-background-selected {
background-color: $primaryFaded;
2020-12-14 23:14:04 -08:00
}