mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
4c7a3e8adf
* WIP: Mention variables, mixins, and loops in docs * Add Sass sections to component pages * add sass docs for forms and content * Update buttons.md * Remove empty mixins sections * Massive update to utilities and some consistency changes Co-authored-by: XhmikosR <xhmikosr@gmail.com>
31 lines
741 B
SCSS
31 lines
741 B
SCSS
// Pagination
|
|
|
|
// scss-docs-start pagination-mixin
|
|
@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
|
|
.page-link {
|
|
padding: $padding-y $padding-x;
|
|
@include font-size($font-size);
|
|
}
|
|
|
|
.page-item {
|
|
@if $pagination-margin-start == (-$pagination-border-width) {
|
|
&:first-child {
|
|
.page-link {
|
|
@include border-start-radius($border-radius);
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.page-link {
|
|
@include border-end-radius($border-radius);
|
|
}
|
|
}
|
|
} @else {
|
|
//Add border-radius to all pageLinks in case they have left margin
|
|
.page-link {
|
|
@include border-radius($border-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// scss-docs-end pagination-mixin
|