cluster: allow tab navigation
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/953/head
parent
7af24512d9
commit
3fe9fdc363
|
@ -2,6 +2,8 @@
|
||||||
<component
|
<component
|
||||||
:is="link ? 'router-link' : 'div'"
|
:is="link ? 'router-link' : 'div'"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
|
tabindex="1"
|
||||||
|
:aria-label="title"
|
||||||
class="cluster fill-block"
|
class="cluster fill-block"
|
||||||
:class="{ error }"
|
:class="{ error }"
|
||||||
:to="target"
|
:to="target"
|
||||||
|
@ -200,6 +202,11 @@ img {
|
||||||
.count-bubble :deep .counter-bubble__counter {
|
.count-bubble :deep .counter-bubble__counter {
|
||||||
color: unset !important;
|
color: unset !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Move focus outline inwards
|
||||||
|
&:focus {
|
||||||
|
outline-offset: -4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$namemargin: 10px;
|
$namemargin: 10px;
|
||||||
|
|
Loading…
Reference in New Issue