Merge pull request #254 from vviers/main

fix(ui): pointer cursor when creating a new widget
This commit is contained in:
George Gevoian 2022-08-24 14:40:48 -07:00 committed by GitHub
commit 1c722014fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -469,11 +469,13 @@ const cssEntry = styled('div', `
align-items: center; align-items: center;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
cursor: pointer;
&-selected { &-selected {
background-color: ${colors.mediumGrey}; background-color: ${colors.mediumGrey};
} }
&-disabled { &-disabled {
color: ${colors.mediumGrey}; color: ${colors.mediumGrey};
cursor: default;
} }
&-disabled&-selected { &-disabled&-selected {
background-color: inherit; background-color: inherit;