_s: Tabbable dropdown menus.

Fixes #540.
This commit is contained in:
Christopher Crouch 2014-06-30 23:19:39 +01:00 committed by Konstantin Obenland
parent 31144c7dbb
commit 18f843ed03
3 changed files with 60 additions and 13 deletions

View file

@ -23,7 +23,8 @@
}
li {
&:hover > ul {
&:hover > ul,
&.focus > ul {
left: 100%;
}
}
@ -32,14 +33,17 @@
width: 200px;
}
:hover > a {
:hover > a,
.focus > a {
}
a:hover {
a:hover,
a.focus {
}
}
li:hover > ul {
li:hover > ul,
li.focus > ul {
left: auto;
}
}
@ -47,7 +51,8 @@
float: left;
position: relative;
&:hover > a {
&:hover > a,
&.focus > a {
}
}
a {