0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/_pager.scss

57 lines
843 B
SCSS
Raw Normal View History

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