Skip to content

Commit

Permalink
Better feedback for arrow picker (#1026)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nmattia authored Nov 17, 2022
1 parent 73002c2 commit cc0f030
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/frontend/src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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%);
Expand Down

0 comments on commit cc0f030

Please sign in to comment.