Fix unnecessary dotted focus outline in tab bar

In Firefox, the tab bar in "Volumes" and "System Information" pages 
displays unnecessary dotted focus outline.  This is not the case with
other browsers like Chrome or Safari.  This is fixed by adding
'outline:none' to :focus in the tab bar styling (there is already CSS
for :focus).

Change-Id: I3f7065003d3c0ec20fa1d3f0189e208bb36e9b94
Closes-Bug: 1431341
This commit is contained in:
Ganesh Narayanan 2015-04-17 04:06:06 -07:00 committed by Ganesh
parent 0dac90523b
commit 2da71e08a8
1 changed files with 1 additions and 0 deletions

View File

@ -962,6 +962,7 @@ tr.terminated {
&:hover,
&:focus {
border-color: $nav-tabs-border-color $nav-tabs-border-color #fff;
outline: none;
}
}
}