Close button icon hover styles
This commit is contained in:
parent
cb0c7922b7
commit
d76751f495
@ -138,7 +138,6 @@ const ModList: React.FC<Props> = ({ mods, files, counts }) => {
|
||||
<div className={styles["sort-direction"]}>
|
||||
<button
|
||||
title="Sort ascending"
|
||||
className={sortAsc ? styles.active : ""}
|
||||
onClick={() => dispatch(setSortAsc(true))}
|
||||
>
|
||||
<img
|
||||
@ -153,7 +152,6 @@ const ModList: React.FC<Props> = ({ mods, files, counts }) => {
|
||||
</button>
|
||||
<button
|
||||
title="Sort descending"
|
||||
className={!sortAsc ? styles.active : ""}
|
||||
onClick={() => dispatch(setSortAsc(false))}
|
||||
>
|
||||
<img
|
||||
|
@ -36,8 +36,8 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.plugin-remove:hover {
|
||||
color: crimson;
|
||||
.plugin-remove:hover img {
|
||||
filter: invert(40%);
|
||||
}
|
||||
|
||||
.loading {
|
||||
|
@ -48,7 +48,7 @@
|
||||
}
|
||||
|
||||
.close:hover {
|
||||
color: #888888;
|
||||
filter: invert(40%);
|
||||
}
|
||||
|
||||
.hide {
|
||||
|
Loading…
Reference in New Issue
Block a user