From f597e2fe949a1e18eb778b9a5bd102de88570555 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 18 May 2017 14:03:27 +0200 Subject: Initial commit. --- .../bootstrap3/bootstrap/mixins/_pagination.scss | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/sass/bootstrap3/bootstrap/mixins/_pagination.scss (limited to 'src/sass/bootstrap3/bootstrap/mixins/_pagination.scss') diff --git a/src/sass/bootstrap3/bootstrap/mixins/_pagination.scss b/src/sass/bootstrap3/bootstrap/mixins/_pagination.scss new file mode 100644 index 0000000..d4a5404 --- /dev/null +++ b/src/sass/bootstrap3/bootstrap/mixins/_pagination.scss @@ -0,0 +1,24 @@ +// Pagination + +@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { + > li { + > a, + > span { + padding: $padding-vertical $padding-horizontal; + font-size: $font-size; + line-height: $line-height; + } + &:first-child { + > a, + > span { + @include border-left-radius($border-radius); + } + } + &:last-child { + > a, + > span { + @include border-right-radius($border-radius); + } + } + } +} -- cgit v1.2.3