Close button icon hover styles

This commit is contained in:
Tyler Hallada 2022-08-19 22:35:00 -04:00
parent cb0c7922b7
commit d76751f495
3 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -36,8 +36,8 @@
cursor: pointer; cursor: pointer;
} }
.plugin-remove:hover { .plugin-remove:hover img {
color: crimson; filter: invert(40%);
} }
.loading { .loading {

View File

@ -48,7 +48,7 @@
} }
.close:hover { .close:hover {
color: #888888; filter: invert(40%);
} }
.hide { .hide {