mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-07-31 06:17:01 +00:00
Receivers: Hide certain player control buttons by default
This commit is contained in:
parent
3659064275
commit
bf0808bcb0
2 changed files with 5 additions and 1 deletions
|
@ -345,6 +345,7 @@ body {
|
|||
.playPrevious {
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
display: none;
|
||||
|
||||
background-image: url("../assets/icons/player/icon24_play_previous.svg");
|
||||
transition: background-image 0.1s ease-in-out;
|
||||
|
@ -357,6 +358,7 @@ body {
|
|||
.playNext {
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
display: none;
|
||||
|
||||
background-image: url("../assets/icons/player/icon24_play_next.svg");
|
||||
transition: background-image 0.1s ease-in-out;
|
||||
|
@ -415,6 +417,7 @@ body {
|
|||
|
||||
.captions_off {
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
|
||||
background-image: url("../assets/icons/player/icon24_cc_off.svg");
|
||||
transition: background-image 0.1s ease-in-out;
|
||||
|
@ -426,6 +429,7 @@ body {
|
|||
|
||||
.captions_on {
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
|
||||
background-image: url("../assets/icons/player/icon24_cc_on.svg");
|
||||
transition: background-image 0.1s ease-in-out;
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<div class="buttonContainer">
|
||||
<div id="fullscreen" class="fullscreen_on iconSize"></div>
|
||||
<div id="speed" class="speed iconSize"></div>
|
||||
<div id="captions" class="captions_off iconSize"></div>
|
||||
<div id="captions" class="captions_off iconSize" style="display: none"></div>
|
||||
</div>
|
||||
|
||||
<div id="speedMenu" class="speedMenu" style="display: none">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue