diff options
| author | Mark Otto <[email protected]> | 2012-08-31 14:02:18 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-31 14:02:18 -0700 |
| commit | beb0b640967e69e50d1f813a99e8998e27787fdb (patch) | |
| tree | f69819c32fce000fcbca705cb4e261b7697182c7 /docs/assets/css/bootstrap.css | |
| parent | afd931262cfa1ba377eaa9f9174de1f5779f5445 (diff) | |
| download | bootstrap-beb0b640967e69e50d1f813a99e8998e27787fdb.tar.xz bootstrap-beb0b640967e69e50d1f813a99e8998e27787fdb.zip | |
fixes #4889: btn-link disabled styles
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index b863b1266..0cced14a5 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3389,7 +3389,8 @@ input[type="submit"].btn.btn-mini { } .btn-link, -.btn-link:active { +.btn-link:active, +.btn-link[disabled] { background-color: transparent; background-image: none; -webkit-box-shadow: none; @@ -3412,6 +3413,11 @@ input[type="submit"].btn.btn-mini { background-color: transparent; } +.btn-link[disabled]:hover { + color: #333333; + text-decoration: none; +} + .btn-group { position: relative; *margin-left: .3em; |
