twbs--bootstrap/less/pager.less

55 lines
817 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Pager pagination
// --------------------------------------------------
.pager {
margin: @line-height-computed 0;
list-style: none;
text-align: center;
.clearfix();
2013-04-17 15:32:48 +00:00
li {
display: inline;
> a,
> span {
display: inline-block;
padding: 5px 14px;
background-color: @pagination-bg;
border: 1px solid @pagination-border;
border-radius: 15px;
}
> a:hover,
> a:focus {
text-decoration: none;
background-color: @pagination-active-bg;
}
}
.next {
> a,
> span {
float: right;
}
}
2013-04-17 15:32:48 +00:00
.previous {
> a,
> span {
float: left;
}
}
.disabled {
> a,
> a:hover,
> a:focus,
> span {
color: @gray-light;
background-color: @pagination-bg;
2013-04-17 15:32:48 +00:00
cursor: default;
}
}
}