This commit is contained in:
2026-01-02 20:31:15 +01:00
parent 7c0a202f16
commit f2732b36f2
3 changed files with 88 additions and 9 deletions

View File

@@ -18,6 +18,13 @@
cursor: default;
}
/* Show pointer cursor for interactive / clickable elements (override global default) */
a, a[href], button, input[type="button"], input[type="submit"],
[role="button"], [onclick], .clickable, .icon-btn, .control-btn, label[for],
.station-item, [tabindex]:not([tabindex="-1"]) {
cursor: pointer !important;
}
/* Hide Scrollbars */
::-webkit-scrollbar {
display: none;
@@ -258,6 +265,22 @@ header {
pointer-events: none;
}
/* Make artwork/logo clickable: show pointer cursor */
.artwork-placeholder,
.artwork-placeholder:hover,
.station-logo-img,
.station-logo-text {
cursor: pointer !important;
pointer-events: auto;
}
/* Subtle hover affordance to make clickability clearer */
.artwork-placeholder:hover .station-logo-img,
.artwork-placeholder:hover .station-logo-text {
transform: scale(1.03);
transition: transform 160ms ease;
}
.blob {
position: absolute;
border-radius: 50%;