diff options
| author | Mark Otto <[email protected]> | 2013-07-24 16:32:25 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-24 16:32:25 -0700 |
| commit | a36f444c2567032b200ca36bee006c6e05a0b2c8 (patch) | |
| tree | 61a2321d878885b5b06a8d9403fd1c98cd60774c /dist/css/bootstrap.css | |
| parent | 3080104642cd952d830e534eddd38ec67fee914b (diff) | |
| parent | 7e9532dabe7ae1136c9ee07b33ee5116bcfafac1 (diff) | |
| download | bootstrap-a36f444c2567032b200ca36bee006c6e05a0b2c8.tar.xz bootstrap-a36f444c2567032b200ca36bee006c6e05a0b2c8.zip | |
Merge pull request #8583 from liuyl/disabled
set cursor to not-allowed for disabled elements
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index c77092ed2..e00672472 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2219,7 +2219,7 @@ input[type="button"].btn-block { .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; - cursor: default; + cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); @@ -2540,7 +2540,7 @@ button.close { .nav > li.disabled > a:focus { color: #999999; text-decoration: none; - cursor: default; + cursor: not-allowed; background-color: transparent; } @@ -3301,7 +3301,7 @@ button.close { .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #999999; - cursor: default; + cursor: not-allowed; background-color: #ffffff; } @@ -3402,7 +3402,7 @@ button.close { .pager .disabled > a:focus, .pager .disabled > span { color: #999999; - cursor: default; + cursor: not-allowed; background-color: #ffffff; } |
