Skip to content

Commit

Permalink
make all links distinguishable from text, use unique access keys
Browse files Browse the repository at this point in the history
  • Loading branch information
stitch committed Nov 21, 2023
1 parent 3783397 commit e4518c0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 5 additions & 1 deletion src/assets/css/overrides_dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ label {
outline: none
}

button:focus {
button {
text-decoration: underline;
}

Expand All @@ -160,4 +160,8 @@ button:focus {
color: black !important;
font-weight: bold;
background-color: white !important;
}

a {
text-decoration: underline !important;
}
4 changes: 2 additions & 2 deletions src/assets/css/vendor/internet_nl/style-min.css
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ aside .emailtest li a, aside .websitetest li a, aside .connectiontest li a, asid
background-image: url("/static/icon-arrow-right-white.svg"), none
}

.read-more a:hover, .read-more a:focus, .read-more a:active {
.read-more a, .read-more a:hover, .read-more a:focus, .read-more a:active {
text-decoration: underline
}

Expand Down Expand Up @@ -850,7 +850,7 @@ footer ul li a {
text-decoration: none
}

footer ul li a:hover, footer ul li a:active, footer ul li a:focus {
footer ul li a, footer ul li a:hover, footer ul li a:active, footer ul li a:focus {
text-decoration: underline
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/CollapsePanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
font-weight: normal;
}

.panel-title:hover, button:focus {
.panel-title, button {
text-decoration: underline;
}

Expand Down
6 changes: 2 additions & 4 deletions src/components/SiteMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
font-size: 80%;
}

.language-switch-list li a:hover, header .language-switch-list li a:active, header .language-switch-list li a:focus {
.language-switch-list li a, .language-switch-list li a:hover, header .language-switch-list li a:active, header .language-switch-list li a:focus {
text-decoration: underline
}

Expand Down Expand Up @@ -211,14 +211,12 @@ li a {
</template>
<template v-if="!is_authenticated">
<b-nav-item to="/tour" accesskey="t" exact exact-active-class="active"><b-icon icon="info-circle" /> {{ $t("tour") }}</b-nav-item>
<b-nav-item to="/signup" accesskey="t" exact exact-active-class="active"><b-icon icon="person-check" /> {{ $t("request_access") }}</b-nav-item>
<b-nav-item to="/signup" accesskey="u" exact exact-active-class="active"><b-icon icon="person-check" /> {{ $t("request_access") }}</b-nav-item>
<b-nav-item :href="$baseUrl + '/account/login/'" accesskey="l" exact exact-active-class="active"><b-icon icon="box-arrow-in-right" /> {{ $t("log_in") }}</b-nav-item>
</template>
</b-navbar-nav>
</td></tr></table>



</b-collapse>
</b-container>
</b-navbar>
Expand Down

0 comments on commit e4518c0

Please sign in to comment.