diff --git a/css/refined.css b/css/refined.css index 96cf49e..2af2825 100644 --- a/css/refined.css +++ b/css/refined.css @@ -199,3 +199,21 @@ body { --tv-hover: #252f3f; } +/* Price Scale Controls - make visible on mobile (no hover available) */ +#priceScaleControls { + opacity: 0.6; + transition: opacity 0.3s ease; +} + +#priceScaleControls:hover { + opacity: 1; +} + +/* Ensure controls are visible on touch devices */ +@media (hover: none) { + #priceScaleControls { + opacity: 1 !important; + pointer-events: auto; + } +} +