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; background-size: contain;
display: block; display: block;
height: 100%; height: 100%;
width: 100%;
&:focus {
outline: none;
opacity: .6;
}
} }
#icinga-logo { #icinga-logo {

View File

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