hooks
4 years ago
images
4 years ago
BulkActionCheckbox.tsx
4 years ago
BulkActionSelect.module.scss
4 years ago
BulkActionSelect.tsx
4 years ago
Filters.tsx
4 years ago
FormSelect.module.scss
4 years ago
FormSelect.tsx
4 years ago
Input.module.scss
4 years ago
Input.tsx
4 years ago
ListTable.module.scss
4 years ago
ListTable.tsx
4 years ago
ListTablePage.module.scss
3 years ago
ListTableRows.module.scss
3 years ago
ListTableRows.tsx
4 years ago
Pagination.module.scss
4 years ago
Pagination.tsx
4 years ago
README.MD
4 years ago
RowAction.module.scss
4 years ago
RowAction.tsx
4 years ago
Select.module.scss
4 years ago
Select.tsx
4 years ago
TableCell.module.scss
4 years ago
TableCell.tsx
4 years ago
TestLabel.module.scss
4 years ago
TestLabel.tsx
4 years ago
TypeBadge.module.scss
4 years ago
TypeBadge.tsx
4 years ago
api.ts
4 years ago
index.tsx
4 years ago
Pagination.module.scss
90 lines
| 1 | .container { |
| 2 | display: flex; |
| 3 | justify-content: space-around; |
| 4 | align-items: center; |
| 5 | margin-block-start: 0.125rem; |
| 6 | margin-block-end: 0.125rem; |
| 7 | min-height: 1.875rem; |
| 8 | |
| 9 | & > * { |
| 10 | margin-inline-start: 0.125rem; |
| 11 | margin-inline-end: 0.125rem; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | #currentPage { |
| 16 | font-size: 0.8125rem; |
| 17 | border-radius: 0; |
| 18 | border-color: rgba(221, 221, 221); |
| 19 | |
| 20 | &::-webkit-outer-spin-button, |
| 21 | &::-webkit-inner-spin-button { |
| 22 | -webkit-appearance: none; |
| 23 | margin: 0; |
| 24 | } |
| 25 | |
| 26 | &[type=number]=number] { |
| 27 | -moz-appearance: textfield; |
| 28 | min-width: 0; |
| 29 | // Firefox wants an explicit width. |
| 30 | width: 1.75rem; |
| 31 | padding: 0.0125rem; |
| 32 | } |
| 33 | |
| 34 | } |
| 35 | |
| 36 | .navDirection { |
| 37 | display: flex; |
| 38 | justify-content: center; |
| 39 | align-items: flex-end; |
| 40 | text-decoration: none; |
| 41 | color: #2271b1; |
| 42 | border-color: #2271b1; |
| 43 | background: rgba(229, 229, 229); |
| 44 | font-size: 1.5rem; |
| 45 | font-weight: 400; |
| 46 | transition-property: border, background, color; |
| 47 | transition-duration: .05s; |
| 48 | transition-timing-function: ease-in-out; |
| 49 | } |
| 50 | |
| 51 | button[aria-disabled="false"]="false""].navDirection { |
| 52 | cursor: pointer; |
| 53 | |
| 54 | &:hover { |
| 55 | background: rgba(240, 240, 241); |
| 56 | border-color: rgba(10, 75, 120); |
| 57 | color: rgba(10, 75, 120); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | button[aria-disabled="true"]="true""].navDirection { |
| 62 | color: rgba(167, 170, 173); |
| 63 | border-color: rgba(220, 220, 222); |
| 64 | background: rgba(246, 247, 247); |
| 65 | } |
| 66 | |
| 67 | .navElement { |
| 68 | border-width: 1px; |
| 69 | border-style: solid; |
| 70 | vertical-align: baseline; |
| 71 | inline-size: 1.875rem; |
| 72 | block-size: 1.875rem; |
| 73 | padding: 0 0.25rem; |
| 74 | text-align: center; |
| 75 | } |
| 76 | |
| 77 | |
| 78 | |
| 79 | .visuallyHidden { |
| 80 | position: absolute; |
| 81 | width: 1px; |
| 82 | height: 1px; |
| 83 | padding: 0; |
| 84 | margin: -1px; |
| 85 | overflow: hidden; |
| 86 | clip: rect(0, 0, 0, 0); |
| 87 | white-space: nowrap; |
| 88 | border-width: 0; |
| 89 | } |
| 90 |