allaw-ui 2.8.2 → 2.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,172 +1,176 @@
|
|
|
1
1
|
.backdrop {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
width: 100vw;
|
|
7
|
+
z-index: 4500;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.baseFilter {
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
position: relative;
|
|
12
|
+
width: fit-content;
|
|
13
|
+
z-index: 4501;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
|
-
.smallOpenFilter{
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
.smallOpenFilter {
|
|
17
|
+
position: relative;
|
|
18
|
+
width: fit-content;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
.options {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: 120%;
|
|
24
|
+
left: 0;
|
|
25
|
+
width: fit-content;
|
|
26
|
+
border: 0.5px solid #ddd;
|
|
27
|
+
border-radius: 4px;
|
|
28
|
+
background-color: #ffffff;
|
|
29
|
+
box-shadow: rgba(9, 30, 66, 0.15) 0px 8px 12px 0px;
|
|
30
|
+
z-index: 5000;
|
|
31
|
+
padding: 0.4rem 0rem;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
.item {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
35
|
+
background: none;
|
|
36
|
+
border: none;
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: row;
|
|
39
|
+
align-items: center;
|
|
40
|
+
gap: 0.75rem;
|
|
41
|
+
padding: 0.5rem 1rem;
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
border-left: 2px solid #fff;
|
|
44
|
+
width: 100%;
|
|
45
|
+
color: #0000;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
.round {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
padding: 2px;
|
|
49
|
+
display: flex;
|
|
50
|
+
align-items: center;
|
|
51
|
+
justify-content: center;
|
|
52
|
+
border: 1px solid #d1dce7;
|
|
53
|
+
border-radius: 3rem;
|
|
54
|
+
padding: 2px;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.selected {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
background-color: #25beeb;
|
|
59
|
+
min-width: 0.6rem;
|
|
60
|
+
min-height: 0.6rem;
|
|
61
|
+
border-radius: 1rem;
|
|
62
|
+
display: block;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
.notSelected {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
66
|
+
background-color: #fff;
|
|
67
|
+
min-width: 0.6rem;
|
|
68
|
+
min-height: 0.6rem;
|
|
69
|
+
border-radius: 1rem;
|
|
70
|
+
display: block;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.item > span {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
74
|
+
text-wrap: nowrap;
|
|
75
|
+
font-family: var(--font-open-sans);
|
|
76
|
+
font-size: 14px;
|
|
77
|
+
font-weight: 500;
|
|
78
|
+
color: #000;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
.item:hover {
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
background-color: #eff2f5;
|
|
83
|
+
border-left: 2px solid #25beeb;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
.optionsSmall {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
87
|
+
position: fixed;
|
|
88
|
+
right: 0;
|
|
89
|
+
transition: bottom 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
90
|
+
max-height: 90dvh;
|
|
91
|
+
background-color: white;
|
|
92
|
+
width: 100vw;
|
|
93
|
+
display: none;
|
|
94
|
+
border-radius: 16px 16px 0 0;
|
|
95
|
+
padding: 1rem;
|
|
96
|
+
flex-direction: column;
|
|
97
|
+
gap: 2rem;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.smallItem {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
101
|
+
background: none;
|
|
102
|
+
border: none;
|
|
103
|
+
display: flex;
|
|
104
|
+
flex-direction: row-reverse;
|
|
105
|
+
align-items: center;
|
|
106
|
+
justify-content: space-between;
|
|
107
|
+
padding: 1.5rem 1rem;
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
border-left: 2px solid #fff;
|
|
110
|
+
width: 100%;
|
|
111
|
+
color: #0000;
|
|
112
|
+
border-top: 1px solid #e4edf6;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
.smallItem:first-child {
|
|
116
|
-
|
|
116
|
+
border-top: none;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.smallItem > span {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
120
|
+
text-wrap: nowrap;
|
|
121
|
+
font-family: var(--font-open-sans);
|
|
122
|
+
font-size: 14px;
|
|
123
|
+
font-weight: 500;
|
|
124
|
+
color: #000;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
.choices {
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
display: flex;
|
|
129
|
+
flex-direction: column;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.closeButton {
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
133
|
+
height: fit-content;
|
|
134
|
+
border: none;
|
|
135
|
+
color: #000;
|
|
136
|
+
background: transparent;
|
|
137
|
+
cursor: pointer;
|
|
138
|
+
width: 20px;
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
justify-content: center;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
.closeButton > i {
|
|
145
|
-
|
|
145
|
+
font-size: 16px;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.row {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: fit-content;
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: row;
|
|
153
|
+
justify-content: space-between;
|
|
154
|
+
align-items: center;
|
|
155
|
+
gap: 1rem;
|
|
156
|
+
padding: 1rem 0.5rem;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
@media screen and (max-width: 800px) {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
160
|
+
.options {
|
|
161
|
+
display: none;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.optionsSmall {
|
|
165
|
+
z-index: 5000;
|
|
166
|
+
display: flex;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.backdrop {
|
|
170
|
+
background: linear-gradient(
|
|
171
|
+
180deg,
|
|
172
|
+
rgba(26, 50, 56, 0) 0%,
|
|
173
|
+
rgba(2, 9, 11, 0.45) 100%
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
}
|