Fixed Bug 66280 - Files. The Sort by button icon is separately highlighted when hovered.

This commit is contained in:
Elyor Djalilov 2024-02-08 14:09:57 +05:00
parent 5ac4b3fa3a
commit 570d105863

View File

@ -541,6 +541,14 @@ const StyledSortButton = styled.div<{ viewAs: TViewAs; isDesc: boolean }>`
.icon-button_svg {
cursor: pointer;
}
:hover {
border-color: ${(props) => props.theme.iconButton.color};
svg {
path {
fill: ${(props) => props.theme.iconButton.hoverColor};
}
}
}
}
.sort-combo-box {