diff options
| author | Chris Rebert <[email protected]> | 2015-03-25 21:58:05 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-03-25 21:58:05 -0700 |
| commit | 02f9f2bd26454178d45f155a6a065feea21af7f9 (patch) | |
| tree | 51c95b7a9ccb2619a368470186c6901aaa06686e /dist/css | |
| parent | b6508f5d0465853174e88d3dc7a24808cb1af56f (diff) | |
| parent | c26ffd43c39e2b6b31c67ba7f40c56d9caff8743 (diff) | |
| download | bootstrap-02f9f2bd26454178d45f155a6a065feea21af7f9.tar.xz bootstrap-02f9f2bd26454178d45f155a6a065feea21af7f9.zip | |
Merge pull request #16092 from twbs/pointer-events-none-a
Only disable pointer-events on disabled <a> btns
Diffstat (limited to 'dist/css')
| -rw-r--r-- | dist/css/bootstrap.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index fb15e3d69..15929f02e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3033,13 +3033,16 @@ select[multiple].form-group-lg .form-control { .btn.disabled, .btn[disabled], fieldset[disabled] .btn { - pointer-events: none; cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65; } +a.btn.disabled, +fieldset[disabled] a.btn { + pointer-events: none; +} .btn-default { color: #333; background-color: #fff; |
