fix(css): underline site links when hover

This commit is contained in:
MDLeom 2020-10-22 05:14:22 +00:00
parent 62a7c02da2
commit 3617597281
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
2 changed files with 6 additions and 10 deletions

View File

@ -369,15 +369,13 @@ span.index-list-count:after {
position: relative; position: relative;
} }
.article .main-nav-link:hover {
border: 0;
}
.article .article-entry { .article .article-entry {
word-break: break-word; word-break: break-word;
} }
.article .article-entry a { .article .article-entry a,
.article a.main-nav-link:hover,
.copyright a:hover {
border-bottom: 1px solid var(--link-underline); border-bottom: 1px solid var(--link-underline);
} }

View File

@ -840,15 +840,13 @@ span.index-list-count:after {
position: relative; position: relative;
} }
.article .main-nav-link:hover {
border: 0;
}
.article .article-entry { .article .article-entry {
word-break: break-word; word-break: break-word;
} }
.article .article-entry a { .article .article-entry a,
.article a.main-nav-link:hover,
.copyright a:hover {
border-bottom: 1px solid var(--link-underline); border-bottom: 1px solid var(--link-underline);
} }