fix(ui): remove unwanted icon hover fill EE-3737 (#7284)

pull/7353/head
Ali 2022-07-27 14:11:54 +12:00 committed by GitHub
parent 5ffcbe8677
commit bb447bb02a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* highlight the sort icons for columns that aren't actively sorting */
button:not(.sortingActive):hover path {
.sortable:not(.sortingActive):hover path {
fill: var(--sort-icon-hover);
}

View File

@ -69,7 +69,8 @@ function SortWrapper({
type="button"
onClick={() => onClick(!isSortedDesc)}
className={clsx(
'sortable !bg-transparent w-full h-full !ml-0 !px-0 border-none focus:border-none',
'!bg-transparent w-full h-full !ml-0 !px-0 border-none focus:border-none',
styles.sortable,
isSorted && styles.sortingActive
)}
>