diff options
| author | Mark Otto <[email protected]> | 2012-02-19 23:51:59 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-19 23:51:59 -0800 |
| commit | 6df925bc756ab6f9e7a26d4b9c5afc858b34b2d2 (patch) | |
| tree | 26dd592850d069f81b88ddd1aed94cc425e188c5 | |
| parent | 9f608411cbea9b2626f307008d82a26667872ccf (diff) | |
| download | bootstrap-6df925bc756ab6f9e7a26d4b9c5afc858b34b2d2.tar.xz bootstrap-6df925bc756ab6f9e7a26d4b9c5afc858b34b2d2.zip | |
enable use of span in place of a for .disabled in pagination, per #1406
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 53386 -> 53399 bytes | |||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 3 | ||||
| -rw-r--r-- | less/pagination.less | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex 1437fb705..146023c5d 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 9fa129e10..155f5dad1 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -860,6 +860,7 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec display: block; margin-top: 5px; margin-bottom: 0; + color: #999999; } .help-inline { display: inline-block; @@ -2781,7 +2782,7 @@ button.btn.small, input[type="submit"].btn.small { color: #999999; cursor: default; } -.pagination .disabled a, .pagination .disabled a:hover { +.pagination .disabled span, .pagination .disabled a, .pagination .disabled a:hover { color: #999999; background-color: transparent; cursor: default; diff --git a/less/pagination.less b/less/pagination.less index de5780759..38cf65cc4 100644 --- a/less/pagination.less +++ b/less/pagination.less @@ -32,6 +32,7 @@ color: @grayLight; cursor: default; } +.pagination .disabled span, .pagination .disabled a, .pagination .disabled a:hover { color: @grayLight; |
