add 3rd party radio station support #689

also add disabled property for next button
This commit is contained in:
yazninja 2022-05-24 01:09:23 +08:00
parent de692c9dc8
commit eedf9304da
6 changed files with 78 additions and 7 deletions

View file

@ -1590,6 +1590,12 @@ input[type=checkbox][switch]:checked:active::before {
background-image: url("./assets/repeatOne.svg");
}
.playback-button.stop {
background-image: url('./assets/cider-icons/stop.svg');
background-size: 38px;
background-position: center;
}
.playback-button.pause {
background-image: url('./assets/cider-icons/pause.svg');
background-size: 38px;
@ -1613,6 +1619,15 @@ input[type=checkbox][switch]:checked:active::before {
background-size: 60%;
background-position: center;
}
.playback-button.disabled {
opacity: 0.25 !important;
pointer-events: none;
transform: none !important;
&:hover{
background-color: transparent !important;
transform: none !important;
}
}
.playback-button {
&.navigation {