-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpaginationEllipsisFormStyles.scss
More file actions
64 lines (57 loc) · 1.33 KB
/
paginationEllipsisFormStyles.scss
File metadata and controls
64 lines (57 loc) · 1.33 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.pagination-ellipsis-form {
text-align: left;
gap: 8px;
cursor: default;
.pagination-ellipsis-form-field-label {
margin-bottom: 8px;
font-size: 12px;
color: #a3a3a3;
cursor: pointer;
}
.pagination-ellipsis-form-field {
display: flex;
gap: 8px;
position: relative;
.pagination-ellipsis-form-field-input {
width: 80px;
height: calc(40px + 4px);
border-width: 1px;
box-shadow: none;
font-size: 1rem;
padding: 12px;
padding-right: calc(40px);
text-align: center;
transition: all 200ms ease;
border-color: transparent;
appearance: none;
-webkit-appearance: none;
appearance: none;
-moz-appearance: textfield;
margin: 0;
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
&:focus {
border-color: #23f7dd;
}
}
.pagination-ellipsis-form-button {
outline: none;
border: none;
background-color: transparent;
line-height: 1;
cursor: pointer;
position: absolute;
right: 4px;
transform: translateY(-50%);
font-size: 12px;
padding: calc(20px / 2);
top: 50%;
&:hover .pagination-ellipsis-form-button-icon {
color: #23f7dd;
}
}
}
}