mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
theme: improve discovering links on keyboard navigation #726
This commit is contained in:
parent
32d5fd5d56
commit
529daea637
2 changed files with 20 additions and 4 deletions
|
@ -264,8 +264,14 @@
|
|||
}
|
||||
|
||||
a:hover,
|
||||
a:active,
|
||||
a:focus,
|
||||
.anchor:hover,
|
||||
.topbar-button button:hover {
|
||||
.anchor:active,
|
||||
.anchor:focus,
|
||||
.topbar-button button:hover,
|
||||
.topbar-button button:active,
|
||||
.topbar-button button:focus{
|
||||
color: rgba( 32, 40, 145, 1 ); /* var(--MAIN-LINK-HOVER-color) */
|
||||
}
|
||||
|
||||
|
|
|
@ -18,8 +18,14 @@ a,
|
|||
}
|
||||
|
||||
a:hover,
|
||||
a:active,
|
||||
a:focus,
|
||||
.anchor:hover,
|
||||
.topbar-button button:hover {
|
||||
.anchor:active,
|
||||
.anchor:focus,
|
||||
.topbar-button button:hover,
|
||||
.topbar-button button:active,
|
||||
.topbar-button button:focus{
|
||||
color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
||||
}
|
||||
|
||||
|
@ -411,7 +417,9 @@ article ul > li > input[type="checkbox"] {
|
|||
#R-body .tab-nav-button {
|
||||
color: var(--INTERNAL-MAIN-LINK-color);
|
||||
}
|
||||
#R-body .tab-nav-button:not(.active):hover {
|
||||
#R-body .tab-nav-button:not(.active):hover,
|
||||
#R-body .tab-nav-button:not(.active):active,
|
||||
#R-body .tab-nav-button:not(.active):focus {
|
||||
color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
||||
}
|
||||
|
||||
|
@ -427,7 +435,9 @@ article ul > li > input[type="checkbox"] {
|
|||
#R-body .tab-nav-button.active > .tab-nav-text{
|
||||
background-color: var(--VARIABLE-BOX-BG-color);
|
||||
}
|
||||
#R-body .tab-nav-button:not(.active) > .tab-nav-text:hover {
|
||||
#R-body .tab-nav-button:not(.active):hover > .tab-nav-text,
|
||||
#R-body .tab-nav-button:not(.active):active > .tab-nav-text,
|
||||
#R-body .tab-nav-button:not(.active):focus > .tab-nav-text {
|
||||
border-bottom-color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue