2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Pagination (multiple pages)
|
|
|
|
// --------------------------------------------------
|
2012-09-19 05:56:20 +02:00
|
|
|
.pagination {
|
2012-01-15 05:54:37 +01:00
|
|
|
display: inline-block;
|
2013-06-29 22:06:14 +02:00
|
|
|
padding-left: 0;
|
2013-05-10 17:21:27 +02:00
|
|
|
margin: @line-height-computed 0;
|
2012-11-30 23:45:25 +01:00
|
|
|
border-radius: @border-radius-base;
|
2013-07-31 18:11:11 +02:00
|
|
|
|
2013-07-05 14:17:20 +02:00
|
|
|
> li {
|
|
|
|
display: inline; // Remove list-style and block-level defaults
|
|
|
|
> a,
|
2013-07-07 23:52:00 +02:00
|
|
|
> span {
|
2013-08-15 22:16:06 +02:00
|
|
|
position: relative;
|
2013-07-05 14:17:20 +02:00
|
|
|
float: left; // Collapse white-space
|
2013-08-03 09:59:37 +02:00
|
|
|
padding: @padding-base-vertical @padding-base-horizontal;
|
2013-07-05 14:17:20 +02:00
|
|
|
line-height: @line-height-base;
|
|
|
|
text-decoration: none;
|
2013-12-20 17:06:53 +01:00
|
|
|
color: @pagination-color;
|
2013-07-05 14:17:20 +02:00
|
|
|
background-color: @pagination-bg;
|
|
|
|
border: 1px solid @pagination-border;
|
2013-08-15 22:16:06 +02:00
|
|
|
margin-left: -1px;
|
2013-07-05 14:17:20 +02:00
|
|
|
}
|
2013-07-07 23:52:00 +02:00
|
|
|
&:first-child {
|
|
|
|
> a,
|
|
|
|
> span {
|
2013-08-15 22:16:06 +02:00
|
|
|
margin-left: 0;
|
2013-07-07 23:52:00 +02:00
|
|
|
.border-left-radius(@border-radius-base);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
.border-right-radius(@border-radius-base);
|
|
|
|
}
|
|
|
|
}
|
2013-07-05 14:17:20 +02:00
|
|
|
}
|
2013-07-31 18:11:11 +02:00
|
|
|
|
2013-08-15 22:16:06 +02:00
|
|
|
> li > a,
|
|
|
|
> li > span {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-12-20 17:06:53 +01:00
|
|
|
color: @pagination-hover-color;
|
2013-08-15 22:16:06 +02:00
|
|
|
background-color: @pagination-hover-bg;
|
2013-12-20 17:06:53 +01:00
|
|
|
border-color: @pagination-hover-border;
|
2013-08-15 22:16:06 +02:00
|
|
|
}
|
2013-07-05 14:17:20 +02:00
|
|
|
}
|
2013-08-15 22:16:06 +02:00
|
|
|
|
2013-07-05 14:17:20 +02:00
|
|
|
> .active > a,
|
|
|
|
> .active > span {
|
2013-08-15 22:16:06 +02:00
|
|
|
&,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
z-index: 2;
|
|
|
|
color: @pagination-active-color;
|
|
|
|
background-color: @pagination-active-bg;
|
2013-12-20 17:06:53 +01:00
|
|
|
border-color: @pagination-active-border;
|
2013-08-15 22:16:06 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
2013-07-05 14:17:20 +02:00
|
|
|
}
|
2013-07-31 18:11:11 +02:00
|
|
|
|
2013-07-05 14:17:20 +02:00
|
|
|
> .disabled {
|
2013-07-05 14:18:57 +02:00
|
|
|
> span,
|
2013-08-21 11:57:48 +02:00
|
|
|
> span:hover,
|
|
|
|
> span:focus,
|
2013-07-05 14:18:57 +02:00
|
|
|
> a,
|
|
|
|
> a:hover,
|
|
|
|
> a:focus {
|
2013-07-26 14:04:15 +02:00
|
|
|
color: @pagination-disabled-color;
|
2013-12-20 17:06:53 +01:00
|
|
|
background-color: @pagination-disabled-bg;
|
|
|
|
border-color: @pagination-disabled-border;
|
2013-07-24 11:10:27 +02:00
|
|
|
cursor: not-allowed;
|
2013-07-05 14:17:20 +02:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|
2012-09-19 06:16:08 +02:00
|
|
|
|
|
|
|
// Sizing
|
2012-09-12 22:10:03 +02:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Large
|
2013-08-04 06:39:57 +02:00
|
|
|
.pagination-lg {
|
2013-08-13 13:27:45 +02:00
|
|
|
.pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);
|
2012-09-12 22:10:03 +02:00
|
|
|
}
|
2012-09-19 06:16:08 +02:00
|
|
|
|
2013-05-15 08:21:30 +02:00
|
|
|
// Small
|
2013-08-04 06:39:57 +02:00
|
|
|
.pagination-sm {
|
2013-08-13 13:27:45 +02:00
|
|
|
.pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);
|
2012-09-19 06:16:08 +02:00
|
|
|
}
|