Spiderpig86/Cirrus

Pagination link missing hand pointer if href is removed

zemian opened this issue · 0 comments

zemian commented

When working with JS, we often do not use href on <a> tag. When this is used in pagination, we no longer have the hand cursor when href is removed. Please have the style without require href.

Test case:

      <div class="pagination">
        <div class="pagination-item short disabled"><a class="disabled">Prev</a></div>
        <div class="pagination-item short selected"><a >1</a></div>
        <div class="pagination-item short"><a >2</a></div>
        <div class="pagination-item short"><a >3</a></div>
        <div class="pagination-item short"><a >4</a></div>
        <div class="pagination-item short"><a>...</a></div>
        <div class="pagination-item short"><a >13</a></div>
        <div class="pagination-item short"><a >Next</a></div>
      </div>