2018-03-01 19:02:51 +01:00
|
|
|
@import '_variables';
|
|
|
|
@import '_mixins';
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
$primary-foreground-color: #fff;
|
2018-03-29 16:01:50 +02:00
|
|
|
$primary-foreground-opacity: 0.9;
|
|
|
|
$primary-foreground-opacity-hover: 1;
|
2017-12-05 10:44:11 +01:00
|
|
|
$primary-background-color: #000;
|
2018-03-29 16:01:50 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
$font-size: 13px;
|
|
|
|
$control-bar-height: 34px;
|
2017-10-06 10:40:09 +02:00
|
|
|
|
2018-03-29 16:01:50 +02:00
|
|
|
$slider-bg-color: lighten($primary-background-color, 33%);
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
$setting-transition-duration: 0.15s;
|
|
|
|
$setting-transition-easing: ease-out;
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.video-js.vjs-peertube-skin {
|
|
|
|
font-size: $font-size;
|
2018-03-30 17:40:00 +02:00
|
|
|
color: $primary-foreground-color;
|
2017-10-06 10:40:09 +02:00
|
|
|
|
2018-02-28 15:33:45 +01:00
|
|
|
.vjs-dock-text {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-dock-description {
|
|
|
|
font-size: 11px;
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
&::before, &::after {
|
2018-02-28 15:33:45 +01:00
|
|
|
display: inline-block;
|
|
|
|
content: '\1F308';
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
&::before {
|
2018-02-28 15:33:45 +01:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
&::after {
|
2018-02-28 15:33:45 +01:00
|
|
|
margin-left: 4px;
|
|
|
|
transform: scale(-1, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-button > .vjs-icon-placeholder::before {
|
|
|
|
line-height: $control-bar-height;
|
2017-10-06 10:40:09 +02:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
.vjs-volume-level::before {
|
2017-12-05 10:44:11 +01:00
|
|
|
content: ''; /* Remove Circle From Progress Bar */
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-audio-button {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-big-play-button {
|
2017-12-11 10:26:29 +01:00
|
|
|
outline: 0;
|
2018-02-20 16:13:05 +01:00
|
|
|
font-size: 6em;
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-04-03 15:11:46 +02:00
|
|
|
$big-play-width: 1.2em;
|
|
|
|
$big-play-height: 1.2em;
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
border: 0;
|
2018-04-03 15:11:46 +02:00
|
|
|
border-radius: 100%;
|
2017-07-06 16:26:18 +02:00
|
|
|
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
2018-02-14 17:16:32 +01:00
|
|
|
width: $big-play-width;
|
|
|
|
height: $big-play-height;
|
|
|
|
line-height: $big-play-height;
|
2017-07-06 16:26:18 +02:00
|
|
|
margin-left: -($big-play-width / 2);
|
|
|
|
margin-top: -($big-play-height / 2);
|
2018-02-14 17:16:32 +01:00
|
|
|
transition: opacity 0.5s;
|
2018-01-19 09:15:42 +01:00
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
padding: 0
|
|
|
|
}
|
2018-01-29 16:45:29 +01:00
|
|
|
|
|
|
|
.vjs-icon-placeholder::before {
|
2018-04-03 17:33:39 +02:00
|
|
|
transition: font-size 0.2s, opacity 0.2s;
|
2018-01-29 16:45:29 +01:00
|
|
|
}
|
|
|
|
|
2018-02-14 17:16:32 +01:00
|
|
|
&:hover {
|
2018-04-03 15:11:46 +02:00
|
|
|
opacity: 0.8;
|
2018-02-14 17:16:32 +01:00
|
|
|
|
|
|
|
.vjs-icon-placeholder::before {
|
2018-04-03 15:11:46 +02:00
|
|
|
font-size: 110%;
|
2018-02-14 17:16:32 +01:00
|
|
|
}
|
2018-01-29 16:45:29 +01:00
|
|
|
}
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-20 11:05:10 +01:00
|
|
|
&.vjs-has-started .vjs-big-play-button {
|
|
|
|
display: block;
|
|
|
|
visibility: hidden;
|
2018-04-03 15:11:46 +02:00
|
|
|
|
|
|
|
&, &::before {
|
|
|
|
opacity: 0;
|
|
|
|
transition: visibility 0.1s, opacity 0.1s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vjs-has-started video {
|
|
|
|
background-color: #000;
|
|
|
|
animation: fade-black-on-play 0.5s linear;
|
|
|
|
|
|
|
|
@keyframes fade-black-on-play {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2017-12-20 11:05:10 +01:00
|
|
|
}
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-control-bar,
|
|
|
|
.vjs-big-play-button,
|
2018-03-30 17:40:00 +02:00
|
|
|
.vjs-settings-dialog {
|
2017-12-05 10:44:11 +01:00
|
|
|
background-color: rgba($primary-background-color, 0.5);
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-slider {
|
|
|
|
background-color: rgba(255, 255, 255, .3);
|
2017-07-06 16:26:18 +02:00
|
|
|
border-radius: 2px;
|
2017-12-05 10:44:11 +01:00
|
|
|
height: 5px;
|
2018-03-29 16:01:50 +02:00
|
|
|
|
|
|
|
.vjs-slider-bar {
|
|
|
|
background: $primary-foreground-color;
|
|
|
|
}
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-29 16:28:07 +02:00
|
|
|
.vjs-play-progress {
|
2018-03-30 17:40:00 +02:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
top: -0.3em;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
top: -0.372em;
|
|
|
|
}
|
2018-03-29 16:28:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-time-tooltip {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-load-progress {
|
|
|
|
background: rgba($slider-bg-color, 0.5);
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-29 16:01:50 +02:00
|
|
|
div {
|
|
|
|
background: rgba($slider-bg-color, 0.75);
|
|
|
|
}
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-poster {
|
|
|
|
outline: none; /* Remove Blue Outline on Click*/
|
|
|
|
outline: 0;
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-control-bar {
|
|
|
|
height: $control-bar-height;
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-29 16:28:07 +02:00
|
|
|
.vjs-progress-control,
|
|
|
|
.vjs-play-control,
|
|
|
|
.vjs-playback-rate,
|
|
|
|
.vjs-mute-control,
|
|
|
|
.vjs-volume-control,
|
|
|
|
.vjs-resolution-control,
|
2018-03-30 17:40:00 +02:00
|
|
|
.vjs-fullscreen-control,
|
|
|
|
.vjs-peertube-link,
|
|
|
|
.vjs-settings
|
2018-03-29 16:28:07 +02:00
|
|
|
{
|
2018-03-30 17:40:00 +02:00
|
|
|
color: $primary-foreground-color !important;
|
2018-03-29 16:28:07 +02:00
|
|
|
opacity: $primary-foreground-opacity;
|
|
|
|
transition: opacity .1s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: $primary-foreground-opacity-hover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-current-time,
|
|
|
|
.vjs-duration,
|
|
|
|
.vjs-peertube {
|
|
|
|
color: $primary-foreground-color;
|
2018-03-30 17:40:00 +02:00
|
|
|
opacity: $primary-foreground-opacity;
|
2018-03-29 16:28:07 +02:00
|
|
|
}
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-progress-control {
|
|
|
|
bottom: 34px;
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
height: 5px;
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-progress-holder {
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-play-control {
|
2018-03-01 19:02:51 +01:00
|
|
|
@include disable-outline;
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
cursor: pointer;
|
2017-12-05 10:44:11 +01:00
|
|
|
font-size: $font-size;
|
|
|
|
padding: 0 17px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-time-control {
|
|
|
|
&.vjs-current-time {
|
|
|
|
font-size: $font-size;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
.vjs-current-time-display {
|
2017-12-20 09:43:51 +01:00
|
|
|
line-height: calc(#{$control-bar-height} + 1px);
|
2017-12-05 10:44:11 +01:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "/";
|
|
|
|
margin: 0 1px 0 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vjs-duration {
|
|
|
|
font-size: $font-size;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
.vjs-duration-display {
|
2017-12-20 09:43:51 +01:00
|
|
|
line-height: calc(#{$control-bar-height} + 1px);
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vjs-remaining-time {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-02-26 09:55:23 +01:00
|
|
|
.vjs-peertube {
|
2017-12-05 10:44:11 +01:00
|
|
|
width: 100%;
|
|
|
|
line-height: $control-bar-height;
|
|
|
|
text-align: right;
|
|
|
|
|
2018-02-26 09:55:23 +01:00
|
|
|
.vjs-peertube-displayed {
|
2017-12-11 09:13:01 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-02-26 09:55:23 +01:00
|
|
|
.vjs-peertube-hidden {
|
2017-12-11 09:13:01 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.download-speed-number, .upload-speed-number, .peers-number {
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-speed-text, .upload-speed-text, .peers-text {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
background-size: contain;
|
|
|
|
vertical-align: middle;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
margin-right: 6px;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
|
|
|
|
&.icon-download {
|
|
|
|
background-image: url('../assets/player/images/arrow-down.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
&.icon-upload {
|
|
|
|
background-image: url('../assets/player/images/arrow-up.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-01 08:26:56 +01:00
|
|
|
.vjs-playback-rate {
|
|
|
|
font-size: 10px;
|
2018-03-01 19:02:51 +01:00
|
|
|
width: 37px !important;
|
2018-03-01 13:02:09 +01:00
|
|
|
|
|
|
|
.vjs-playback-rate-value {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: $control-bar-height;
|
|
|
|
}
|
2018-03-01 19:02:51 +01:00
|
|
|
|
|
|
|
.vjs-menu .vjs-menu-content {
|
|
|
|
width: 37px !important;
|
|
|
|
}
|
2018-03-01 08:26:56 +01:00
|
|
|
}
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-mute-control {
|
2018-03-01 19:02:51 +01:00
|
|
|
@include disable-outline;
|
|
|
|
|
|
|
|
line-height: $control-bar-height;
|
|
|
|
padding: 0;
|
|
|
|
width: 30px;
|
2018-01-09 15:40:46 +01:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-icon-placeholder {
|
|
|
|
display: inline-block;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
vertical-align: middle;
|
|
|
|
background: url('../assets/player/images/volume.svg') no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vjs-vol-0 .vjs-icon-placeholder {
|
|
|
|
background: url('../assets/player/images/volume-mute.svg') no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-01 19:02:51 +01:00
|
|
|
.vjs-volume-control {
|
|
|
|
width: 30px;
|
2018-03-30 17:40:00 +02:00
|
|
|
margin: 0 5px 0 0;
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-volume-bar {
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAcCAQAAACw95UnAAAAMElEQVRIx2NgoBL4n4YKGUYNHkEG4zJg1OCRYDCpBowaPJwMppbLRg0eNXjUYBLEAXWNUA6QNm1lAAAAAElFTkSuQmCC) no-repeat;
|
|
|
|
background-size: 22px 14px;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 22px;
|
|
|
|
max-height: 14px;
|
|
|
|
margin: 7px 4px;
|
|
|
|
border-radius: 0;
|
|
|
|
top: 3px;
|
|
|
|
|
|
|
|
.vjs-volume-level {
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAcAQAAAAAyhWABAAAAAnRSTlMAAHaTzTgAAAAZSURBVHgBYwAB/g9EUv+JokCqiaT+U4MCAPKPS7WUUOc1AAAAAElFTkSuQmCC) no-repeat;
|
|
|
|
background-size: 22px 14px;
|
|
|
|
max-width: 22px;
|
|
|
|
max-height: 14px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
|
|
|
|
.vjs-volume-panel.vjs-volume-panel-horizontal:active,
|
|
|
|
.vjs-volume-panel.vjs-volume-panel-horizontal:focus,
|
|
|
|
.vjs-volume-panel.vjs-volume-panel-horizontal:hover {
|
|
|
|
width: 6em;
|
|
|
|
transition-property: none;
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal {
|
|
|
|
width: 3em;
|
|
|
|
height: auto;
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control {
|
|
|
|
transition-property: none;
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-volume-panel {
|
|
|
|
.vjs-mute-control {
|
|
|
|
width: 2em;
|
|
|
|
z-index: 1;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-volume-control {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
left: 5px;
|
|
|
|
opacity: 1;
|
|
|
|
width: 3em;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
.vjs-peertube-link {
|
|
|
|
@include disable-outline;
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: $control-bar-height;
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-fullscreen-control {
|
2018-03-01 19:02:51 +01:00
|
|
|
@include disable-outline;
|
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
width: 37px;
|
|
|
|
|
|
|
|
.vjs-icon-placeholder {
|
|
|
|
display: inline-block;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
vertical-align: middle;
|
|
|
|
background: url('../assets/player/images/fullscreen.svg') no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
|
2017-12-05 10:44:11 +01:00
|
|
|
.vjs-menu-button-popup {
|
|
|
|
font-weight: $font-semibold;
|
2017-12-20 09:43:51 +01:00
|
|
|
width: 50px;
|
2017-12-05 10:44:11 +01:00
|
|
|
|
|
|
|
.vjs-resolution-button {
|
2018-03-01 19:02:51 +01:00
|
|
|
@include disable-outline;
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-menu {
|
|
|
|
top: 20px;
|
2018-03-01 19:02:51 +01:00
|
|
|
left: 0;
|
2017-12-05 10:44:11 +01:00
|
|
|
|
|
|
|
.vjs-menu-content {
|
2017-12-20 09:43:51 +01:00
|
|
|
width: 50px;
|
2018-03-01 19:02:51 +01:00
|
|
|
bottom: 20px;
|
2017-12-05 10:44:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
text-transform: none;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-11 09:13:01 +01:00
|
|
|
|
2018-03-27 18:45:51 +02:00
|
|
|
@media screen and (max-width: 570px) {
|
2018-03-26 13:44:52 +02:00
|
|
|
.vjs-dock-text {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-dock-description {
|
|
|
|
font-size: 9px;
|
|
|
|
}
|
|
|
|
|
2017-12-20 11:05:10 +01:00
|
|
|
.vjs-big-play-button {
|
2018-03-26 13:44:52 +02:00
|
|
|
font-size: 4.5em;
|
2017-12-20 11:05:10 +01:00
|
|
|
}
|
|
|
|
|
2018-03-01 13:02:09 +01:00
|
|
|
.vjs-playback-rate {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-02-28 08:26:22 +01:00
|
|
|
.vjs-peertube {
|
2017-12-20 09:43:51 +01:00
|
|
|
padding: 0 !important;
|
|
|
|
|
2018-02-28 08:26:22 +01:00
|
|
|
.vjs-peertube-displayed {
|
2017-12-20 09:43:51 +01:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 300px) {
|
2017-12-20 11:05:10 +01:00
|
|
|
.vjs-dock-text {
|
2018-02-28 15:33:45 +01:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2017-12-20 11:05:10 +01:00
|
|
|
.vjs-big-play-button {
|
2018-03-27 14:39:10 +02:00
|
|
|
font-size: 3em;
|
2017-12-20 11:05:10 +01:00
|
|
|
}
|
|
|
|
|
2017-12-20 09:43:51 +01:00
|
|
|
.vjs-volume-control {
|
2017-12-11 09:13:01 +01:00
|
|
|
display: none !important;
|
|
|
|
}
|
2017-12-20 09:43:51 +01:00
|
|
|
|
2018-04-03 18:18:58 +02:00
|
|
|
.vjs-peertube-link {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings {
|
|
|
|
width: 33px;
|
2017-12-20 09:43:51 +01:00
|
|
|
}
|
2017-12-11 09:13:01 +01:00
|
|
|
}
|
2017-07-06 16:26:18 +02:00
|
|
|
}
|
2017-10-31 08:41:46 +01:00
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
// Play/pause animations
|
|
|
|
.vjs-has-started .vjs-play-control {
|
|
|
|
&.vjs-playing {
|
|
|
|
animation: remove-pause-button 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vjs-paused {
|
|
|
|
animation: add-play-button 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes remove-pause-button {
|
|
|
|
0% {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes add-play-button {
|
|
|
|
0% {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-31 08:41:46 +01:00
|
|
|
// Thanks: https://projects.lukehaas.me/css-loaders/
|
|
|
|
.vjs-loading-spinner {
|
2017-10-31 11:52:52 +01:00
|
|
|
left: 50%;
|
2017-10-31 08:41:46 +01:00
|
|
|
font-size: 10px;
|
2017-10-31 11:52:52 +01:00
|
|
|
text-indent: -9999em;
|
|
|
|
border: 0.7em solid rgba(255, 255, 255, 0.2);
|
|
|
|
border-left-color: #ffffff;
|
2017-10-31 08:41:46 +01:00
|
|
|
transform: translateZ(0);
|
2018-01-16 10:10:20 +01:00
|
|
|
animation: 0.3s ease-out 1.1s forwards vjs-spinner-show, spinner 1.4s infinite linear !important;
|
2017-12-12 14:41:59 +01:00
|
|
|
overflow: hidden;
|
2018-01-11 15:14:40 +01:00
|
|
|
visibility: hidden;
|
2017-10-31 08:41:46 +01:00
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
&::before {
|
2017-10-31 08:41:46 +01:00
|
|
|
animation: none !important;
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
&::after {
|
2017-10-31 08:41:46 +01:00
|
|
|
border-radius: 50%;
|
2017-10-31 11:52:52 +01:00
|
|
|
width: 6em;
|
|
|
|
height: 6em;
|
2017-10-31 08:41:46 +01:00
|
|
|
animation: none !important;
|
|
|
|
}
|
|
|
|
|
2017-10-31 11:52:52 +01:00
|
|
|
@keyframes spinner {
|
2017-10-31 08:41:46 +01:00
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2018-01-11 15:14:40 +01:00
|
|
|
|
|
|
|
@keyframes vjs-spinner-show {
|
|
|
|
0% {
|
|
|
|
display: none;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
1% {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2017-10-31 08:41:46 +01:00
|
|
|
}
|
2017-12-11 09:13:01 +01:00
|
|
|
|
2018-02-26 09:55:23 +01:00
|
|
|
// Error display disabled
|
|
|
|
.vjs-error:not(.vjs-error-display-enabled) {
|
|
|
|
.vjs-error-display {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-loading-spinner {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error display enabled
|
|
|
|
.vjs-error.vjs-error-display-enabled {
|
|
|
|
.vjs-error-display {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2018-03-30 17:40:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Sass for videojs-settings-menu */
|
|
|
|
|
|
|
|
.video-js {
|
|
|
|
|
|
|
|
.vjs-settings {
|
|
|
|
@include disable-outline;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
width: 37px;
|
|
|
|
|
|
|
|
.vjs-icon-placeholder {
|
|
|
|
display: inline-block;
|
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
|
|
|
vertical-align: middle;
|
|
|
|
background: url('../assets/player/images/settings.svg') no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-sub-menu-title {
|
|
|
|
width: 4em;
|
|
|
|
text-transform: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-dialog {
|
|
|
|
position: absolute;
|
|
|
|
right: .5em;
|
|
|
|
bottom: 3.5em;
|
|
|
|
color: $primary-foreground-color;
|
|
|
|
opacity: $primary-foreground-opacity;
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: $font-size !important;
|
|
|
|
|
|
|
|
width: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
transition: width $setting-transition-duration $setting-transition-easing, height $setting-transition-duration $setting-transition-easing;
|
|
|
|
|
|
|
|
.vjs-settings-sub-menu-value,
|
|
|
|
.vjs-settings-sub-menu-title {
|
|
|
|
display: table-cell;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-sub-menu-title {
|
|
|
|
text-align: left;
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-sub-menu-value {
|
|
|
|
width: 100%;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-panel {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
border-radius: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-panel-child {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
align-items: flex-end;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .vjs-menu {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .vjs-menu,
|
|
|
|
> .vjs-settings-sub-menu {
|
|
|
|
transition: all $setting-transition-duration $setting-transition-easing;
|
|
|
|
|
|
|
|
.vjs-menu-item {
|
|
|
|
|
2018-04-03 15:11:46 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:40:00 +02:00
|
|
|
&:first-child {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
font-size: 1em;
|
|
|
|
text-transform: initial;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .vjs-menu {
|
|
|
|
.vjs-menu-item {
|
|
|
|
padding: 8px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-settings-sub-menu-value::after {
|
|
|
|
@include chevron-right(9px, 2px);
|
|
|
|
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .vjs-settings-sub-menu {
|
|
|
|
width: 80px;
|
|
|
|
|
|
|
|
.vjs-menu-item {
|
|
|
|
outline: 0;
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
|
|
|
|
padding: 5px 8px;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
&.vjs-back-button {
|
|
|
|
background-color: inherit;
|
|
|
|
padding: 8px 8px 13px 8px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
border-bottom: 1px solid grey;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
@include chevron-left(9px, 2px);
|
|
|
|
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vjs-selected {
|
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
@include icon(15px);
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
left: 8px;
|
|
|
|
content: ' ';
|
|
|
|
margin-top: 1px;
|
|
|
|
background-image: url('../assets/player/images/tick.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|