mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
37 lines
513 B
SCSS
37 lines
513 B
SCSS
@import "/src/theme";
|
|
|
|
.doc-img {
|
|
object-fit: cover;
|
|
object-position: top;
|
|
height: 200px;
|
|
mix-blend-mode: multiply;
|
|
}
|
|
|
|
.document-card-check {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
.custom-control {
|
|
margin-left: 4px;
|
|
margin-right: -3px;
|
|
}
|
|
}
|
|
|
|
.document-card:hover .document-card-check {
|
|
display: block;
|
|
}
|
|
|
|
.card-selected {
|
|
border-color: $primary;
|
|
|
|
.document-card-check {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.doc-img-background-selected {
|
|
background-color: $primaryFaded;
|
|
}
|