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