Fix :visited/:active/:hover

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-10-28 22:32:11 +02:00
parent 7950584977
commit 643378c7e7
+6 -6
View File
@@ -70,9 +70,9 @@ body {
}
a,
a.visited,
a.focus,
a.active {
a:visited,
a:focus,
a:active {
color: inherit;
text-decoration: inherit;
}
@@ -84,9 +84,9 @@ button {
cursor: pointer;
}
button.focus,
button.active,
button.visited {
button:focus,
button:active,
button:visited {
background: $theme-button-background-active;
color: $theme-button-color-active;
border: 0;