1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Fixes #21094: Move text-decoration override from the default link state to the hover/focus state so it can override the global styles properly

This commit is contained in:
Mark Otto 2016-11-23 11:37:56 -08:00
parent ec47feefd6
commit c13215d038

View file

@ -48,12 +48,12 @@
padding: $pagination-padding-y $pagination-padding-x;
margin-left: -1px;
color: $pagination-color;
text-decoration: none;
background-color: $pagination-bg;
border: $pagination-border-width solid $pagination-border-color;
@include hover-focus {
color: $pagination-hover-color;
text-decoration: none;
background-color: $pagination-hover-bg;
border-color: $pagination-hover-border;
}