CSS: Remove focus outline on input

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-28 14:11:17 +01:00
parent dc3cf8b231
commit fb961fefd2
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ input {
padding: @vertical-padding / 2 @horizontal-padding / 2;
&:focus {
border-bottom: 1px solid @icinga-blue;
border-color: @icinga-blue;
outline: none;
}
}