mirror of https://github.com/portainer/portainer
fix(ui): remove unwanted icon hover fill EE-3737 (#7284)
parent
5ffcbe8677
commit
bb447bb02a
|
@ -1,4 +1,4 @@
|
||||||
/* highlight the sort icons for columns that aren't actively sorting */
|
/* 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);
|
fill: var(--sort-icon-hover);
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,8 @@ function SortWrapper({
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => onClick(!isSortedDesc)}
|
onClick={() => onClick(!isSortedDesc)}
|
||||||
className={clsx(
|
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
|
isSorted && styles.sortingActive
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue