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-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;
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > li {
|
2012-09-19 05:56:20 +02:00
|
|
|
display: inline; // Remove list-style and block-level defaults
|
2012-08-27 19:56:46 +02:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > li > a,
|
|
|
|
.pagination > li > span {
|
2012-09-19 05:56:20 +02:00
|
|
|
float: left; // Collapse white-space
|
2012-09-19 06:16:08 +02:00
|
|
|
padding: 4px 12px;
|
2012-11-30 23:45:25 +01:00
|
|
|
line-height: @line-height-base;
|
2012-01-15 05:54:37 +01:00
|
|
|
text-decoration: none;
|
2013-04-01 02:20:16 +02:00
|
|
|
background-color: @pagination-bg;
|
2012-12-01 00:36:16 +01:00
|
|
|
border: 1px solid @pagination-border;
|
2012-01-16 01:27:36 +01:00
|
|
|
border-left-width: 0;
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > li > a:hover,
|
2013-02-06 04:53:44 +01:00
|
|
|
.pagination > li > a:focus,
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > .active > a,
|
|
|
|
.pagination > .active > span {
|
2013-04-01 02:22:12 +02:00
|
|
|
background-color: @pagination-active-bg;
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > .active > a,
|
|
|
|
.pagination > .active > span {
|
2013-04-22 04:35:36 +02:00
|
|
|
color: @gray-light;
|
2012-01-31 08:27:58 +01:00
|
|
|
cursor: default;
|
2012-01-15 08:33:42 +01:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > .disabled > span,
|
|
|
|
.pagination > .disabled > a,
|
2013-02-06 04:53:44 +01:00
|
|
|
.pagination > .disabled > a:hover,
|
|
|
|
.pagination > .disabled > a:focus {
|
2013-04-22 04:35:36 +02:00
|
|
|
color: @gray-light;
|
2013-04-01 02:20:16 +02:00
|
|
|
background-color: @pagination-bg;
|
2012-01-15 05:54:37 +01:00
|
|
|
cursor: default;
|
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > li:first-child > a,
|
|
|
|
.pagination > li:first-child > span {
|
2012-01-16 01:27:36 +01:00
|
|
|
border-left-width: 1px;
|
2012-11-30 23:45:25 +01:00
|
|
|
.border-left-radius(@border-radius-base);
|
2012-01-16 01:27:36 +01:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
.pagination > li:last-child > a,
|
|
|
|
.pagination > li:last-child > span {
|
2012-11-30 23:45:25 +01:00
|
|
|
.border-right-radius(@border-radius-base);
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|
2011-12-27 22:51:36 +01:00
|
|
|
|
2012-09-19 06:16:08 +02:00
|
|
|
|
|
|
|
// Sizing
|
2012-09-12 22:10:03 +02:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Large
|
|
|
|
.pagination-large {
|
2013-01-12 22:15:19 +01:00
|
|
|
> li > a,
|
|
|
|
> li > span {
|
2013-05-15 08:21:30 +02:00
|
|
|
padding: @padding-large-vertical @padding-large-horizontal;
|
2012-11-30 23:45:25 +01:00
|
|
|
font-size: @font-size-large;
|
2012-09-19 06:16:08 +02:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
> li:first-child > a,
|
|
|
|
> li:first-child > span {
|
2012-11-30 23:45:25 +01:00
|
|
|
.border-left-radius(@border-radius-large);
|
2012-09-19 06:16:08 +02:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
> li:last-child > a,
|
|
|
|
> li:last-child > span {
|
2012-11-30 23:45:25 +01:00
|
|
|
.border-right-radius(@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
|
2012-09-19 06:16:08 +02:00
|
|
|
.pagination-small {
|
2013-05-15 08:21:30 +02:00
|
|
|
> li > a,
|
|
|
|
> li > span {
|
|
|
|
padding: @padding-small-vertical @padding-small-horizontal;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
> li:first-child > a,
|
|
|
|
> li:first-child > span {
|
2012-11-30 23:45:25 +01:00
|
|
|
.border-left-radius(@border-radius-small);
|
2012-09-19 06:16:08 +02:00
|
|
|
}
|
2013-01-12 22:15:19 +01:00
|
|
|
> li:last-child > a,
|
|
|
|
> li:last-child > span {
|
2012-11-30 23:45:25 +01:00
|
|
|
.border-right-radius(@border-radius-small);
|
2012-09-19 06:16:08 +02:00
|
|
|
}
|
|
|
|
}
|