mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-27 18:53:20 +01:00
192 lines
6.7 KiB
SCSS
192 lines
6.7 KiB
SCSS
body:not(.dark-mode) .component_videoplayer {
|
|
background: #525659;
|
|
}
|
|
.component_videoplayer {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
.video_container {
|
|
display: flex;
|
|
flex: 1;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
padding: 15px 10px 65px 10px;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
> span {
|
|
display: flex;
|
|
flex: 1;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.video_screen {
|
|
background: black;
|
|
box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
|
|
position: relative;
|
|
border-radius: 3px;
|
|
margin: auto;
|
|
position: relative;
|
|
width: 800px;
|
|
|
|
.video_wrapper { height: 450px; }
|
|
.loader {
|
|
position: absolute;
|
|
top: 30%;
|
|
width: 100%;
|
|
}
|
|
|
|
&.is-casting-yes .videoplayer_control,
|
|
&.video-state-pause .videoplayer_control,
|
|
&.video-state-buffer .videoplayer_control,
|
|
&.video-state-play:hover .videoplayer_control { opacity: 1; transition: 0.1s opacity ease; }
|
|
.videoplayer_control {
|
|
transition: 0.5s opacity ease;
|
|
opacity: 0;
|
|
|
|
display: flex;
|
|
text-align: left;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADCCAYAAACIaaiTAAAAAXNSR0IArs4c6QAAARJJREFUOE9lyNdHBQAAhfHb3nvvuu2997jNe29TJJEkkkgSSSSJJJJEEkkiifRH5jsP56Xz8PM5gcC/xfCIWBNHiXiTQIlEk0SJZJNCiVRIM+mUyDCZlMgy2ZTIMbmUyDP5lCgwhZQoMsWUKDGllCgz5ZSogEpTRYlqU0OJoKmlRJ2pp0SDaaREk2mmRItppUSbaadEh+mkRBd0mx5K9Jo+SvSbAUoMmiFKDJsRSoyaMUqMmwlKhMwkJabMNCVmYNbMUSJsIpSImnlKLJhFSiyZZWoFVmEN1mEDNmELtmEHdmEP9uEADuEIjuEETuEMzuECLuEKruEGbuEO7uEBHuEJnuEFXuEN3uEDPuELvuEHfv8AoRErEi7Uc8UAAAAASUVORK5CYII=);
|
|
background-repeat: repeat-x;
|
|
background-size: contain;
|
|
padding: 0 0 7px 0;
|
|
|
|
img {
|
|
cursor: pointer;
|
|
width: 25px;
|
|
filter: brightness(0) invert(1);
|
|
padding: 5px 5px 5px 10px;
|
|
}
|
|
input[type="range"] {
|
|
width: 60px;
|
|
cursor: pointer;
|
|
outline: none;
|
|
-webkit-appearance: none;
|
|
background: transparent;
|
|
|
|
&::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
height: 12px;
|
|
width: 12px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
background: white;
|
|
margin-top: -5px;
|
|
}
|
|
&::-moz-range-thumb {
|
|
-webkit-appearance: none;
|
|
height: 12px;
|
|
width: 12px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
background: white;
|
|
margin-top: -5px;
|
|
}
|
|
&::-webkit-slider-runnable-track {
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: rgba(255,255,255,0.7);
|
|
border-radius: 2px;
|
|
}
|
|
&::-moz-range-track {
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: rgba(255,255,255,0.7);
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
.timecode {
|
|
color: white;
|
|
margin: auto 0;
|
|
padding-left: 10px;
|
|
.hint {
|
|
position: absolute;
|
|
top: -40px;
|
|
margin-left: -23px;
|
|
font-size: 0.9rem;
|
|
background: #f1f1f155;
|
|
border-radius: 3px;
|
|
padding: 2px 5px;
|
|
background: var(--dark);
|
|
}
|
|
}
|
|
.progress {
|
|
position: absolute;
|
|
width: 100%;
|
|
top: -20px;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
|
|
.progress-active, .progress-buffer, .progress-placeholder {
|
|
top: 10px;
|
|
position: absolute;
|
|
height: 4px;
|
|
}
|
|
.progress-active {
|
|
background: var(--primary);
|
|
border-top-right-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
.thumb {
|
|
display: none;
|
|
float: right;
|
|
width: 4px;
|
|
height: 4px;
|
|
background: rgba(255,255,255,0.1);
|
|
border-radius: 50%;
|
|
margin-top: 0px;
|
|
position: relative;
|
|
left: 3px;
|
|
}
|
|
}
|
|
.progress-buffer {
|
|
background: #e2e2e244;
|
|
}
|
|
.progress-placeholder {
|
|
background: #e2e2e222;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
video {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
.component_videoplayer .video_container .video_screen .videoplayer_control:hover .progress .progress-active .thumb { display: block; }
|
|
|
|
|
|
.video-enter, .video-appear{
|
|
opacity: 0;
|
|
}
|
|
.video-enter.video-enter-active, .video-appear.video-appear-active{
|
|
transition: top .3s,right .3s,bottom .3s,left .3s,max-width .3s,max-height .3s;
|
|
-webkit-animation-name: zoomIn;
|
|
animation-name: zoomIn;
|
|
animation-duration: .3s;
|
|
-webkit-animation-timing-function: cubic-bezier(.51,.92,.24,1.15);
|
|
animation-timing-function: cubic-bezier(.51,.92,.24,1.15);
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
@keyframes zoomIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(.85);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|