1
Fork 0
lorchess.ru/_assets/vendor/bootstrap/less/pager.less

56 lines
857 B
Plaintext
Raw Normal View History

2014-01-24 13:24:23 +04:00
//
// Pager pagination
// --------------------------------------------------
.pager {
padding-left: 0;
margin: @line-height-computed 0;
list-style: none;
text-align: center;
2014-04-17 22:36:17 +04:00
&:extend(.clearfix all);
2014-01-24 13:24:23 +04:00
li {
display: inline;
> a,
> span {
display: inline-block;
padding: 5px 14px;
2014-04-17 22:36:17 +04:00
background-color: @pager-bg;
border: 1px solid @pager-border;
2014-01-24 13:24:23 +04:00
border-radius: @pager-border-radius;
}
> a:hover,
> a:focus {
text-decoration: none;
2014-04-17 22:36:17 +04:00
background-color: @pager-hover-bg;
2014-01-24 13:24:23 +04:00
}
}
.next {
> a,
> span {
float: right;
}
}
.previous {
> a,
> span {
float: left;
}
}
.disabled {
> a,
> a:hover,
> a:focus,
> span {
color: @pager-disabled-color;
2014-04-17 22:36:17 +04:00
background-color: @pager-bg;
2014-01-24 13:24:23 +04:00
cursor: not-allowed;
}
}
}