From cc0f030fb75935a99838ace77388fd434b290d2c Mon Sep 17 00:00:00 2001 From: Nicolas Mattia Date: Thu, 17 Nov 2022 18:02:36 +0100 Subject: [PATCH] Better feedback for arrow picker (#1026) This ensures that clicking the arrow (on the anchor picker) lets the click through to the button, and changes the pointer when hovering a particular anchor. --- src/frontend/src/styles/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/frontend/src/styles/main.css b/src/frontend/src/styles/main.css index fa620a1376..45718d6348 100644 --- a/src/frontend/src/styles/main.css +++ b/src/frontend/src/styles/main.css @@ -934,6 +934,10 @@ a:hover, font-weight: bold; } +.c-list__parcel--select { + cursor: pointer; +} + .c-list__parcel--select:hover { transition: background-color 400ms cubic-bezier(0.3, 0.7, 0, 1); } @@ -1055,6 +1059,7 @@ a:hover, .c-list__icon { position: absolute; + pointer-events: none; top: 50%; right: calc(var(--vs-bezel) * 1.5); transform: translateY(-50%);