Version 1
[yaffs-website] / vendor / twbs / bootstrap-sass / assets / stylesheets / bootstrap / mixins / _pagination.scss
diff --git a/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss b/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss
new file mode 100644 (file)
index 0000000..d4a5404
--- /dev/null
@@ -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);
+      }
+    }
+  }
+}