Bring in the initial styling

This commit is contained in:
DispatchCommit 2021-02-13 04:26:07 -08:00 committed by Sean Yesmunt
parent 6345549c88
commit 5a6743a4ce
2 changed files with 157 additions and 2 deletions

View file

@ -1,4 +1,4 @@
.video-js {
/*.video-js {
$bottom: 3.5em;
$nudge: 5px;
$middle: 50%;
@ -81,5 +81,160 @@
.vjs-no-flex .vjs-overlay-right {
margin-top: $offset-v;
}
}*/
$accent-color: var(--color-primary);
.video-js {
font-size: 12px;
overflow: hidden;
// Control Bar (container)
.vjs-control-bar {
background: none;
&::before {
position: absolute;
bottom: 0;
content: '';
height: 5rem;
width: 100%;
background: rgba(20, 20, 20, 0.45);
background: linear-gradient(0deg, rgba(0,0,0,.85) 10%, rgba(0,0,0,0) 100%);
}
}
// Progress Bar
.vjs-progress-control.vjs-control {
position: absolute;
display: flex;
align-items: center;
width: 100%;
height: 1rem;
bottom: 90%;
// Circle play head
.vjs-play-progress::before {
transform: scale(0);
transition: transform .3s;
}
&:hover {
.vjs-play-progress::before {
transform: scale(1);
}
}
// Progress Slider
.vjs-slider {
margin: 0 1rem;
}
}
// Load progress color
.vjs-load-progress,
.vjs-load-progress div {
background-color: rgba(160, 160, 160, 0.5);
}
// Progress Bar Background
.vjs-slider {
background-color: rgba(60, 60, 60, 0.5);
}
// Primary Color Progress
.vjs-slider-bar {
background-color: $accent-color;
}
// Inner Progress Bar
.vjs-play-progress {
background-color: $accent-color;
color: $accent-color;
}
// Spacer
.vjs-custom-control-spacer {
display: flex;
flex: auto;
}
// Transcoding menu
/*.vjs-tech {
height: auto !important;
position: absolute !important;
}*/
// Menu size
.vjs-playback-rate .vjs-menu .vjs-menu-content {
width: 125%;
font-size: 10px;
}
// Volume slider
.vjs-volume-panel {
&.vjs-control {
transition: .2s;
}
.vjs-volume-control.vjs-volume-horizontal {
transition: .2s;
}
}
}
// Tooltip
.vjs-mouse-display .vjs-time-tooltip {
color: $accent-color;
}
// Tooltip
.video-js {
.vjs-progress-control{
.vjs-play-progress {
.vjs-time-tooltip {
display: none;
}
}
}
}
// Transitions control bar between active / inactive
.vjs-has-started {
.vjs-control-bar {
opacity: 1;
transition: .1s;
}
&.vjs-user-inactive.vjs-playing {
.vjs-control-bar {
opacity: 0;
transition: .3s;
}
}
&.vjs-user-active.vjs-playing {
.vjs-control-bar {
}
}
}
// Button glow
.video-js {
.vjs-control {
&:focus:before,
&:hover:before,
&:focus {
// Disable builtin button glow
text-shadow: none;
}
}
}
.bottom-gradient {
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 72px);
}

View file

@ -387,7 +387,7 @@
}
.vjs-control-bar {
background-color: rgba(0, 0, 0, 0.8);
// background-color: rgba(0, 0, 0, 0.8);
.vjs-remaining-time {
display: none;