2025-02-07, 11:56 PM
Try this CSS for a hover effect on those buttons:
Color = Color of the text/symbols on the buttons
Background = Color of the button background
I picked colors at random, so change them to your liking.
I also added a border radius value which you can remove or add to your liking.
Also keep in mind that this will apply the hover effect to the play buttons over items too.
Code:
button.cardOverlayButton.cardOverlayButton-hover.itemAction.paper-icon-button-light.emby-button:hover, button.cardOverlayButton.cardOverlayButton-hover.itemAction.paper-icon-button-light:hover {
color: rgba(255, 0, 255, 1);
background: rgba(30, 138, 165, 1);
border-radius: 8px;
}
Background = Color of the button background
I picked colors at random, so change them to your liking.
I also added a border radius value which you can remove or add to your liking.
Also keep in mind that this will apply the hover effect to the play buttons over items too.