2022-05-27 06:44:54 +02:00
|
|
|
/* Change all text and icon colors in the player. */
|
2022-10-07 03:57:49 +02:00
|
|
|
.vjs-owncast {
|
2022-10-09 01:51:49 +02:00
|
|
|
.video-js {
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
}
|
2022-05-27 06:44:54 +02:00
|
|
|
|
2022-11-13 08:34:53 +01:00
|
|
|
.vjs-menu li {
|
|
|
|
color: var(--theme-color-components-text-on-dark);
|
|
|
|
}
|
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-big-play-button {
|
|
|
|
z-index: 10;
|
|
|
|
color: var(--theme-color-action);
|
|
|
|
font-size: 8rem !important;
|
|
|
|
border-color: transparent !important;
|
|
|
|
border-radius: var(--theme-rounded-corners) !important;
|
|
|
|
background-color: transparent !important;
|
|
|
|
text-shadow: 2px 3px 4px #0000005f;
|
2022-08-19 04:59:17 +02:00
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
-webkit-text-stroke: 2px white;
|
|
|
|
text-stroke: 2px white;
|
2022-05-27 06:44:54 +02:00
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
:hover {
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
font-size: 10rem;
|
|
|
|
text-shadow: 2px 5px 4px #00000093;
|
|
|
|
}
|
|
|
|
}
|
2022-08-19 04:59:17 +02:00
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-loading-spinner {
|
|
|
|
z-index: 10;
|
|
|
|
display: block;
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
}
|
2022-10-07 03:57:49 +02:00
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-control-bar {
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
background-color: var(--theme-color-background-main) !important;
|
|
|
|
}
|
2022-06-19 22:49:42 +02:00
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-control {
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
}
|
2022-06-22 00:38:37 +02:00
|
|
|
}
|
2022-06-19 22:49:42 +02:00
|
|
|
|
2022-10-07 03:57:49 +02:00
|
|
|
.vjs-airplay {
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-icon-placeholder::before {
|
|
|
|
content: url('../airplay.svg');
|
|
|
|
width: 50% !important;
|
|
|
|
height: 50% !important;
|
|
|
|
top: 15% !important;
|
|
|
|
left: 15% !important;
|
|
|
|
}
|
2022-06-19 22:49:42 +02:00
|
|
|
}
|
2022-10-07 03:57:49 +02:00
|
|
|
|
|
|
|
.vjs-quality-selector {
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-icon-placeholder {
|
|
|
|
font-family: VideoJS, serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-icon-placeholder::before {
|
|
|
|
content: '\f110';
|
|
|
|
}
|
|
|
|
}
|
2022-10-07 03:57:49 +02:00
|
|
|
|
2022-10-09 01:51:49 +02:00
|
|
|
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
|
|
|
|
color: var(--theme-color-components-video-live-indicator) !important;
|
2022-07-08 09:10:18 +02:00
|
|
|
}
|