mirror of
https://gitea.invidious.io/iv-org/videojs-quality-selector.git
synced 2024-08-15 00:43:13 +00:00
fix: use correct icon for Video.js 8
This commit is contained in:
parent
d16842b1ac
commit
1209756616
1 changed files with 8 additions and 1 deletions
|
@ -12,7 +12,14 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
&::before {
|
&::before {
|
||||||
content: '\f110';
|
// The correct icon font character for Video.js 7 and below:
|
||||||
|
.video-js:not(.vjs-v8) & {
|
||||||
|
content: '\f110';
|
||||||
|
}
|
||||||
|
// Icon font character for Video.js 8:
|
||||||
|
.vjs-v8 & {
|
||||||
|
content: '\f114';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue