Skip to content

Commit

Permalink
Merge pull request #5118 from owncloud/fix/make-skip-to-visible
Browse files Browse the repository at this point in the history
fix: make skip to link visible on focus
  • Loading branch information
Lukas Hirt authored May 18, 2021
2 parents 7bc2b1d + 18fdc74 commit 92f61df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/bugfix-make-skip-to-visible
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Make skip to main content link visible

We've fixed the z-index of the skip to main content link so that it is not hidden under different content anymore and is again visible on focus.

https://github.com/owncloud/web/pull/5118
5 changes: 3 additions & 2 deletions packages/web-runtime/src/components/SkipTo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ export default {
position: absolute;
top: -100px;
left: 0;
z-index: 1;
z-index: 4;
-webkit-appearance: none;
border: none;
background-color: #ffffff;
background-color: var(--oc-color-swatch-brand-default);
color: var(--oc-color-text-inverse);
font: inherit;
padding: 0.25em 0.5em;
}
Expand Down

0 comments on commit 92f61df

Please sign in to comment.