diff options
| author | Mark Otto <[email protected]> | 2016-12-26 14:02:24 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-12-28 15:12:04 -0800 |
| commit | 150625265b6f23e228cd7fc67b83af19044d525f (patch) | |
| tree | 4b608c2a0110848f155e5990f4910986b7ca08b6 | |
| parent | b5044765b79ddf4ff67f4cc94babfcd629ea7f9e (diff) | |
| download | bootstrap-150625265b6f23e228cd7fc67b83af19044d525f.tar.xz bootstrap-150625265b6f23e228cd7fc67b83af19044d525f.zip | |
fixes #21415 by moving disabled .btn-link color to the default state
| -rw-r--r-- | scss/_buttons.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/_buttons.scss b/scss/_buttons.scss index fdc7adc40..8ea2bb764 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -130,8 +130,9 @@ fieldset[disabled] a.btn { background-color: transparent; } &:disabled { + color: $btn-link-disabled-color; + @include hover-focus { - color: $btn-link-disabled-color; text-decoration: none; } } |
