Merge pull request #309 from orangemug/feature/skip-menu

Added skip-menu link for keyboard users
This commit is contained in:
Orange Mug
2018-05-28 13:17:02 +01:00
committed by GitHub
3 changed files with 27 additions and 0 deletions

View File

@@ -16,6 +16,8 @@
background-color: $color-black;
padding: $margin-2;
height: $toolbar-height;
position: relative;
overflow: hidden;
h1 {
display: inline;
@@ -80,3 +82,23 @@
flex: 1;
overflow-y: auto;
}
.maputnik-toolbar-skip {
position: absolute;
overflow: hidden;
width: 0px;
height: 100%;
text-align: center;
display: block;
background-color: $color-black;
z-index: 999;
line-height: 40px;
left: 0;
top: 0;
&:active,
&:focus {
width: 100%;
}
}