mirror of https://github.com/twbs/bootstrap.git
Fixes #10147: Remove outline from carousel controls on focus
This commit is contained in:
parent
9d939080e6
commit
d654f90502
|
@ -6363,6 +6363,7 @@ button.close {
|
|||
.carousel-control:focus {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
opacity: 0.9;
|
||||
filter: alpha(opacity=90);
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -91,6 +91,7 @@
|
|||
// Hover/focus state
|
||||
&:hover,
|
||||
&:focus {
|
||||
outline: none;
|
||||
color: @carousel-control-color;
|
||||
text-decoration: none;
|
||||
.opacity(.9);
|
||||
|
|
Loading…
Reference in New Issue