Menu: Do not show outline upon focus

This commit is contained in:
Eric Lippmann 2017-11-21 15:31:04 +01:00
parent 4c32935c48
commit d447487219
2 changed files with 12 additions and 2 deletions

View File

@ -53,6 +53,12 @@
background-size: contain;
display: block;
height: 100%;
width: 100%;
&:focus {
outline: none;
opacity: .6;
}
}
#icinga-logo {

View File

@ -24,7 +24,7 @@
> a {
&:focus {
color: @icinga-blue;
outline: -3px;
outline: none;
}
&:hover {
@ -319,7 +319,11 @@ input[type=text].search-input {
width: 2em;
}
&:hover {
&:focus {
outline: none;
}
&:hover, &:focus {
i {
color: @icinga-blue;
}