reset(css): disable focus only on toc and go-to-top button

revert "css: reset: disbale highlight on focus"

This reverts commit 94b67a5dc9.
This commit is contained in:
Aditya Telange 2020-10-30 11:42:58 +05:30
parent b239f42f6b
commit b8c29c2e06
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77
3 changed files with 9 additions and 5 deletions

View File

@ -47,4 +47,8 @@
.top-link:hover {
color: var(--primary);
}
}
.top-link:focus {
outline: none;
}

View File

@ -257,6 +257,10 @@
margin-inline-start: var(--gap);
}
.toc summary:focus {
outline: none;
}
.post-footer {
margin-top: 56px;
}

View File

@ -131,7 +131,3 @@ img {
height: 2px;
}
}
*:focus {
outline:none;
}