diff options
| author | Mark Otto <[email protected]> | 2012-01-29 13:12:13 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-29 13:12:13 -0800 |
| commit | 4e5b0e185e8cc9df3a77361380a44b16689fd2f7 (patch) | |
| tree | d8a348f493c4383b9f6e529da12b8b5ed3733ddc /docs | |
| parent | 8c763589a2058785936a33088935c50f622859de (diff) | |
| download | bootstrap-4e5b0e185e8cc9df3a77361380a44b16689fd2f7.tar.xz bootstrap-4e5b0e185e8cc9df3a77361380a44b16689fd2f7.zip | |
refined pager styles to give a border on the links and improved hover state
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 60383fba0..3f36aaa4d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2707,12 +2707,17 @@ button.btn.small, input[type="submit"].btn.small { } .pager a { display: inline-block; - padding: 6px 15px; - background-color: #f5f5f5; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; } +.pager a:hover { + text-decoration: none; + background-color: #f5f5f5; +} .pager .next a { float: right; } |
