2020-03-30 14:17:18 +00:00
|
|
|
.video-preview {
|
2020-04-07 07:14:23 +00:00
|
|
|
background: none;
|
2021-02-23 11:09:22 +00:00
|
|
|
display: inline-block;
|
2020-04-16 10:47:10 +00:00
|
|
|
|
|
|
|
&-container {
|
2023-02-14 10:15:37 +00:00
|
|
|
max-height: 456px;
|
2020-04-16 10:47:10 +00:00
|
|
|
overflow: auto;
|
2023-02-14 10:15:37 +00:00
|
|
|
margin-bottom: 4px;
|
|
|
|
position: relative;
|
|
|
|
right: auto;
|
2020-04-16 10:47:10 +00:00
|
|
|
}
|
2020-03-30 14:44:45 +00:00
|
|
|
|
2020-03-30 14:17:18 +00:00
|
|
|
&-entry {
|
|
|
|
cursor: pointer;
|
2023-02-14 10:15:37 +00:00
|
|
|
height: 138px;
|
|
|
|
width: 244px;
|
2020-03-30 14:17:18 +00:00
|
|
|
position: relative;
|
2023-02-14 10:15:37 +00:00
|
|
|
margin: 0 7px 4px;
|
|
|
|
border-radius: 6px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: hidden;
|
2020-03-30 14:17:18 +00:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--selected {
|
2023-02-14 10:15:37 +00:00
|
|
|
border: 2px solid #4687ED;
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-video {
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-error {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-03-30 14:44:45 +00:00
|
|
|
|
|
|
|
&-label {
|
|
|
|
position: absolute;
|
2023-02-14 10:15:37 +00:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 8px;
|
2020-03-30 14:44:45 +00:00
|
|
|
z-index: 2;
|
2021-02-23 11:09:22 +00:00
|
|
|
|
|
|
|
&-text {
|
2023-02-14 10:15:37 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 16px;
|
|
|
|
font-weight: 600;
|
2021-03-11 09:25:49 +00:00
|
|
|
max-width: calc(100% - 16px);
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: fit-content;
|
|
|
|
white-space: nowrap;
|
2021-02-23 11:09:22 +00:00
|
|
|
}
|
2020-03-30 14:44:45 +00:00
|
|
|
}
|
2023-02-14 10:15:37 +00:00
|
|
|
|
|
|
|
&-checkbox-container {
|
|
|
|
padding: 10px 14px;
|
2021-06-10 12:48:44 +00:00
|
|
|
}
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|