mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
92 lines
1.5 KiB
SCSS
92 lines
1.5 KiB
SCSS
.movie-card {
|
|
width: 240px;
|
|
|
|
@media (max-width: 576px) {
|
|
width: 100%;
|
|
}
|
|
|
|
&.card {
|
|
padding: 0 0 1rem;
|
|
}
|
|
|
|
&-image {
|
|
object-fit: contain;
|
|
width: 100%;
|
|
}
|
|
|
|
.movie-scene-number {
|
|
text-align: center;
|
|
}
|
|
|
|
&__details {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
.movie-images {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
max-width: 100%;
|
|
|
|
.movie-image-container {
|
|
box-shadow: none;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
|
|
#movie-page .rating-number .text-input {
|
|
width: auto;
|
|
}
|
|
|
|
.movie-select-option {
|
|
.movie-select-row {
|
|
align-items: center;
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
.movie-select-image {
|
|
background-color: $body-bg;
|
|
margin-right: 0.4em;
|
|
max-height: 50px;
|
|
max-width: 89px;
|
|
object-fit: contain;
|
|
object-position: center;
|
|
}
|
|
|
|
.movie-select-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
max-height: 4.1rem;
|
|
overflow: hidden;
|
|
|
|
.movie-select-title {
|
|
flex-shrink: 0;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
|
|
.movie-select-alias {
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.movie-select-date,
|
|
.movie-select-studio {
|
|
color: $text-muted;
|
|
flex-shrink: 0;
|
|
font-size: 0.9rem;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
}
|