-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy path_pagination-bar.scss
More file actions
44 lines (38 loc) · 1004 Bytes
/
_pagination-bar.scss
File metadata and controls
44 lines (38 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.pagination-bar {
display: flex;
justify-content: flex-end;
white-space: nowrap;
align-items: baseline;
color: $pagination-caption-color;
.paging-status {
padding: 0 8px 0;
}
.pagination-button {
padding: 6px;
color: var(--gray-darker, $gray-darker);
border-color: transparent;
background-color: transparent;
&:hover {
color: var(--brand-primary, $brand-primary);
border-color: transparent;
background-color: transparent;
}
&:disabled {
border-color: transparent;
background-color: transparent;
}
&:focus:not(:focus-visible) {
outline: none;
}
&:focus-visible {
outline: 1px solid var(--brand-primary, $brand-primary);
}
}
.pagination-icon {
position: relative;
top: 4px;
display: inline-block;
width: 20px;
height: 20px;
}
}