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