Fix pure-button hover color on a-tags

This commit is contained in:
Leon Klingele 2019-08-01 09:07:24 +02:00
parent f99a7b2a8c
commit 638be3e9fd
No known key found for this signature in database
GPG Key ID: 0C8AF48831EEC211
2 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
a:hover,
a:active {
color: rgb(0, 182, 240);
a:not(.pure-button):hover,
a:not(.pure-button):active {
color: rgb(0, 182, 240) !important;
}
a {
a:not(.pure-button) {
color: #a0a0a0;
text-decoration: none;
}

View File

@ -1,9 +1,9 @@
a:hover,
a:active {
a:not(.pure-button):hover,
a:not(.pure-button):active {
color: #167ac6 !important;
}
a {
a:not(.pure-button) {
color: #61809b;
text-decoration: none;
}