mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2025-04-25 09:49:11 -04:00
30 lines
614 B
SCSS
30 lines
614 B
SCSS
.vjs-quality-selector {
|
|
.vjs-menu-button {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
.vjs-icon-placeholder {
|
|
// From video.js font: https://github.com/videojs/font
|
|
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
|
|
font-family: 'VideoJS';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
&::before {
|
|
content: '\f110';
|
|
}
|
|
}
|
|
}
|
|
|
|
.vjs-quality-changing {
|
|
.vjs-big-play-button {
|
|
display: none;
|
|
}
|
|
.vjs-control-bar {
|
|
display: flex;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|