open-nomad/ui/app/styles/core/pagination.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
633 B
SCSS
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2017-09-19 14:47:10 +00:00
.pagination {
color: $grey;
.pagination-numbers {
padding: 0.75rem 0.5rem;
white-space: nowrap;
2020-03-31 04:14:44 +00:00
font-weight: $weight-semibold;
font-size: 0.85rem;
2017-09-19 14:47:10 +00:00
}
.pagination-previous,
.pagination-next,
.pagination-link {
color: $text;
border: none;
border-radius: 0;
margin: 0;
padding: 0.75rem 0.5rem;
height: auto;
text-decoration: none;
&:hover {
box-shadow: none;
background-color: darken($white-ter, 5%);
}
&:active {
background-color: darken($white-ter, 10%);
}
}
}