From 33e84009dc9f6d48884ecfc2f66eeb285f60d05a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Velad=20Galv=C3=A1n?= Date: Wed, 23 Mar 2022 17:56:13 +0100 Subject: [PATCH] fix(UI): Add cursor pointer to range elements (#4059) Since range elements are special input elements, they must reflect user interaction, so when the user hovers over the range element, the cursor must be a pointer. Issue #3220 --- ui/less/range_elements.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/less/range_elements.less b/ui/less/range_elements.less index a4181fe038..15efeae529 100644 --- a/ui/less/range_elements.less +++ b/ui/less/range_elements.less @@ -57,6 +57,11 @@ /* The track should fill the range element. */ width: 100%; + /* Since range elements are special input elements, they must reflect user + * interaction, so when the user hovers over the range element, the cursor + * must be a pointer. */ + cursor: pointer; + /* The track should be tall enough to contain the thumb without clipping it. * It is very tricky to make the thumb show outside the track on IE 11, and * it is incompatible with our background gradients. */