Compare commits

..

2 Commits

Author SHA1 Message Date
Samira 9e3f7ec75d Fixed episode buttons not being visible on phone
Deploy to Unraid Share / copy-file (push) Successful in 6s
2026-04-23 20:36:32 +02:00
Samira 43d8d6ec52 Only show episode play button on hover 2026-04-23 20:35:57 +02:00
+12
View File
@@ -294,12 +294,24 @@
position: absolute;
bottom: 0;
right: 0;
}
/* Only show user data buttons on hover */
.layout-desktop .listItem-content .listViewUserDataButtons {
opacity: 0;
}
.layout-desktop .listItem:hover .listItem-content .listViewUserDataButtons {
opacity: 1;
}
/* Only show play button on hover */
.layout-desktop .listItemImageButton.itemAction[data-action="resume"] {
opacity: 0;
}
.layout-desktop .listItem:hover .listItemImageButton.itemAction[data-action="resume"] {
opacity: 1;
}
/* Floating indicator */
.innerCardFooter {
margin: .5em;