twbs--bootstrap/less/pager.less

56 lines
857 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Pager pagination
// --------------------------------------------------
.pager {
padding-left: 0;
margin: @line-height-computed 0;
list-style: none;
text-align: center;
&:extend(.clearfix all);
2013-04-17 15:32:48 +00:00
li {
display: inline;
> a,
> span {
display: inline-block;
padding: 5px 14px;
2013-12-11 13:25:21 +00:00
background-color: @pager-bg;
border: 1px solid @pager-border;
border-radius: @pager-border-radius;
2013-04-17 15:32:48 +00:00
}
> a:hover,
> a:focus {
text-decoration: none;
2013-12-11 13:25:21 +00:00
background-color: @pager-hover-bg;
2013-04-17 15:32:48 +00:00
}
}
.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: @pager-disabled-color;
2013-12-11 13:25:21 +00:00
background-color: @pager-bg;
cursor: not-allowed;
2013-04-17 15:32:48 +00:00
}
}
}