0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

Merge pull request #17708 from biokillos/feature/add-variable-for-card-link-hover-state

Add variable for card-link hover state
This commit is contained in:
Mark Otto 2015-11-12 23:29:48 -08:00
commit d917f474f4
2 changed files with 4 additions and 1 deletions

View File

@ -135,7 +135,7 @@
}
.card-link {
@include hover-focus {
color: #fff;
color: $card-link-hover-color;
}
}
}

View File

@ -456,6 +456,9 @@ $card-border-radius-inner: ($card-border-radius - $card-border-width) !default;
$card-cap-bg: #f5f5f5 !default;
$card-bg: #fff !default;
$card-link-hover-color: #fff !default;
// Tooltips
$tooltip-max-width: 200px !default;