diff options
| author | Patrick H. Lauke <[email protected]> | 2013-01-02 22:39:21 +0000 |
|---|---|---|
| committer | Patrick H. Lauke <[email protected]> | 2013-01-02 22:39:21 +0000 |
| commit | 848ca6e31562fc65da891cce9046853bd16564eb (patch) | |
| tree | 3fb4c8c6be86061b9ef0c5d62c39d14f39427791 /less/pagination.less | |
| parent | 1c0e4fc7bb6ab2ef12f1050ed177a02d16ebdbce (diff) | |
| download | bootstrap-848ca6e31562fc65da891cce9046853bd16564eb.tar.xz bootstrap-848ca6e31562fc65da891cce9046853bd16564eb.zip | |
Basic keyboard accessibility CSS tweaks
Mostly doubling-up :hover styles to also cover :focus, as a first step
to making the framework more keyboard-friendly.
Additionally, fixed two small markup issues in the docs/examples to
make the "Learn more" large primary button-styled links
keyboard-focusable (as without href they're treated as non-tabable
anchors).
Diffstat (limited to 'less/pagination.less')
| -rw-r--r-- | less/pagination.less | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/less/pagination.less b/less/pagination.less index e35d3f4a8..a789db2d2 100644 --- a/less/pagination.less +++ b/less/pagination.less @@ -32,6 +32,7 @@ border-left-width: 0; } .pagination ul > li > a:hover, +.pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span { background-color: @paginationActiveBackground; @@ -43,7 +44,8 @@ } .pagination ul > .disabled > span, .pagination ul > .disabled > a, -.pagination ul > .disabled > a:hover { +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { color: @grayLight; background-color: transparent; cursor: default; |
