github.com/hernad/nomad@v1.6.112/ui/app/styles/core/pagination.scss (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 .pagination { 7 color: $grey; 8 9 .pagination-numbers { 10 padding: 0.75rem 0.5rem; 11 white-space: nowrap; 12 font-weight: $weight-semibold; 13 font-size: 0.85rem; 14 } 15 16 .pagination-previous, 17 .pagination-next, 18 .pagination-link { 19 color: $text; 20 border: none; 21 border-radius: 0; 22 margin: 0; 23 padding: 0.75rem 0.5rem; 24 height: auto; 25 text-decoration: none; 26 27 &:hover { 28 box-shadow: none; 29 background-color: darken($white-ter, 5%); 30 } 31 32 &:active { 33 background-color: darken($white-ter, 10%); 34 } 35 } 36 }