stylesheets/components/_pager.scss in rapido-css-0.0.1 vs stylesheets/components/_pager.scss in rapido-css-0.0.2.1
- old
+ new
@@ -1,29 +1,32 @@
-//
-// Pager pagination
-// --------------------------------------------------
+// ====================================================================================================================
+// PAGER PAGINATION
+// ====================================================================================================================
@if $pager {
+// ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
+// Base
+// --------------------------------------------------------------------------------------------------------------------
+
.pager {
- margin: rhythm() 0;
+ @include clearfix();
list-style: none;
+ margin: rhythm() 0;
text-align: center;
- @include clearfix();
-
li {
display: inline;
a,
span {
+ @include border-radius($base-border-radius);
+ border-style: solid;
+ border-width: 1px;
display: inline-block;
- padding: $pager-padding;
line-height: 1em;
- border-width: 1px;
- border-style: solid;
+ padding: $pager-padding;
@extend %pager-btn !optional;
- @include border-radius($base-border-radius);
}
a:hover,
a:focus {
text-decoration: none;
\ No newline at end of file