Commit f989c689 authored by Mark Otto's avatar Mark Otto

gray out links for active state on pagination

parent 16eccc43
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Designed and built with all the love in the world @twitter by @mdo and @fat. * Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Sat Jan 14 23:28:07 PST 2012 * Date: Sat Jan 14 23:33:26 PST 2012
*/ */
html, body { html, body {
margin: 0; margin: 0;
...@@ -2107,6 +2107,9 @@ i { ...@@ -2107,6 +2107,9 @@ i {
.pagination a:hover, .pagination .active a { .pagination a:hover, .pagination .active a {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
.pagination .active a {
color: #999999;
}
.pagination .disabled a, .pagination .disabled a:hover { .pagination .disabled a, .pagination .disabled a:hover {
color: #999999; color: #999999;
background-color: transparent; background-color: transparent;
......
...@@ -406,6 +406,7 @@ i{background-image:url(docs/assets/img/glyphicons-halflings-sprite.png);backgrou ...@@ -406,6 +406,7 @@ i{background-image:url(docs/assets/img/glyphicons-halflings-sprite.png);backgrou
.pagination li{display:inline;} .pagination li{display:inline;}
.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border-right:1px solid #ddd;border-right:1px solid rgba(0, 0, 0, 0.15);} .pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border-right:1px solid #ddd;border-right:1px solid rgba(0, 0, 0, 0.15);}
.pagination a:hover,.pagination .active a{background-color:#f5f5f5;} .pagination a:hover,.pagination .active a{background-color:#f5f5f5;}
.pagination .active a{color:#999999;}
.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;}
.pagination li:last-child a{border:0;} .pagination li:last-child a{border:0;}
.pagination-centered{text-align:center;} .pagination-centered{text-align:center;}
......
...@@ -30,6 +30,9 @@ ...@@ -30,6 +30,9 @@
.pagination .active a { .pagination .active a {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
.pagination .active a {
color: @grayLight;
}
.pagination .disabled a, .pagination .disabled a,
.pagination .disabled a:hover { .pagination .disabled a:hover {
color: @grayLight; color: @grayLight;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment