mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Pagination move .page-link:focus
outline value to variable $pagination-focus-outline
so we can unset it via Sass and don't have to re-implement browser defaults
This commit is contained in:
parent
a55d1b27c5
commit
4f35e53216
2 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
|
||||
&:focus {
|
||||
z-index: 2;
|
||||
outline: 0;
|
||||
outline: $pagination-focus-outline;
|
||||
box-shadow: $pagination-focus-box-shadow;
|
||||
}
|
||||
|
||||
|
|
|
@ -663,6 +663,7 @@ $pagination-border-width: $border-width !default;
|
|||
$pagination-border-color: $gray-300 !default;
|
||||
|
||||
$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
||||
$pagination-focus-outline: 0 !default;
|
||||
|
||||
$pagination-hover-color: $link-hover-color !default;
|
||||
$pagination-hover-bg: $gray-200 !default;
|
||||
|
|
Loading…
Reference in a new issue