Mercurial > public > madeira
changeset 119:685e14392326
Bootstrap: style pagination.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Oct 2013 16:20:49 -0500 |
parents | ddf49209cfc1 |
children | e82fd2b7be2f |
files | static/css/theme.css |
diffstat | 1 files changed, 34 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/static/css/theme.css Sat Oct 26 15:27:57 2013 -0500 +++ b/static/css/theme.css Sat Oct 26 16:20:49 2013 -0500 @@ -94,3 +94,37 @@ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); } + +.pagination > li > a, +.pagination > li > span { + background-color: #213442; + border: 1px solid #b96a03; +} + +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + background-color: #296b9d; + color: white; +} + +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + color: black; + background-color: #EF7C21; + border-color: #b96a03; +} + +.pagination > .disabled > span, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #999999; + background-color: #213442; + border-color: #b96a03; +}