getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Add Pager placeholder styles #183

Closed getdave closed 11 years ago

getdave commented 11 years ago

Add placeholder styles for "Paging".

// ==========================================================================
// PAGING
// ==========================================================================

// PAGER
// ==========================================================================

.pager {
    margin-bottom: $baseLineHeight;
}

.pager__item {

    a {
        @extend .btn;
        border: 0;
    }
}

// PAGINATION
// ==========================================================================

.pagination {
    a,
    span {
        @extend .btn;
        border: 0;
    }

    .current {
        background-color: $pColor;
        color: #fff;
    }

    .prev,
    .next {

    }

    .dots {
    }
}
getdave commented 11 years ago

Also add placeholder stub for "page-links" which are when you have a paginated post. Edge case, but should guard against it.