twbs--bootstrap/less/pagination.less

109 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Pagination (multiple pages)
// --------------------------------------------------
.pagination {
display: inline-block;
padding-left: 0;
margin: @line-height-computed 0;
border-radius: @border-radius-base;
2013-07-05 12:17:20 +00:00
> li {
display: inline; // Remove list-style and block-level defaults
> a,
2013-07-07 21:52:00 +00:00
> span {
2013-07-05 12:17:20 +00:00
float: left; // Collapse white-space
padding: 4px 12px;
line-height: @line-height-base;
text-decoration: none;
background-color: @pagination-bg;
border: 1px solid @pagination-border;
border-left-width: 0;
}
2013-07-07 21:52:00 +00:00
&:first-child {
> a,
> span {
border-left-width: 1px;
.border-left-radius(@border-radius-base);
}
}
&:last-child {
> a,
> span {
.border-right-radius(@border-radius-base);
}
}
2013-07-05 12:17:20 +00:00
}
> li > a:hover,
> li > a:focus,
> .active > a,
> .active > span {
background-color: @pagination-active-bg;
}
> .active > a,
> .active > span {
color: @pagination-active-color;
2013-07-05 12:17:20 +00:00
cursor: default;
}
> .disabled {
2013-07-05 12:18:57 +00:00
> span,
> a,
> a:hover,
> a:focus {
color: @pagination-disabled-color;
2013-07-05 12:17:20 +00:00
background-color: @pagination-bg;
cursor: not-allowed;
2013-07-05 12:17:20 +00:00
}
}
}
// Sizing
// --------------------------------------------------
// Large
.pagination-large {
2013-07-07 21:52:00 +00:00
> li {
> a,
> span {
padding: @padding-large-vertical @padding-large-horizontal;
font-size: @font-size-large;
}
&:first-child {
> a,
> span {
.border-left-radius(@border-radius-large);
}
}
&:last-child {
> a,
> span {
.border-right-radius(@border-radius-large);
}
}
}
}
// Small
.pagination-small {
2013-07-07 21:52:00 +00:00
> li {
> a,
> span {
padding: @padding-small-vertical @padding-small-horizontal;
font-size: @font-size-small;
}
&:first-child {
> a,
> span {
.border-left-radius(@border-radius-small);
}
}
&:last-child {
> a,
> span {
.border-right-radius(@border-radius-small);
}
}
}
}