1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-02 09:52:43 +02:00

Separate $btn-link colors from $link-color (#28681)

This commit is contained in:
GeoSot
2019-04-23 16:12:51 +03:00
committed by XhmikosR
parent 4ee2ae4ce0
commit 275cd7f91e
2 changed files with 4 additions and 2 deletions

View File

@@ -76,11 +76,11 @@ fieldset:disabled a.btn {
// Make a button look and behave like a link
.btn-link {
font-weight: $font-weight-normal;
color: $link-color;
color: $btn-link-color;
text-decoration: $link-decoration;
@include hover {
color: $link-hover-color;
color: $btn-link-hover-color;
text-decoration: $link-hover-decoration;
}