@seeqdev/qomponents 0.0.22 → 0.0.24
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.
- package/README.md +135 -135
- package/dist/FontCustom.woff2 +0 -0
- package/dist/example/.eslintrc.cjs +14 -14
- package/dist/example/README.md +33 -33
- package/dist/example/index.html +13 -13
- package/dist/example/package.json +30 -30
- package/dist/example/src/ComplexSelectExample.tsx +81 -81
- package/dist/example/src/Example.tsx +167 -167
- package/dist/example/src/index.css +102 -102
- package/dist/example/src/main.tsx +10 -10
- package/dist/example/src/vite-env.d.ts +1 -1
- package/dist/example/tsconfig.json +33 -33
- package/dist/example/tsconfig.node.json +12 -12
- package/dist/example/vite.config.ts +12 -12
- package/dist/index.esm.js +22 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +22 -18
- package/dist/index.js.map +1 -1
- package/dist/styles.css +2228 -2164
- package/package.json +78 -78
- package/dist/FontCustom.woff +0 -0
package/dist/styles.css
CHANGED
|
@@ -1,1104 +1,1112 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'fontCustom';
|
|
3
|
-
src: url('FontCustom.woff2') format('woff2'),
|
|
4
|
-
url('FontCustom.woff') format('woff');
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
font-style: normal;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.fc {
|
|
10
|
-
font: normal normal normal 14px/1 fontCustom;
|
|
11
|
-
font-family: fontCustom !important;
|
|
12
|
-
speak: none;
|
|
13
|
-
text-transform: none;
|
|
14
|
-
display: inline-block;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/* Better Font Rendering =========== */
|
|
18
|
-
-webkit-font-smoothing: antialiased;
|
|
19
|
-
-moz-osx-font-smoothing: grayscale;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.fa-1x {
|
|
23
|
-
font-size: 1em;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.fa-2x {
|
|
27
|
-
font-size: 2em;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.fa-3x {
|
|
31
|
-
font-size: 3em;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.fa-4x {
|
|
35
|
-
font-size: 4em;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.fa-5x {
|
|
39
|
-
font-size: 5em;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.fa-6x {
|
|
43
|
-
font-size: 6em;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.fa-7x {
|
|
47
|
-
font-size: 7em;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.fa-8x {
|
|
51
|
-
font-size: 8em;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.fa-9x {
|
|
55
|
-
font-size: 9em;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.fa-10x {
|
|
59
|
-
font-size: 10em;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.fa-2xs {
|
|
63
|
-
font-size: 0.625em;
|
|
64
|
-
line-height: 0.1em;
|
|
65
|
-
vertical-align: 0.225em;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.fa-xs {
|
|
69
|
-
font-size: 0.75em;
|
|
70
|
-
line-height: 0.08333em;
|
|
71
|
-
vertical-align: 0.125em;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.fa-sm {
|
|
75
|
-
font-size: 0.875em;
|
|
76
|
-
line-height: 0.07143em;
|
|
77
|
-
vertical-align: 0.05357em;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.fa-lg {
|
|
81
|
-
font-size: 1.25em;
|
|
82
|
-
line-height: 0.05em;
|
|
83
|
-
vertical-align: -0.075em;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.fa-xl {
|
|
87
|
-
font-size: 1.5em;
|
|
88
|
-
line-height: 0.04167em;
|
|
89
|
-
vertical-align: -0.125em;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.fa-2xl {
|
|
93
|
-
font-size: 2em;
|
|
94
|
-
line-height: 0.03125em;
|
|
95
|
-
vertical-align: -0.1875em;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.fa-fw {
|
|
99
|
-
text-align: center;
|
|
100
|
-
width: 1.25em;
|
|
101
|
-
}
|
|
102
|
-
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'fontCustom';
|
|
3
|
+
src: url('FontCustom.woff2') format('woff2'),
|
|
4
|
+
url('FontCustom.woff') format('woff');
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.fc {
|
|
10
|
+
font: normal normal normal 14px/1 fontCustom;
|
|
11
|
+
font-family: fontCustom !important;
|
|
12
|
+
speak: none;
|
|
13
|
+
text-transform: none;
|
|
14
|
+
display: inline-block;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/* Better Font Rendering =========== */
|
|
18
|
+
-webkit-font-smoothing: antialiased;
|
|
19
|
+
-moz-osx-font-smoothing: grayscale;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fa-1x {
|
|
23
|
+
font-size: 1em;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fa-2x {
|
|
27
|
+
font-size: 2em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fa-3x {
|
|
31
|
+
font-size: 3em;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fa-4x {
|
|
35
|
+
font-size: 4em;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.fa-5x {
|
|
39
|
+
font-size: 5em;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.fa-6x {
|
|
43
|
+
font-size: 6em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.fa-7x {
|
|
47
|
+
font-size: 7em;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.fa-8x {
|
|
51
|
+
font-size: 8em;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.fa-9x {
|
|
55
|
+
font-size: 9em;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.fa-10x {
|
|
59
|
+
font-size: 10em;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.fa-2xs {
|
|
63
|
+
font-size: 0.625em;
|
|
64
|
+
line-height: 0.1em;
|
|
65
|
+
vertical-align: 0.225em;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.fa-xs {
|
|
69
|
+
font-size: 0.75em;
|
|
70
|
+
line-height: 0.08333em;
|
|
71
|
+
vertical-align: 0.125em;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.fa-sm {
|
|
75
|
+
font-size: 0.875em;
|
|
76
|
+
line-height: 0.07143em;
|
|
77
|
+
vertical-align: 0.05357em;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.fa-lg {
|
|
81
|
+
font-size: 1.25em;
|
|
82
|
+
line-height: 0.05em;
|
|
83
|
+
vertical-align: -0.075em;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.fa-xl {
|
|
87
|
+
font-size: 1.5em;
|
|
88
|
+
line-height: 0.04167em;
|
|
89
|
+
vertical-align: -0.125em;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.fa-2xl {
|
|
93
|
+
font-size: 2em;
|
|
94
|
+
line-height: 0.03125em;
|
|
95
|
+
vertical-align: -0.1875em;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.fa-fw {
|
|
99
|
+
text-align: center;
|
|
100
|
+
width: 1.25em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.fc-autosize-all:before {
|
|
104
|
+
content: '\e9a9';
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.fc-autosize-cell:before {
|
|
108
|
+
content: '\e9a8';
|
|
109
|
+
}
|
|
110
|
+
|
|
103
111
|
.fc-filter-remove:before {
|
|
104
|
-
content:
|
|
105
|
-
}
|
|
106
|
-
|
|
112
|
+
content: '\e9a7';
|
|
113
|
+
}
|
|
114
|
+
|
|
107
115
|
.fc-pdf-cog:before {
|
|
108
|
-
content:
|
|
109
|
-
}
|
|
110
|
-
|
|
116
|
+
content: '\e9a5';
|
|
117
|
+
}
|
|
118
|
+
|
|
111
119
|
.fc-pdf-file:before {
|
|
112
|
-
content:
|
|
113
|
-
}
|
|
114
|
-
|
|
120
|
+
content: '\e9a6';
|
|
121
|
+
}
|
|
122
|
+
|
|
115
123
|
.fc-marker:before {
|
|
116
|
-
content:
|
|
117
|
-
}
|
|
118
|
-
|
|
124
|
+
content: '\a961';
|
|
125
|
+
}
|
|
126
|
+
|
|
119
127
|
.fc-display-range-unused:before {
|
|
120
|
-
content:
|
|
121
|
-
}
|
|
122
|
-
|
|
128
|
+
content: '\a96e';
|
|
129
|
+
}
|
|
130
|
+
|
|
123
131
|
.fc-series-new:before {
|
|
124
|
-
content:
|
|
125
|
-
}
|
|
126
|
-
|
|
132
|
+
content: '\a979';
|
|
133
|
+
}
|
|
134
|
+
|
|
127
135
|
.fc-scatterplot-line:before {
|
|
128
|
-
content:
|
|
129
|
-
}
|
|
130
|
-
|
|
136
|
+
content: '\e900';
|
|
137
|
+
}
|
|
138
|
+
|
|
131
139
|
.fc-annotate:before {
|
|
132
|
-
content:
|
|
133
|
-
}
|
|
134
|
-
|
|
140
|
+
content: '\e901';
|
|
141
|
+
}
|
|
142
|
+
|
|
135
143
|
.fc-capsule:before {
|
|
136
|
-
content:
|
|
137
|
-
}
|
|
138
|
-
|
|
144
|
+
content: '\e902';
|
|
145
|
+
}
|
|
146
|
+
|
|
139
147
|
.fc-search-limit:before {
|
|
140
|
-
content:
|
|
141
|
-
}
|
|
142
|
-
|
|
148
|
+
content: '\e903';
|
|
149
|
+
}
|
|
150
|
+
|
|
143
151
|
.fc-search-logic:before {
|
|
144
|
-
content:
|
|
145
|
-
}
|
|
146
|
-
|
|
152
|
+
content: '\e904';
|
|
153
|
+
}
|
|
154
|
+
|
|
147
155
|
.fc-search-pattern:before {
|
|
148
|
-
content:
|
|
149
|
-
}
|
|
150
|
-
|
|
156
|
+
content: '\e905';
|
|
157
|
+
}
|
|
158
|
+
|
|
151
159
|
.fc-search-power:before {
|
|
152
|
-
content:
|
|
153
|
-
}
|
|
154
|
-
|
|
160
|
+
content: '\e906';
|
|
161
|
+
}
|
|
162
|
+
|
|
155
163
|
.fc-home:before {
|
|
156
|
-
content:
|
|
157
|
-
}
|
|
158
|
-
|
|
164
|
+
content: '\e907';
|
|
165
|
+
}
|
|
166
|
+
|
|
159
167
|
.fc-capsule-set:before {
|
|
160
|
-
content:
|
|
161
|
-
}
|
|
162
|
-
|
|
168
|
+
content: '\e908';
|
|
169
|
+
}
|
|
170
|
+
|
|
163
171
|
.fc-scatterplot:before {
|
|
164
|
-
content:
|
|
165
|
-
}
|
|
166
|
-
|
|
172
|
+
content: '\e909';
|
|
173
|
+
}
|
|
174
|
+
|
|
167
175
|
.fc-series:before {
|
|
168
|
-
content:
|
|
169
|
-
}
|
|
170
|
-
|
|
176
|
+
content: '\e90a';
|
|
177
|
+
}
|
|
178
|
+
|
|
171
179
|
.fc-group:before {
|
|
172
|
-
content:
|
|
173
|
-
}
|
|
174
|
-
|
|
180
|
+
content: '\e90b';
|
|
181
|
+
}
|
|
182
|
+
|
|
175
183
|
.fc-boundary-alert:before {
|
|
176
|
-
content:
|
|
177
|
-
}
|
|
178
|
-
|
|
184
|
+
content: '\e90c';
|
|
185
|
+
}
|
|
186
|
+
|
|
179
187
|
.fc-chart-alert:before {
|
|
180
|
-
content:
|
|
181
|
-
}
|
|
182
|
-
|
|
188
|
+
content: '\e90d';
|
|
189
|
+
}
|
|
190
|
+
|
|
183
191
|
.fc-seeq-datalab:before {
|
|
184
|
-
content:
|
|
185
|
-
}
|
|
186
|
-
|
|
192
|
+
content: '\e90e';
|
|
193
|
+
}
|
|
194
|
+
|
|
187
195
|
.fc-seeq-datalab-lock:before {
|
|
188
|
-
content:
|
|
189
|
-
}
|
|
190
|
-
|
|
196
|
+
content: '\e90f';
|
|
197
|
+
}
|
|
198
|
+
|
|
191
199
|
.fc-all-items:before {
|
|
192
|
-
content:
|
|
193
|
-
}
|
|
194
|
-
|
|
200
|
+
content: '\e910';
|
|
201
|
+
}
|
|
202
|
+
|
|
195
203
|
.fc-asset-tree:before {
|
|
196
|
-
content:
|
|
197
|
-
}
|
|
198
|
-
|
|
204
|
+
content: '\e911';
|
|
205
|
+
}
|
|
206
|
+
|
|
199
207
|
.fc-trend:before {
|
|
200
|
-
content:
|
|
201
|
-
}
|
|
202
|
-
|
|
208
|
+
content: '\e912';
|
|
209
|
+
}
|
|
210
|
+
|
|
203
211
|
.fc-flag:before {
|
|
204
|
-
content:
|
|
205
|
-
}
|
|
206
|
-
|
|
212
|
+
content: '\e913';
|
|
213
|
+
}
|
|
214
|
+
|
|
207
215
|
.fc-capsules:before {
|
|
208
|
-
content:
|
|
209
|
-
}
|
|
210
|
-
|
|
216
|
+
content: '\e914';
|
|
217
|
+
}
|
|
218
|
+
|
|
211
219
|
.fc-connect:before {
|
|
212
|
-
content:
|
|
213
|
-
}
|
|
214
|
-
|
|
220
|
+
content: '\e915';
|
|
221
|
+
}
|
|
222
|
+
|
|
215
223
|
.fc-display-range:before {
|
|
216
|
-
content:
|
|
217
|
-
}
|
|
218
|
-
|
|
224
|
+
content: '\e916';
|
|
225
|
+
}
|
|
226
|
+
|
|
219
227
|
.fc-statistics:before {
|
|
220
|
-
content:
|
|
221
|
-
}
|
|
222
|
-
|
|
228
|
+
content: '\e917';
|
|
229
|
+
}
|
|
230
|
+
|
|
223
231
|
.fc-eye:before {
|
|
224
|
-
content:
|
|
225
|
-
}
|
|
226
|
-
|
|
232
|
+
content: '\e918';
|
|
233
|
+
}
|
|
234
|
+
|
|
227
235
|
.fc-eye-o:before {
|
|
228
|
-
content:
|
|
229
|
-
}
|
|
230
|
-
|
|
236
|
+
content: '\e919';
|
|
237
|
+
}
|
|
238
|
+
|
|
231
239
|
.fc-data-file:before {
|
|
232
|
-
content:
|
|
233
|
-
}
|
|
234
|
-
|
|
240
|
+
content: '\e91a';
|
|
241
|
+
}
|
|
242
|
+
|
|
235
243
|
.fc-gridline:before {
|
|
236
|
-
content:
|
|
237
|
-
}
|
|
238
|
-
|
|
244
|
+
content: '\e91b';
|
|
245
|
+
}
|
|
246
|
+
|
|
239
247
|
.fc-model-and-predict:before {
|
|
240
|
-
content:
|
|
241
|
-
}
|
|
242
|
-
|
|
248
|
+
content: '\e91c';
|
|
249
|
+
}
|
|
250
|
+
|
|
243
251
|
.fc-cleanse:before {
|
|
244
|
-
content:
|
|
245
|
-
}
|
|
246
|
-
|
|
252
|
+
content: '\e91d';
|
|
253
|
+
}
|
|
254
|
+
|
|
247
255
|
.fc-identify:before {
|
|
248
|
-
content:
|
|
249
|
-
}
|
|
250
|
-
|
|
256
|
+
content: '\e91e';
|
|
257
|
+
}
|
|
258
|
+
|
|
251
259
|
.fc-quantify:before {
|
|
252
|
-
content:
|
|
253
|
-
}
|
|
254
|
-
|
|
260
|
+
content: '\e91f';
|
|
261
|
+
}
|
|
262
|
+
|
|
255
263
|
.fc-treemap:before {
|
|
256
|
-
content:
|
|
257
|
-
}
|
|
258
|
-
|
|
264
|
+
content: '\e920';
|
|
265
|
+
}
|
|
266
|
+
|
|
259
267
|
.fc-series-dim:before {
|
|
260
|
-
content:
|
|
261
|
-
}
|
|
262
|
-
|
|
268
|
+
content: '\e921';
|
|
269
|
+
}
|
|
270
|
+
|
|
263
271
|
.fc-series-gen:before {
|
|
264
|
-
content:
|
|
265
|
-
}
|
|
266
|
-
|
|
272
|
+
content: '\e922';
|
|
273
|
+
}
|
|
274
|
+
|
|
267
275
|
.fc-formula:before {
|
|
268
|
-
content:
|
|
269
|
-
}
|
|
270
|
-
|
|
276
|
+
content: '\e923';
|
|
277
|
+
}
|
|
278
|
+
|
|
271
279
|
.fc-alignment:before {
|
|
272
|
-
content:
|
|
273
|
-
}
|
|
274
|
-
|
|
280
|
+
content: '\e924';
|
|
281
|
+
}
|
|
282
|
+
|
|
275
283
|
.fc-delete:before {
|
|
276
|
-
content:
|
|
277
|
-
}
|
|
278
|
-
|
|
284
|
+
content: '\e925';
|
|
285
|
+
}
|
|
286
|
+
|
|
279
287
|
.fc-list:before {
|
|
280
|
-
content:
|
|
281
|
-
}
|
|
282
|
-
|
|
288
|
+
content: '\e926';
|
|
289
|
+
}
|
|
290
|
+
|
|
283
291
|
.fc-tile:before {
|
|
284
|
-
content:
|
|
285
|
-
}
|
|
286
|
-
|
|
292
|
+
content: '\e927';
|
|
293
|
+
}
|
|
294
|
+
|
|
287
295
|
.fc-arrow_down:before {
|
|
288
|
-
content:
|
|
289
|
-
}
|
|
290
|
-
|
|
296
|
+
content: '\e928';
|
|
297
|
+
}
|
|
298
|
+
|
|
291
299
|
.fc-arrow_up:before {
|
|
292
|
-
content:
|
|
293
|
-
}
|
|
294
|
-
|
|
300
|
+
content: '\e929';
|
|
301
|
+
}
|
|
302
|
+
|
|
295
303
|
.fc-user-community:before {
|
|
296
|
-
content:
|
|
297
|
-
}
|
|
298
|
-
|
|
304
|
+
content: '\e92a';
|
|
305
|
+
}
|
|
306
|
+
|
|
299
307
|
.fc-certificate:before {
|
|
300
|
-
content:
|
|
301
|
-
}
|
|
302
|
-
|
|
308
|
+
content: '\e92b';
|
|
309
|
+
}
|
|
310
|
+
|
|
303
311
|
.fc-training:before {
|
|
304
|
-
content:
|
|
305
|
-
}
|
|
306
|
-
|
|
312
|
+
content: '\e92c';
|
|
313
|
+
}
|
|
314
|
+
|
|
307
315
|
.fc-knowledge-base:before {
|
|
308
|
-
content:
|
|
309
|
-
}
|
|
310
|
-
|
|
316
|
+
content: '\e92d';
|
|
317
|
+
}
|
|
318
|
+
|
|
311
319
|
.fc-causality:before {
|
|
312
|
-
content:
|
|
313
|
-
}
|
|
314
|
-
|
|
320
|
+
content: '\e92e';
|
|
321
|
+
}
|
|
322
|
+
|
|
315
323
|
.fc-parallel-coordinate:before {
|
|
316
|
-
content:
|
|
317
|
-
}
|
|
318
|
-
|
|
324
|
+
content: '\e92f';
|
|
325
|
+
}
|
|
326
|
+
|
|
319
327
|
.fc-arrow_updown:before {
|
|
320
|
-
content:
|
|
321
|
-
}
|
|
322
|
-
|
|
328
|
+
content: '\e930';
|
|
329
|
+
}
|
|
330
|
+
|
|
323
331
|
.fc-circle_warning:before {
|
|
324
|
-
content:
|
|
325
|
-
}
|
|
326
|
-
|
|
332
|
+
content: '\e931';
|
|
333
|
+
}
|
|
334
|
+
|
|
327
335
|
.fc-circle_info:before {
|
|
328
|
-
content:
|
|
329
|
-
}
|
|
330
|
-
|
|
336
|
+
content: '\e932';
|
|
337
|
+
}
|
|
338
|
+
|
|
331
339
|
.fc-warning:before {
|
|
332
|
-
content:
|
|
333
|
-
}
|
|
334
|
-
|
|
340
|
+
content: '\e933';
|
|
341
|
+
}
|
|
342
|
+
|
|
335
343
|
.fc-grab-window:before {
|
|
336
|
-
content:
|
|
337
|
-
}
|
|
338
|
-
|
|
344
|
+
content: '\e934';
|
|
345
|
+
}
|
|
346
|
+
|
|
339
347
|
.fc-magnify:before {
|
|
340
|
-
content:
|
|
341
|
-
}
|
|
342
|
-
|
|
348
|
+
content: '\e935';
|
|
349
|
+
}
|
|
350
|
+
|
|
343
351
|
.fc-box-empty:before {
|
|
344
|
-
content:
|
|
345
|
-
}
|
|
346
|
-
|
|
352
|
+
content: '\e936';
|
|
353
|
+
}
|
|
354
|
+
|
|
347
355
|
.fc-box-check:before {
|
|
348
|
-
content:
|
|
349
|
-
}
|
|
350
|
-
|
|
356
|
+
content: '\e937';
|
|
357
|
+
}
|
|
358
|
+
|
|
351
359
|
.fc-circle-empty:before {
|
|
352
|
-
content:
|
|
353
|
-
}
|
|
354
|
-
|
|
360
|
+
content: '\e938';
|
|
361
|
+
}
|
|
362
|
+
|
|
355
363
|
.fc-circle-check:before {
|
|
356
|
-
content:
|
|
357
|
-
}
|
|
358
|
-
|
|
364
|
+
content: '\e939';
|
|
365
|
+
}
|
|
366
|
+
|
|
359
367
|
.fc-q_search:before {
|
|
360
|
-
content:
|
|
361
|
-
}
|
|
362
|
-
|
|
368
|
+
content: '\e93a';
|
|
369
|
+
}
|
|
370
|
+
|
|
363
371
|
.fc-scatterplot-select:before {
|
|
364
|
-
content:
|
|
365
|
-
}
|
|
366
|
-
|
|
372
|
+
content: '\e93b';
|
|
373
|
+
}
|
|
374
|
+
|
|
367
375
|
.fc-redo:before {
|
|
368
|
-
content:
|
|
369
|
-
}
|
|
370
|
-
|
|
376
|
+
content: '\e93c';
|
|
377
|
+
}
|
|
378
|
+
|
|
371
379
|
.fc-digital-filter:before {
|
|
372
|
-
content:
|
|
373
|
-
}
|
|
374
|
-
|
|
380
|
+
content: '\e93d';
|
|
381
|
+
}
|
|
382
|
+
|
|
375
383
|
.fc-support:before {
|
|
376
|
-
content:
|
|
377
|
-
}
|
|
378
|
-
|
|
384
|
+
content: '\e93e';
|
|
385
|
+
}
|
|
386
|
+
|
|
379
387
|
.fc-binoculars:before {
|
|
380
|
-
content:
|
|
381
|
-
}
|
|
382
|
-
|
|
388
|
+
content: '\e93f';
|
|
389
|
+
}
|
|
390
|
+
|
|
383
391
|
.fc-check:before {
|
|
384
|
-
content:
|
|
385
|
-
}
|
|
386
|
-
|
|
392
|
+
content: '\e940';
|
|
393
|
+
}
|
|
394
|
+
|
|
387
395
|
.fc-filter:before {
|
|
388
|
-
content:
|
|
389
|
-
}
|
|
390
|
-
|
|
396
|
+
content: '\e941';
|
|
397
|
+
}
|
|
398
|
+
|
|
391
399
|
.fc-trash:before {
|
|
392
|
-
content:
|
|
393
|
-
}
|
|
394
|
-
|
|
400
|
+
content: '\e942';
|
|
401
|
+
}
|
|
402
|
+
|
|
395
403
|
.fc-gear:before {
|
|
396
|
-
content:
|
|
397
|
-
}
|
|
398
|
-
|
|
404
|
+
content: '\e943';
|
|
405
|
+
}
|
|
406
|
+
|
|
399
407
|
.fc-lock:before {
|
|
400
|
-
content:
|
|
401
|
-
}
|
|
402
|
-
|
|
408
|
+
content: '\e944';
|
|
409
|
+
}
|
|
410
|
+
|
|
403
411
|
.fc-lock-open:before {
|
|
404
|
-
content:
|
|
405
|
-
}
|
|
406
|
-
|
|
412
|
+
content: '\e945';
|
|
413
|
+
}
|
|
414
|
+
|
|
407
415
|
.fc-arrow-dropdown:before {
|
|
408
|
-
content:
|
|
409
|
-
}
|
|
410
|
-
|
|
416
|
+
content: '\e946';
|
|
417
|
+
}
|
|
418
|
+
|
|
411
419
|
.fc-mag-glass-empty:before {
|
|
412
|
-
content:
|
|
413
|
-
}
|
|
414
|
-
|
|
420
|
+
content: '\e947';
|
|
421
|
+
}
|
|
422
|
+
|
|
415
423
|
.fc-globe:before {
|
|
416
|
-
content:
|
|
417
|
-
}
|
|
418
|
-
|
|
424
|
+
content: '\e948';
|
|
425
|
+
}
|
|
426
|
+
|
|
419
427
|
.fc-edit:before {
|
|
420
|
-
content:
|
|
421
|
-
}
|
|
422
|
-
|
|
428
|
+
content: '\e949';
|
|
429
|
+
}
|
|
430
|
+
|
|
423
431
|
.fc-add-column:before {
|
|
424
|
-
content:
|
|
425
|
-
}
|
|
426
|
-
|
|
432
|
+
content: '\e94a';
|
|
433
|
+
}
|
|
434
|
+
|
|
427
435
|
.fc-add-row:before {
|
|
428
|
-
content:
|
|
429
|
-
}
|
|
430
|
-
|
|
436
|
+
content: '\e94b';
|
|
437
|
+
}
|
|
438
|
+
|
|
431
439
|
.fc-border-style:before {
|
|
432
|
-
content:
|
|
433
|
-
}
|
|
434
|
-
|
|
440
|
+
content: '\e94c';
|
|
441
|
+
}
|
|
442
|
+
|
|
435
443
|
.fc-clock-density:before {
|
|
436
|
-
content:
|
|
437
|
-
}
|
|
438
|
-
|
|
444
|
+
content: '\e94d';
|
|
445
|
+
}
|
|
446
|
+
|
|
439
447
|
.fc-plus-assets:before {
|
|
440
|
-
content:
|
|
441
|
-
}
|
|
442
|
-
|
|
448
|
+
content: '\e94e';
|
|
449
|
+
}
|
|
450
|
+
|
|
443
451
|
.fc-plus-selected:before {
|
|
444
|
-
content:
|
|
445
|
-
}
|
|
446
|
-
|
|
452
|
+
content: '\e94f';
|
|
453
|
+
}
|
|
454
|
+
|
|
447
455
|
.fc-comment:before {
|
|
448
|
-
content:
|
|
449
|
-
}
|
|
450
|
-
|
|
456
|
+
content: '\e950';
|
|
457
|
+
}
|
|
458
|
+
|
|
451
459
|
.fc-user:before {
|
|
452
|
-
content:
|
|
453
|
-
}
|
|
454
|
-
|
|
460
|
+
content: '\e951';
|
|
461
|
+
}
|
|
462
|
+
|
|
455
463
|
.fc-engineer:before {
|
|
456
|
-
content:
|
|
457
|
-
}
|
|
458
|
-
|
|
464
|
+
content: '\e952';
|
|
465
|
+
}
|
|
466
|
+
|
|
459
467
|
.fc-pricing:before {
|
|
460
|
-
content:
|
|
461
|
-
}
|
|
462
|
-
|
|
468
|
+
content: '\e953';
|
|
469
|
+
}
|
|
470
|
+
|
|
463
471
|
.fc-free-trial:before {
|
|
464
|
-
content:
|
|
465
|
-
}
|
|
466
|
-
|
|
472
|
+
content: '\e954';
|
|
473
|
+
}
|
|
474
|
+
|
|
467
475
|
.fc-partners:before {
|
|
468
|
-
content:
|
|
469
|
-
}
|
|
470
|
-
|
|
476
|
+
content: '\e955';
|
|
477
|
+
}
|
|
478
|
+
|
|
471
479
|
.fc-meter:before {
|
|
472
|
-
content:
|
|
473
|
-
}
|
|
474
|
-
|
|
480
|
+
content: '\e956';
|
|
481
|
+
}
|
|
482
|
+
|
|
475
483
|
.fc-beaker:before {
|
|
476
|
-
content:
|
|
477
|
-
}
|
|
478
|
-
|
|
484
|
+
content: '\e957';
|
|
485
|
+
}
|
|
486
|
+
|
|
479
487
|
.fc-lightbulb:before {
|
|
480
|
-
content:
|
|
481
|
-
}
|
|
482
|
-
|
|
488
|
+
content: '\e958';
|
|
489
|
+
}
|
|
490
|
+
|
|
483
491
|
.fc-pdf:before {
|
|
484
|
-
content:
|
|
485
|
-
}
|
|
486
|
-
|
|
492
|
+
content: '\e959';
|
|
493
|
+
}
|
|
494
|
+
|
|
487
495
|
.fc-add-column-2:before {
|
|
488
|
-
content:
|
|
489
|
-
}
|
|
490
|
-
|
|
496
|
+
content: '\e95a';
|
|
497
|
+
}
|
|
498
|
+
|
|
491
499
|
.fc-add-row-2:before {
|
|
492
|
-
content:
|
|
493
|
-
}
|
|
494
|
-
|
|
500
|
+
content: '\e95b';
|
|
501
|
+
}
|
|
502
|
+
|
|
495
503
|
.fc-eraser:before {
|
|
496
|
-
content:
|
|
497
|
-
}
|
|
498
|
-
|
|
504
|
+
content: '\e95c';
|
|
505
|
+
}
|
|
506
|
+
|
|
499
507
|
.fc-paintbrush:before {
|
|
500
|
-
content:
|
|
501
|
-
}
|
|
502
|
-
|
|
508
|
+
content: '\e95d';
|
|
509
|
+
}
|
|
510
|
+
|
|
503
511
|
.fc-rows:before {
|
|
504
|
-
content:
|
|
505
|
-
}
|
|
506
|
-
|
|
512
|
+
content: '\e95e';
|
|
513
|
+
}
|
|
514
|
+
|
|
507
515
|
.fc-quick-start:before {
|
|
508
|
-
content:
|
|
509
|
-
}
|
|
510
|
-
|
|
516
|
+
content: '\e95f';
|
|
517
|
+
}
|
|
518
|
+
|
|
511
519
|
.fc-video:before {
|
|
512
|
-
content:
|
|
513
|
-
}
|
|
514
|
-
|
|
520
|
+
content: '\e960';
|
|
521
|
+
}
|
|
522
|
+
|
|
515
523
|
.fc-wireless2:before {
|
|
516
|
-
content:
|
|
517
|
-
}
|
|
518
|
-
|
|
524
|
+
content: '\e961';
|
|
525
|
+
}
|
|
526
|
+
|
|
519
527
|
.fc-wireless:before {
|
|
520
|
-
content:
|
|
521
|
-
}
|
|
522
|
-
|
|
528
|
+
content: '\e962';
|
|
529
|
+
}
|
|
530
|
+
|
|
523
531
|
.fc-mag-glass:before {
|
|
524
|
-
content:
|
|
525
|
-
}
|
|
526
|
-
|
|
532
|
+
content: '\e963';
|
|
533
|
+
}
|
|
534
|
+
|
|
527
535
|
.fc-data:before {
|
|
528
|
-
content:
|
|
529
|
-
}
|
|
530
|
-
|
|
536
|
+
content: '\e964';
|
|
537
|
+
}
|
|
538
|
+
|
|
531
539
|
.fc-annotation:before {
|
|
532
|
-
content:
|
|
533
|
-
}
|
|
534
|
-
|
|
540
|
+
content: '\e965';
|
|
541
|
+
}
|
|
542
|
+
|
|
535
543
|
.fc-briefcase:before {
|
|
536
|
-
content:
|
|
537
|
-
}
|
|
538
|
-
|
|
544
|
+
content: '\e966';
|
|
545
|
+
}
|
|
546
|
+
|
|
539
547
|
.fc-investigate:before {
|
|
540
|
-
content:
|
|
541
|
-
}
|
|
542
|
-
|
|
548
|
+
content: '\e967';
|
|
549
|
+
}
|
|
550
|
+
|
|
543
551
|
.fc-monitor:before {
|
|
544
|
-
content:
|
|
545
|
-
}
|
|
546
|
-
|
|
552
|
+
content: '\e968';
|
|
553
|
+
}
|
|
554
|
+
|
|
547
555
|
.fc-clipboard:before {
|
|
548
|
-
content:
|
|
549
|
-
}
|
|
550
|
-
|
|
556
|
+
content: '\e969';
|
|
557
|
+
}
|
|
558
|
+
|
|
551
559
|
.fc-share-access:before {
|
|
552
|
-
content:
|
|
553
|
-
}
|
|
554
|
-
|
|
560
|
+
content: '\e96a';
|
|
561
|
+
}
|
|
562
|
+
|
|
555
563
|
.fc-bar-chart-horizontal:before {
|
|
556
|
-
content:
|
|
557
|
-
}
|
|
558
|
-
|
|
564
|
+
content: '\e96b';
|
|
565
|
+
}
|
|
566
|
+
|
|
559
567
|
.fc-stacked-bar-chart:before {
|
|
560
|
-
content:
|
|
561
|
-
}
|
|
562
|
-
|
|
568
|
+
content: '\e96c';
|
|
569
|
+
}
|
|
570
|
+
|
|
563
571
|
.fc-stacked-bar-horizontal:before {
|
|
564
|
-
content:
|
|
565
|
-
}
|
|
566
|
-
|
|
572
|
+
content: '\e96d';
|
|
573
|
+
}
|
|
574
|
+
|
|
567
575
|
.fc-excel:before {
|
|
568
|
-
content:
|
|
569
|
-
}
|
|
570
|
-
|
|
576
|
+
content: '\e96e';
|
|
577
|
+
}
|
|
578
|
+
|
|
571
579
|
.fc-Asset1:before {
|
|
572
|
-
content:
|
|
573
|
-
}
|
|
574
|
-
|
|
580
|
+
content: '\e96f';
|
|
581
|
+
}
|
|
582
|
+
|
|
575
583
|
.fc-gears-2:before {
|
|
576
|
-
content:
|
|
577
|
-
}
|
|
578
|
-
|
|
584
|
+
content: '\e970';
|
|
585
|
+
}
|
|
586
|
+
|
|
579
587
|
.fc-pharma:before {
|
|
580
|
-
content:
|
|
581
|
-
}
|
|
582
|
-
|
|
588
|
+
content: '\e971';
|
|
589
|
+
}
|
|
590
|
+
|
|
583
591
|
.fc-water:before {
|
|
584
|
-
content:
|
|
585
|
-
}
|
|
586
|
-
|
|
592
|
+
content: '\e972';
|
|
593
|
+
}
|
|
594
|
+
|
|
587
595
|
.fc-chemical:before {
|
|
588
|
-
content:
|
|
589
|
-
}
|
|
590
|
-
|
|
596
|
+
content: '\e973';
|
|
597
|
+
}
|
|
598
|
+
|
|
591
599
|
.fc-oil:before {
|
|
592
|
-
content:
|
|
593
|
-
}
|
|
594
|
-
|
|
600
|
+
content: '\e974';
|
|
601
|
+
}
|
|
602
|
+
|
|
595
603
|
.fc-beverage:before {
|
|
596
|
-
content:
|
|
597
|
-
}
|
|
598
|
-
|
|
604
|
+
content: '\e975';
|
|
605
|
+
}
|
|
606
|
+
|
|
599
607
|
.fc-utilities:before {
|
|
600
|
-
content:
|
|
601
|
-
}
|
|
602
|
-
|
|
608
|
+
content: '\e976';
|
|
609
|
+
}
|
|
610
|
+
|
|
603
611
|
.fc-manufacturing:before {
|
|
604
|
-
content:
|
|
605
|
-
}
|
|
606
|
-
|
|
612
|
+
content: '\e977';
|
|
613
|
+
}
|
|
614
|
+
|
|
607
615
|
.fc-industry:before {
|
|
608
|
-
content:
|
|
609
|
-
}
|
|
610
|
-
|
|
616
|
+
content: '\e978';
|
|
617
|
+
}
|
|
618
|
+
|
|
611
619
|
.fc-viz-normal:before {
|
|
612
|
-
content:
|
|
613
|
-
}
|
|
614
|
-
|
|
620
|
+
content: '\e979';
|
|
621
|
+
}
|
|
622
|
+
|
|
615
623
|
.fc-compare:before {
|
|
616
|
-
content:
|
|
617
|
-
}
|
|
618
|
-
|
|
624
|
+
content: '\e97a';
|
|
625
|
+
}
|
|
626
|
+
|
|
619
627
|
.fc-diamond:before {
|
|
620
|
-
content:
|
|
621
|
-
}
|
|
622
|
-
|
|
628
|
+
content: '\e97b';
|
|
629
|
+
}
|
|
630
|
+
|
|
623
631
|
.fc-square:before {
|
|
624
|
-
content:
|
|
625
|
-
}
|
|
626
|
-
|
|
632
|
+
content: '\e97c';
|
|
633
|
+
}
|
|
634
|
+
|
|
627
635
|
.fc-triangle:before {
|
|
628
|
-
content:
|
|
629
|
-
}
|
|
630
|
-
|
|
636
|
+
content: '\e97d';
|
|
637
|
+
}
|
|
638
|
+
|
|
631
639
|
.fc-rectangle:before {
|
|
632
|
-
content:
|
|
633
|
-
}
|
|
634
|
-
|
|
640
|
+
content: '\e97e';
|
|
641
|
+
}
|
|
642
|
+
|
|
635
643
|
.fc-strip:before {
|
|
636
|
-
content:
|
|
637
|
-
}
|
|
638
|
-
|
|
644
|
+
content: '\e97f';
|
|
645
|
+
}
|
|
646
|
+
|
|
639
647
|
.fc-viz-overlay:before {
|
|
640
|
-
content:
|
|
641
|
-
}
|
|
642
|
-
|
|
648
|
+
content: '\e980';
|
|
649
|
+
}
|
|
650
|
+
|
|
643
651
|
.fc-viz-chain:before {
|
|
644
|
-
content:
|
|
645
|
-
}
|
|
646
|
-
|
|
652
|
+
content: '\e981';
|
|
653
|
+
}
|
|
654
|
+
|
|
647
655
|
.fc-graph:before {
|
|
648
|
-
content:
|
|
649
|
-
}
|
|
650
|
-
|
|
656
|
+
content: '\e982';
|
|
657
|
+
}
|
|
658
|
+
|
|
651
659
|
.fc-pin:before {
|
|
652
|
-
content:
|
|
653
|
-
}
|
|
654
|
-
|
|
660
|
+
content: '\e983';
|
|
661
|
+
}
|
|
662
|
+
|
|
655
663
|
.fc-y-axis:before {
|
|
656
|
-
content:
|
|
657
|
-
}
|
|
658
|
-
|
|
664
|
+
content: '\e984';
|
|
665
|
+
}
|
|
666
|
+
|
|
659
667
|
.fc-capsule-bar:before {
|
|
660
|
-
content:
|
|
661
|
-
}
|
|
662
|
-
|
|
668
|
+
content: '\e985';
|
|
669
|
+
}
|
|
670
|
+
|
|
663
671
|
.fc-copy:before {
|
|
664
|
-
content:
|
|
665
|
-
}
|
|
666
|
-
|
|
672
|
+
content: '\e986';
|
|
673
|
+
}
|
|
674
|
+
|
|
667
675
|
.fc-link:before {
|
|
668
|
-
content:
|
|
669
|
-
}
|
|
670
|
-
|
|
676
|
+
content: '\e987';
|
|
677
|
+
}
|
|
678
|
+
|
|
671
679
|
.fc-unlink:before {
|
|
672
|
-
content:
|
|
673
|
-
}
|
|
674
|
-
|
|
680
|
+
content: '\e988';
|
|
681
|
+
}
|
|
682
|
+
|
|
675
683
|
.fc-step-back-full:before {
|
|
676
|
-
content:
|
|
677
|
-
}
|
|
678
|
-
|
|
684
|
+
content: '\e989';
|
|
685
|
+
}
|
|
686
|
+
|
|
679
687
|
.fc-displays:before {
|
|
680
|
-
content:
|
|
681
|
-
}
|
|
682
|
-
|
|
688
|
+
content: '\e98a';
|
|
689
|
+
}
|
|
690
|
+
|
|
683
691
|
.fc-overwrite:before {
|
|
684
|
-
content:
|
|
685
|
-
}
|
|
686
|
-
|
|
692
|
+
content: '\e98b';
|
|
693
|
+
}
|
|
694
|
+
|
|
687
695
|
.fc-rename:before {
|
|
688
|
-
content:
|
|
689
|
-
}
|
|
690
|
-
|
|
696
|
+
content: '\e98c';
|
|
697
|
+
}
|
|
698
|
+
|
|
691
699
|
.fc-parallel-boundary:before {
|
|
692
|
-
content:
|
|
693
|
-
}
|
|
694
|
-
|
|
700
|
+
content: '\e98d';
|
|
701
|
+
}
|
|
702
|
+
|
|
695
703
|
.fc-loading-notch:before {
|
|
696
|
-
content:
|
|
697
|
-
}
|
|
698
|
-
|
|
704
|
+
content: '\e98e';
|
|
705
|
+
}
|
|
706
|
+
|
|
699
707
|
.fc-skill-explorer:before {
|
|
700
|
-
content:
|
|
701
|
-
}
|
|
702
|
-
|
|
708
|
+
content: '\e98f';
|
|
709
|
+
}
|
|
710
|
+
|
|
703
711
|
.fc-step-fore-full:before {
|
|
704
|
-
content:
|
|
705
|
-
}
|
|
706
|
-
|
|
712
|
+
content: '\e990';
|
|
713
|
+
}
|
|
714
|
+
|
|
707
715
|
.fc-step-back-half:before {
|
|
708
|
-
content:
|
|
709
|
-
}
|
|
710
|
-
|
|
716
|
+
content: '\e991';
|
|
717
|
+
}
|
|
718
|
+
|
|
711
719
|
.fc-step-fore-half:before {
|
|
712
|
-
content:
|
|
713
|
-
}
|
|
714
|
-
|
|
720
|
+
content: '\e992';
|
|
721
|
+
}
|
|
722
|
+
|
|
715
723
|
.fc-arrow-down:before {
|
|
716
|
-
content:
|
|
717
|
-
}
|
|
718
|
-
|
|
724
|
+
content: '\e993';
|
|
725
|
+
}
|
|
726
|
+
|
|
719
727
|
.fc-arrow-up:before {
|
|
720
|
-
content:
|
|
721
|
-
}
|
|
722
|
-
|
|
728
|
+
content: '\e994';
|
|
729
|
+
}
|
|
730
|
+
|
|
723
731
|
.fc-expand-close:before {
|
|
724
|
-
content:
|
|
725
|
-
}
|
|
726
|
-
|
|
732
|
+
content: '\e995';
|
|
733
|
+
}
|
|
734
|
+
|
|
727
735
|
.fc-expand-open:before {
|
|
728
|
-
content:
|
|
729
|
-
}
|
|
730
|
-
|
|
736
|
+
content: '\e996';
|
|
737
|
+
}
|
|
738
|
+
|
|
731
739
|
.fc-axis:before {
|
|
732
|
-
content:
|
|
733
|
-
}
|
|
734
|
-
|
|
740
|
+
content: '\e997';
|
|
741
|
+
}
|
|
742
|
+
|
|
735
743
|
.fc-axis-o:before {
|
|
736
|
-
content:
|
|
737
|
-
}
|
|
738
|
-
|
|
744
|
+
content: '\e998';
|
|
745
|
+
}
|
|
746
|
+
|
|
739
747
|
.fc-solid:before {
|
|
740
|
-
content:
|
|
741
|
-
}
|
|
742
|
-
|
|
748
|
+
content: '\e999';
|
|
749
|
+
}
|
|
750
|
+
|
|
743
751
|
.fc-sun:before {
|
|
744
|
-
content:
|
|
745
|
-
}
|
|
746
|
-
|
|
752
|
+
content: '\e99a';
|
|
753
|
+
}
|
|
754
|
+
|
|
747
755
|
.fc-announcements:before {
|
|
748
|
-
content:
|
|
749
|
-
}
|
|
750
|
-
|
|
756
|
+
content: '\e99b';
|
|
757
|
+
}
|
|
758
|
+
|
|
751
759
|
.fc-bell-cog:before {
|
|
752
|
-
content:
|
|
753
|
-
}
|
|
754
|
-
|
|
760
|
+
content: '\e99c';
|
|
761
|
+
}
|
|
762
|
+
|
|
755
763
|
.fc-copy-date:before {
|
|
756
|
-
content:
|
|
757
|
-
}
|
|
758
|
-
|
|
764
|
+
content: '\e99d';
|
|
765
|
+
}
|
|
766
|
+
|
|
759
767
|
.fc-copy-date-2:before {
|
|
760
|
-
content:
|
|
761
|
-
}
|
|
762
|
-
|
|
768
|
+
content: '\e99e';
|
|
769
|
+
}
|
|
770
|
+
|
|
763
771
|
.fc-bell-solid:before {
|
|
764
|
-
content:
|
|
765
|
-
}
|
|
766
|
-
|
|
772
|
+
content: '\e99f';
|
|
773
|
+
}
|
|
774
|
+
|
|
767
775
|
.fc-bell-regular:before {
|
|
768
|
-
content:
|
|
769
|
-
}
|
|
770
|
-
|
|
776
|
+
content: '\e9a0';
|
|
777
|
+
}
|
|
778
|
+
|
|
771
779
|
.fc-add-on-1:before {
|
|
772
|
-
content:
|
|
773
|
-
}
|
|
774
|
-
|
|
780
|
+
content: '\e9a1';
|
|
781
|
+
}
|
|
782
|
+
|
|
775
783
|
.fc-view-data:before {
|
|
776
|
-
content:
|
|
777
|
-
}
|
|
778
|
-
|
|
784
|
+
content: '\e9a2';
|
|
785
|
+
}
|
|
786
|
+
|
|
779
787
|
.fc-add-on-2:before {
|
|
780
|
-
content:
|
|
781
|
-
}
|
|
782
|
-
|
|
788
|
+
content: '\e9a3';
|
|
789
|
+
}
|
|
790
|
+
|
|
783
791
|
.fc-external-link:before {
|
|
784
|
-
content:
|
|
785
|
-
}
|
|
786
|
-
|
|
792
|
+
content: '\e9a4';
|
|
793
|
+
}
|
|
794
|
+
|
|
787
795
|
.fc-short-dash:before {
|
|
788
|
-
content:
|
|
789
|
-
}
|
|
790
|
-
|
|
796
|
+
content: '\f901';
|
|
797
|
+
}
|
|
798
|
+
|
|
791
799
|
.fc-short-dot:before {
|
|
792
|
-
content:
|
|
793
|
-
}
|
|
794
|
-
|
|
800
|
+
content: '\f902';
|
|
801
|
+
}
|
|
802
|
+
|
|
795
803
|
.fc-short-dash-dot:before {
|
|
796
|
-
content:
|
|
797
|
-
}
|
|
798
|
-
|
|
804
|
+
content: '\f903';
|
|
805
|
+
}
|
|
806
|
+
|
|
799
807
|
.fc-short-dash-dot-dot:before {
|
|
800
|
-
content:
|
|
801
|
-
}
|
|
802
|
-
|
|
808
|
+
content: '\f904';
|
|
809
|
+
}
|
|
810
|
+
|
|
803
811
|
.fc-dot:before {
|
|
804
|
-
content:
|
|
805
|
-
}
|
|
806
|
-
|
|
812
|
+
content: '\f905';
|
|
813
|
+
}
|
|
814
|
+
|
|
807
815
|
.fc-dash:before {
|
|
808
|
-
content:
|
|
809
|
-
}
|
|
810
|
-
|
|
816
|
+
content: '\f906';
|
|
817
|
+
}
|
|
818
|
+
|
|
811
819
|
.fc-long-dash:before {
|
|
812
|
-
content:
|
|
813
|
-
}
|
|
814
|
-
|
|
820
|
+
content: '\f907';
|
|
821
|
+
}
|
|
822
|
+
|
|
815
823
|
.fc-dash-dot:before {
|
|
816
|
-
content:
|
|
817
|
-
}
|
|
818
|
-
|
|
824
|
+
content: '\f908';
|
|
825
|
+
}
|
|
826
|
+
|
|
819
827
|
.fc-long-dash-dot:before {
|
|
820
|
-
content:
|
|
821
|
-
}
|
|
822
|
-
|
|
828
|
+
content: '\f909';
|
|
829
|
+
}
|
|
830
|
+
|
|
823
831
|
.fc-long-dash-dot-dot:before {
|
|
824
|
-
content:
|
|
825
|
-
}
|
|
826
|
-
|
|
832
|
+
content: '\f910';
|
|
833
|
+
}
|
|
834
|
+
|
|
827
835
|
.fc-scalar:before {
|
|
828
|
-
content:
|
|
829
|
-
}
|
|
830
|
-
|
|
836
|
+
content: '\f911';
|
|
837
|
+
}
|
|
838
|
+
|
|
831
839
|
.fc-detail-columns:before {
|
|
832
|
-
content:
|
|
833
|
-
}
|
|
834
|
-
|
|
840
|
+
content: '\f912';
|
|
841
|
+
}
|
|
842
|
+
|
|
835
843
|
.fc-workbook:before {
|
|
836
|
-
content:
|
|
837
|
-
}
|
|
838
|
-
|
|
844
|
+
content: '\f913';
|
|
845
|
+
}
|
|
846
|
+
|
|
839
847
|
.fc-workbook-user:before {
|
|
840
|
-
content:
|
|
841
|
-
}
|
|
842
|
-
|
|
848
|
+
content: '\f914';
|
|
849
|
+
}
|
|
850
|
+
|
|
843
851
|
.fc-workbook-lock:before {
|
|
844
|
-
content:
|
|
845
|
-
}
|
|
846
|
-
|
|
852
|
+
content: '\f915';
|
|
853
|
+
}
|
|
854
|
+
|
|
847
855
|
.fc-workbook-globe:before {
|
|
848
|
-
content:
|
|
849
|
-
}
|
|
850
|
-
|
|
856
|
+
content: '\f916';
|
|
857
|
+
}
|
|
858
|
+
|
|
851
859
|
.fc-arrow-circle:before {
|
|
852
|
-
content:
|
|
853
|
-
}
|
|
854
|
-
|
|
860
|
+
content: '\f917';
|
|
861
|
+
}
|
|
862
|
+
|
|
855
863
|
.fc-condition-define:before {
|
|
856
|
-
content:
|
|
857
|
-
}
|
|
858
|
-
|
|
864
|
+
content: '\f918';
|
|
865
|
+
}
|
|
866
|
+
|
|
859
867
|
.fc-condition-combine:before {
|
|
860
|
-
content:
|
|
861
|
-
}
|
|
862
|
-
|
|
868
|
+
content: '\f919';
|
|
869
|
+
}
|
|
870
|
+
|
|
863
871
|
.fc-series-modify:before {
|
|
864
|
-
content:
|
|
865
|
-
}
|
|
866
|
-
|
|
872
|
+
content: '\f920';
|
|
873
|
+
}
|
|
874
|
+
|
|
867
875
|
.fc-boundary:before {
|
|
868
|
-
content:
|
|
869
|
-
}
|
|
870
|
-
|
|
876
|
+
content: '\f923';
|
|
877
|
+
}
|
|
878
|
+
|
|
871
879
|
.fc-condition-digital:before {
|
|
872
|
-
content:
|
|
873
|
-
}
|
|
874
|
-
|
|
880
|
+
content: '\f924';
|
|
881
|
+
}
|
|
882
|
+
|
|
875
883
|
.fc-timing:before {
|
|
876
|
-
content:
|
|
877
|
-
}
|
|
878
|
-
|
|
884
|
+
content: '\f925';
|
|
885
|
+
}
|
|
886
|
+
|
|
879
887
|
.fc-series-properties:before {
|
|
880
|
-
content:
|
|
881
|
-
}
|
|
882
|
-
|
|
888
|
+
content: '\f926';
|
|
889
|
+
}
|
|
890
|
+
|
|
883
891
|
.fc-import:before {
|
|
884
|
-
content:
|
|
885
|
-
}
|
|
886
|
-
|
|
892
|
+
content: '\f927';
|
|
893
|
+
}
|
|
894
|
+
|
|
887
895
|
.fc-export:before {
|
|
888
|
-
content:
|
|
889
|
-
}
|
|
890
|
-
|
|
896
|
+
content: '\f928';
|
|
897
|
+
}
|
|
898
|
+
|
|
891
899
|
.fc-pivision:before {
|
|
892
|
-
content:
|
|
893
|
-
}
|
|
894
|
-
|
|
900
|
+
content: '\f929';
|
|
901
|
+
}
|
|
902
|
+
|
|
895
903
|
.fc-samples-and-line:before {
|
|
896
|
-
content:
|
|
897
|
-
}
|
|
898
|
-
|
|
904
|
+
content: '\f930';
|
|
905
|
+
}
|
|
906
|
+
|
|
899
907
|
.fc-samples-only:before {
|
|
900
|
-
content:
|
|
901
|
-
}
|
|
902
|
-
|
|
908
|
+
content: '\f931';
|
|
909
|
+
}
|
|
910
|
+
|
|
903
911
|
.fc-prediction:before {
|
|
904
|
-
content:
|
|
905
|
-
}
|
|
906
|
-
|
|
912
|
+
content: '\f932';
|
|
913
|
+
}
|
|
914
|
+
|
|
907
915
|
.fc-lowpass:before {
|
|
908
|
-
content:
|
|
909
|
-
}
|
|
910
|
-
|
|
916
|
+
content: '\f933';
|
|
917
|
+
}
|
|
918
|
+
|
|
911
919
|
.fc-bar-chart:before {
|
|
912
|
-
content:
|
|
913
|
-
}
|
|
914
|
-
|
|
920
|
+
content: '\f934';
|
|
921
|
+
}
|
|
922
|
+
|
|
915
923
|
.fc-ancillaries:before {
|
|
916
|
-
content:
|
|
917
|
-
}
|
|
918
|
-
|
|
924
|
+
content: '\f935';
|
|
925
|
+
}
|
|
926
|
+
|
|
919
927
|
.fc-deviation:before {
|
|
920
|
-
content:
|
|
921
|
-
}
|
|
922
|
-
|
|
928
|
+
content: '\f936';
|
|
929
|
+
}
|
|
930
|
+
|
|
923
931
|
.fc-journal:before {
|
|
924
|
-
content:
|
|
925
|
-
}
|
|
926
|
-
|
|
932
|
+
content: '\f937';
|
|
933
|
+
}
|
|
934
|
+
|
|
927
935
|
.fc-journal-edit:before {
|
|
928
|
-
content:
|
|
929
|
-
}
|
|
930
|
-
|
|
936
|
+
content: '\f938';
|
|
937
|
+
}
|
|
938
|
+
|
|
931
939
|
.fc-line-bars:before {
|
|
932
|
-
content:
|
|
933
|
-
}
|
|
934
|
-
|
|
940
|
+
content: '\f939';
|
|
941
|
+
}
|
|
942
|
+
|
|
935
943
|
.fc-reference:before {
|
|
936
|
-
content:
|
|
937
|
-
}
|
|
938
|
-
|
|
944
|
+
content: '\f940';
|
|
945
|
+
}
|
|
946
|
+
|
|
939
947
|
.fc-powerpoint:before {
|
|
940
|
-
content:
|
|
941
|
-
}
|
|
942
|
-
|
|
948
|
+
content: '\f941';
|
|
949
|
+
}
|
|
950
|
+
|
|
943
951
|
.fc-link-seeq:before {
|
|
944
|
-
content:
|
|
945
|
-
}
|
|
946
|
-
|
|
952
|
+
content: '\f942';
|
|
953
|
+
}
|
|
954
|
+
|
|
947
955
|
.fc-journal-blank:before {
|
|
948
|
-
content:
|
|
949
|
-
}
|
|
950
|
-
|
|
956
|
+
content: '\f943';
|
|
957
|
+
}
|
|
958
|
+
|
|
951
959
|
.fc-more:before {
|
|
952
|
-
content:
|
|
953
|
-
}
|
|
954
|
-
|
|
960
|
+
content: '\f944';
|
|
961
|
+
}
|
|
962
|
+
|
|
955
963
|
.fc-share:before {
|
|
956
|
-
content:
|
|
957
|
-
}
|
|
958
|
-
|
|
964
|
+
content: '\f945';
|
|
965
|
+
}
|
|
966
|
+
|
|
959
967
|
.fc-periodic-condition:before {
|
|
960
|
-
content:
|
|
961
|
-
}
|
|
962
|
-
|
|
968
|
+
content: '\f946';
|
|
969
|
+
}
|
|
970
|
+
|
|
963
971
|
.fc-report:before {
|
|
964
|
-
content:
|
|
965
|
-
}
|
|
966
|
-
|
|
972
|
+
content: '\f947';
|
|
973
|
+
}
|
|
974
|
+
|
|
967
975
|
.fc-seeq-content:before {
|
|
968
|
-
content:
|
|
969
|
-
}
|
|
970
|
-
|
|
976
|
+
content: '\f948';
|
|
977
|
+
}
|
|
978
|
+
|
|
971
979
|
.fc-table:before {
|
|
972
|
-
content:
|
|
973
|
-
}
|
|
974
|
-
|
|
980
|
+
content: '\f949';
|
|
981
|
+
}
|
|
982
|
+
|
|
975
983
|
.fc-unit:before {
|
|
976
|
-
content:
|
|
977
|
-
}
|
|
978
|
-
|
|
984
|
+
content: '\f950';
|
|
985
|
+
}
|
|
986
|
+
|
|
979
987
|
.fc-metric:before {
|
|
980
|
-
content:
|
|
981
|
-
}
|
|
982
|
-
|
|
988
|
+
content: '\f951';
|
|
989
|
+
}
|
|
990
|
+
|
|
983
991
|
.fc-pdf-export:before {
|
|
984
|
-
content:
|
|
985
|
-
}
|
|
986
|
-
|
|
992
|
+
content: '\f952';
|
|
993
|
+
}
|
|
994
|
+
|
|
987
995
|
.fc-x-circle:before {
|
|
988
|
-
content:
|
|
989
|
-
}
|
|
990
|
-
|
|
996
|
+
content: '\f953';
|
|
997
|
+
}
|
|
998
|
+
|
|
991
999
|
.fc-stop:before {
|
|
992
|
-
content:
|
|
993
|
-
}
|
|
994
|
-
|
|
1000
|
+
content: '\f954';
|
|
1001
|
+
}
|
|
1002
|
+
|
|
995
1003
|
.fc-report-lock:before {
|
|
996
|
-
content:
|
|
997
|
-
}
|
|
998
|
-
|
|
1004
|
+
content: '\f955';
|
|
1005
|
+
}
|
|
1006
|
+
|
|
999
1007
|
.fc-analysis:before {
|
|
1000
|
-
content:
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1008
|
+
content: '\f956';
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1003
1011
|
.fc-analysis-lock:before {
|
|
1004
|
-
content:
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1012
|
+
content: '\f957';
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1007
1015
|
.fc-requests:before {
|
|
1008
|
-
content:
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1016
|
+
content: '\f958';
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1011
1019
|
.fc-folder:before {
|
|
1012
|
-
content:
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1020
|
+
content: '\f959';
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1015
1023
|
.fc-folder-move:before {
|
|
1016
|
-
content:
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1024
|
+
content: '\f960';
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1019
1027
|
.fc-folder-new:before {
|
|
1020
|
-
content:
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1028
|
+
content: '\f961';
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1023
1031
|
.fc-folder-lock:before {
|
|
1024
|
-
content:
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1032
|
+
content: '\f962';
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1027
1035
|
.fc-pin-o:before {
|
|
1028
|
-
content:
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1036
|
+
content: '\f963';
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1031
1039
|
.fc-refresh:before {
|
|
1032
|
-
content:
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1040
|
+
content: '\f964';
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1035
1043
|
.fc-arrow-right-right:before {
|
|
1036
|
-
content:
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1044
|
+
content: '\f965';
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1039
1047
|
.fc-arrow-left-left:before {
|
|
1040
|
-
content:
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1048
|
+
content: '\f966';
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1043
1051
|
.fc-refresh-on:before {
|
|
1044
|
-
content:
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1052
|
+
content: '\f967';
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1047
1055
|
.fc-refresh-off:before {
|
|
1048
|
-
content:
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1056
|
+
content: '\f968';
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1051
1059
|
.fc-box-plus:before {
|
|
1052
|
-
content:
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1060
|
+
content: '\f969';
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1055
1063
|
.fc-box-minus:before {
|
|
1056
|
-
content:
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1064
|
+
content: '\f970';
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1059
1067
|
.fc-circle_plus:before {
|
|
1060
|
-
content:
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1068
|
+
content: '\f971';
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1063
1071
|
.fc-circle_minus:before {
|
|
1064
|
-
content:
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1072
|
+
content: '\f972';
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1067
1075
|
.fc-page-break:before {
|
|
1068
|
-
content:
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1076
|
+
content: '\f973';
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1071
1079
|
.fc-restore:before {
|
|
1072
|
-
content:
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1080
|
+
content: '\f974';
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1075
1083
|
.fc-subscription:before {
|
|
1076
|
-
content:
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1084
|
+
content: '\f975';
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1079
1087
|
.fc-jobs:before {
|
|
1080
|
-
content:
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1088
|
+
content: '\f976';
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1083
1091
|
.fc-trash_info:before {
|
|
1084
|
-
content:
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1092
|
+
content: '\f977';
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1087
1095
|
.fc-trash_info2:before {
|
|
1088
|
-
content:
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1096
|
+
content: '\f978';
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1091
1099
|
.fc-bell-curve:before {
|
|
1092
|
-
content:
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
/* ! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com */
|
|
1096
|
-
|
|
1100
|
+
content: '\f979';
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
/* ! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com */
|
|
1104
|
+
|
|
1097
1105
|
/*
|
|
1098
1106
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
1099
1107
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
1100
|
-
*/
|
|
1101
|
-
|
|
1108
|
+
*/
|
|
1109
|
+
|
|
1102
1110
|
*,
|
|
1103
1111
|
::before,
|
|
1104
1112
|
::after {
|
|
@@ -1106,21 +1114,21 @@
|
|
|
1106
1114
|
border-width: 0; /* 2 */
|
|
1107
1115
|
border-style: solid; /* 2 */
|
|
1108
1116
|
border-color: #e5e7eb; /* 2 */
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1111
1119
|
::before,
|
|
1112
1120
|
::after {
|
|
1113
1121
|
--tw-content: '';
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1116
1124
|
/*
|
|
1117
1125
|
1. Use a consistent sensible line-height in all browsers.
|
|
1118
1126
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
1119
1127
|
3. Use a more readable tab size.
|
|
1120
1128
|
4. Use the user's configured `sans` font-family by default.
|
|
1121
1129
|
5. Use the user's configured `sans` font-feature-settings by default.
|
|
1122
|
-
*/
|
|
1123
|
-
|
|
1130
|
+
*/
|
|
1131
|
+
|
|
1124
1132
|
html {
|
|
1125
1133
|
line-height: 1.5; /* 1 */
|
|
1126
1134
|
-webkit-text-size-adjust: 100%; /* 2 */
|
|
@@ -1129,43 +1137,43 @@ html {
|
|
|
1129
1137
|
tab-size: 4; /* 3 */
|
|
1130
1138
|
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
|
|
1131
1139
|
font-feature-settings: normal; /* 5 */
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1134
1142
|
/*
|
|
1135
1143
|
1. Remove the margin in all browsers.
|
|
1136
1144
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
1137
|
-
*/
|
|
1138
|
-
|
|
1145
|
+
*/
|
|
1146
|
+
|
|
1139
1147
|
body {
|
|
1140
1148
|
margin: 0; /* 1 */
|
|
1141
1149
|
line-height: inherit; /* 2 */
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1144
1152
|
/*
|
|
1145
1153
|
1. Add the correct height in Firefox.
|
|
1146
1154
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
1147
1155
|
3. Ensure horizontal rules are visible by default.
|
|
1148
|
-
*/
|
|
1149
|
-
|
|
1156
|
+
*/
|
|
1157
|
+
|
|
1150
1158
|
hr {
|
|
1151
1159
|
height: 0; /* 1 */
|
|
1152
1160
|
color: inherit; /* 2 */
|
|
1153
1161
|
border-top-width: 1px; /* 3 */
|
|
1154
|
-
}
|
|
1155
|
-
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1156
1164
|
/*
|
|
1157
1165
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
1158
|
-
*/
|
|
1159
|
-
|
|
1166
|
+
*/
|
|
1167
|
+
|
|
1160
1168
|
abbr:where([title]) {
|
|
1161
1169
|
-webkit-text-decoration: underline dotted;
|
|
1162
1170
|
text-decoration: underline dotted;
|
|
1163
|
-
}
|
|
1164
|
-
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1165
1173
|
/*
|
|
1166
1174
|
Remove the default font size and weight for headings.
|
|
1167
|
-
*/
|
|
1168
|
-
|
|
1175
|
+
*/
|
|
1176
|
+
|
|
1169
1177
|
h1,
|
|
1170
1178
|
h2,
|
|
1171
1179
|
h3,
|
|
@@ -1174,85 +1182,85 @@ h5,
|
|
|
1174
1182
|
h6 {
|
|
1175
1183
|
font-size: inherit;
|
|
1176
1184
|
font-weight: inherit;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1179
1187
|
/*
|
|
1180
1188
|
Reset links to optimize for opt-in styling instead of opt-out.
|
|
1181
|
-
*/
|
|
1182
|
-
|
|
1189
|
+
*/
|
|
1190
|
+
|
|
1183
1191
|
a {
|
|
1184
1192
|
color: inherit;
|
|
1185
1193
|
text-decoration: inherit;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1188
1196
|
/*
|
|
1189
1197
|
Add the correct font weight in Edge and Safari.
|
|
1190
|
-
*/
|
|
1191
|
-
|
|
1198
|
+
*/
|
|
1199
|
+
|
|
1192
1200
|
b,
|
|
1193
1201
|
strong {
|
|
1194
1202
|
font-weight: bolder;
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1197
1205
|
/*
|
|
1198
1206
|
1. Use the user's configured `mono` font family by default.
|
|
1199
1207
|
2. Correct the odd `em` font sizing in all browsers.
|
|
1200
|
-
*/
|
|
1201
|
-
|
|
1208
|
+
*/
|
|
1209
|
+
|
|
1202
1210
|
code,
|
|
1203
1211
|
kbd,
|
|
1204
1212
|
samp,
|
|
1205
1213
|
pre {
|
|
1206
1214
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
1207
1215
|
font-size: 1em; /* 2 */
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1210
1218
|
/*
|
|
1211
1219
|
Add the correct font size in all browsers.
|
|
1212
|
-
*/
|
|
1213
|
-
|
|
1220
|
+
*/
|
|
1221
|
+
|
|
1214
1222
|
small {
|
|
1215
1223
|
font-size: 80%;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1218
1226
|
/*
|
|
1219
1227
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
1220
|
-
*/
|
|
1221
|
-
|
|
1228
|
+
*/
|
|
1229
|
+
|
|
1222
1230
|
sub,
|
|
1223
1231
|
sup {
|
|
1224
1232
|
font-size: 75%;
|
|
1225
1233
|
line-height: 0;
|
|
1226
1234
|
position: relative;
|
|
1227
1235
|
vertical-align: baseline;
|
|
1228
|
-
}
|
|
1229
|
-
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1230
1238
|
sub {
|
|
1231
1239
|
bottom: -0.25em;
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1234
1242
|
sup {
|
|
1235
1243
|
top: -0.5em;
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1238
1246
|
/*
|
|
1239
1247
|
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
1240
1248
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
1241
1249
|
3. Remove gaps between table borders by default.
|
|
1242
|
-
*/
|
|
1243
|
-
|
|
1250
|
+
*/
|
|
1251
|
+
|
|
1244
1252
|
table {
|
|
1245
1253
|
text-indent: 0; /* 1 */
|
|
1246
1254
|
border-color: inherit; /* 2 */
|
|
1247
1255
|
border-collapse: collapse; /* 3 */
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1250
1258
|
/*
|
|
1251
1259
|
1. Change the font styles in all browsers.
|
|
1252
1260
|
2. Remove the margin in Firefox and Safari.
|
|
1253
1261
|
3. Remove default padding in all browsers.
|
|
1254
|
-
*/
|
|
1255
|
-
|
|
1262
|
+
*/
|
|
1263
|
+
|
|
1256
1264
|
button,
|
|
1257
1265
|
input,
|
|
1258
1266
|
optgroup,
|
|
@@ -1265,22 +1273,22 @@ textarea {
|
|
|
1265
1273
|
color: inherit; /* 1 */
|
|
1266
1274
|
margin: 0; /* 2 */
|
|
1267
1275
|
padding: 0; /* 3 */
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1270
1278
|
/*
|
|
1271
1279
|
Remove the inheritance of text transform in Edge and Firefox.
|
|
1272
|
-
*/
|
|
1273
|
-
|
|
1280
|
+
*/
|
|
1281
|
+
|
|
1274
1282
|
button,
|
|
1275
1283
|
select {
|
|
1276
1284
|
text-transform: none;
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1279
1287
|
/*
|
|
1280
1288
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
1281
1289
|
2. Remove default button styles.
|
|
1282
|
-
*/
|
|
1283
|
-
|
|
1290
|
+
*/
|
|
1291
|
+
|
|
1284
1292
|
button,
|
|
1285
1293
|
[type='button'],
|
|
1286
1294
|
[type='reset'],
|
|
@@ -1288,81 +1296,81 @@ button,
|
|
|
1288
1296
|
-webkit-appearance: button; /* 1 */
|
|
1289
1297
|
background-color: transparent; /* 2 */
|
|
1290
1298
|
background-image: none; /* 2 */
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1293
1301
|
/*
|
|
1294
1302
|
Use the modern Firefox focus style for all focusable elements.
|
|
1295
|
-
*/
|
|
1296
|
-
|
|
1303
|
+
*/
|
|
1304
|
+
|
|
1297
1305
|
:-moz-focusring {
|
|
1298
1306
|
outline: auto;
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1301
1309
|
/*
|
|
1302
1310
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
1303
|
-
*/
|
|
1304
|
-
|
|
1311
|
+
*/
|
|
1312
|
+
|
|
1305
1313
|
:-moz-ui-invalid {
|
|
1306
1314
|
box-shadow: none;
|
|
1307
|
-
}
|
|
1308
|
-
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1309
1317
|
/*
|
|
1310
1318
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
1311
|
-
*/
|
|
1312
|
-
|
|
1319
|
+
*/
|
|
1320
|
+
|
|
1313
1321
|
progress {
|
|
1314
1322
|
vertical-align: baseline;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1317
1325
|
/*
|
|
1318
1326
|
Correct the cursor style of increment and decrement buttons in Safari.
|
|
1319
|
-
*/
|
|
1320
|
-
|
|
1327
|
+
*/
|
|
1328
|
+
|
|
1321
1329
|
::-webkit-inner-spin-button,
|
|
1322
1330
|
::-webkit-outer-spin-button {
|
|
1323
1331
|
height: auto;
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1326
1334
|
/*
|
|
1327
1335
|
1. Correct the odd appearance in Chrome and Safari.
|
|
1328
1336
|
2. Correct the outline style in Safari.
|
|
1329
|
-
*/
|
|
1330
|
-
|
|
1337
|
+
*/
|
|
1338
|
+
|
|
1331
1339
|
[type='search'] {
|
|
1332
1340
|
-webkit-appearance: textfield; /* 1 */
|
|
1333
1341
|
outline-offset: -2px; /* 2 */
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1336
1344
|
/*
|
|
1337
1345
|
Remove the inner padding in Chrome and Safari on macOS.
|
|
1338
|
-
*/
|
|
1339
|
-
|
|
1346
|
+
*/
|
|
1347
|
+
|
|
1340
1348
|
::-webkit-search-decoration {
|
|
1341
1349
|
-webkit-appearance: none;
|
|
1342
|
-
}
|
|
1343
|
-
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1344
1352
|
/*
|
|
1345
1353
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
1346
1354
|
2. Change font properties to `inherit` in Safari.
|
|
1347
|
-
*/
|
|
1348
|
-
|
|
1355
|
+
*/
|
|
1356
|
+
|
|
1349
1357
|
::-webkit-file-upload-button {
|
|
1350
1358
|
-webkit-appearance: button; /* 1 */
|
|
1351
1359
|
font: inherit; /* 2 */
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1354
1362
|
/*
|
|
1355
1363
|
Add the correct display in Chrome and Safari.
|
|
1356
|
-
*/
|
|
1357
|
-
|
|
1364
|
+
*/
|
|
1365
|
+
|
|
1358
1366
|
summary {
|
|
1359
1367
|
display: list-item;
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1362
1370
|
/*
|
|
1363
1371
|
Removes the default spacing and border for appropriate elements.
|
|
1364
|
-
*/
|
|
1365
|
-
|
|
1372
|
+
*/
|
|
1373
|
+
|
|
1366
1374
|
blockquote,
|
|
1367
1375
|
dl,
|
|
1368
1376
|
dd,
|
|
@@ -1377,72 +1385,72 @@ figure,
|
|
|
1377
1385
|
p,
|
|
1378
1386
|
pre {
|
|
1379
1387
|
margin: 0;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1382
1390
|
fieldset {
|
|
1383
1391
|
margin: 0;
|
|
1384
1392
|
padding: 0;
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1387
1395
|
legend {
|
|
1388
1396
|
padding: 0;
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1391
1399
|
ol,
|
|
1392
1400
|
ul,
|
|
1393
1401
|
menu {
|
|
1394
1402
|
list-style: none;
|
|
1395
1403
|
margin: 0;
|
|
1396
1404
|
padding: 0;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1399
1407
|
/*
|
|
1400
1408
|
Prevent resizing textareas horizontally by default.
|
|
1401
|
-
*/
|
|
1402
|
-
|
|
1409
|
+
*/
|
|
1410
|
+
|
|
1403
1411
|
textarea {
|
|
1404
1412
|
resize: vertical;
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1407
1415
|
/*
|
|
1408
1416
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
1409
1417
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
1410
|
-
*/
|
|
1411
|
-
|
|
1418
|
+
*/
|
|
1419
|
+
|
|
1412
1420
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
1413
1421
|
opacity: 1; /* 1 */
|
|
1414
1422
|
color: #9ca3af; /* 2 */
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1417
1425
|
input::placeholder,
|
|
1418
1426
|
textarea::placeholder {
|
|
1419
1427
|
opacity: 1; /* 1 */
|
|
1420
1428
|
color: #9ca3af; /* 2 */
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1423
1431
|
/*
|
|
1424
1432
|
Set the default cursor for buttons.
|
|
1425
|
-
*/
|
|
1426
|
-
|
|
1433
|
+
*/
|
|
1434
|
+
|
|
1427
1435
|
button,
|
|
1428
1436
|
[role="button"] {
|
|
1429
1437
|
cursor: pointer;
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1432
1440
|
/*
|
|
1433
1441
|
Make sure disabled buttons don't get the pointer cursor.
|
|
1434
|
-
*/
|
|
1435
|
-
|
|
1442
|
+
*/
|
|
1443
|
+
|
|
1436
1444
|
:disabled {
|
|
1437
1445
|
cursor: default;
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1440
1448
|
/*
|
|
1441
1449
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
1442
1450
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
1443
1451
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
1444
|
-
*/
|
|
1445
|
-
|
|
1452
|
+
*/
|
|
1453
|
+
|
|
1446
1454
|
img,
|
|
1447
1455
|
svg,
|
|
1448
1456
|
video,
|
|
@@ -1453,1199 +1461,1255 @@ embed,
|
|
|
1453
1461
|
object {
|
|
1454
1462
|
display: block; /* 1 */
|
|
1455
1463
|
vertical-align: middle; /* 2 */
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1458
1466
|
/*
|
|
1459
1467
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
1460
|
-
*/
|
|
1461
|
-
|
|
1468
|
+
*/
|
|
1469
|
+
|
|
1462
1470
|
img,
|
|
1463
1471
|
video {
|
|
1464
1472
|
max-width: 100%;
|
|
1465
1473
|
height: auto;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
1469
|
-
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
1477
|
+
|
|
1470
1478
|
[hidden] {
|
|
1471
1479
|
display: none;
|
|
1472
|
-
}
|
|
1473
|
-
|
|
1474
|
-
:root {
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
.color_topic {
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
.color_analysis {
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
.color_datalab {
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
--tw-
|
|
1553
|
-
--tw-
|
|
1554
|
-
--tw-
|
|
1555
|
-
--tw-
|
|
1556
|
-
--tw-
|
|
1557
|
-
--tw-
|
|
1558
|
-
--tw-
|
|
1559
|
-
--tw-
|
|
1560
|
-
--tw-
|
|
1561
|
-
--tw-
|
|
1562
|
-
--tw-
|
|
1563
|
-
--tw-
|
|
1564
|
-
--tw-
|
|
1565
|
-
--tw-
|
|
1566
|
-
--tw-
|
|
1567
|
-
--tw-
|
|
1568
|
-
--tw-
|
|
1569
|
-
--tw-
|
|
1570
|
-
--tw-ring-
|
|
1571
|
-
--tw-ring-
|
|
1572
|
-
--tw-
|
|
1573
|
-
--tw-
|
|
1574
|
-
--tw-
|
|
1575
|
-
--tw-
|
|
1576
|
-
--tw-
|
|
1577
|
-
--tw-
|
|
1578
|
-
--tw-
|
|
1579
|
-
--tw-
|
|
1580
|
-
--tw-
|
|
1581
|
-
--tw-
|
|
1582
|
-
--tw-
|
|
1583
|
-
--tw-
|
|
1584
|
-
--tw-
|
|
1585
|
-
--tw-
|
|
1586
|
-
--tw-
|
|
1587
|
-
--tw-backdrop-
|
|
1588
|
-
--tw-backdrop-
|
|
1589
|
-
--tw-backdrop-
|
|
1590
|
-
--tw-backdrop-
|
|
1591
|
-
--tw-backdrop-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
--tw-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
--tw-
|
|
1600
|
-
--tw-
|
|
1601
|
-
--tw-
|
|
1602
|
-
--tw-
|
|
1603
|
-
--tw-
|
|
1604
|
-
--tw-
|
|
1605
|
-
--tw-
|
|
1606
|
-
--tw-
|
|
1607
|
-
--tw-
|
|
1608
|
-
--tw-
|
|
1609
|
-
--tw-
|
|
1610
|
-
--tw-
|
|
1611
|
-
--tw-
|
|
1612
|
-
--tw-
|
|
1613
|
-
--tw-
|
|
1614
|
-
--tw-
|
|
1615
|
-
--tw-
|
|
1616
|
-
--tw-
|
|
1617
|
-
--tw-ring-
|
|
1618
|
-
--tw-ring-
|
|
1619
|
-
--tw-
|
|
1620
|
-
--tw-
|
|
1621
|
-
--tw-
|
|
1622
|
-
--tw-
|
|
1623
|
-
--tw-
|
|
1624
|
-
--tw-
|
|
1625
|
-
--tw-
|
|
1626
|
-
--tw-
|
|
1627
|
-
--tw-
|
|
1628
|
-
--tw-
|
|
1629
|
-
--tw-
|
|
1630
|
-
--tw-
|
|
1631
|
-
--tw-
|
|
1632
|
-
--tw-
|
|
1633
|
-
--tw-
|
|
1634
|
-
--tw-backdrop-
|
|
1635
|
-
--tw-backdrop-
|
|
1636
|
-
--tw-backdrop-
|
|
1637
|
-
--tw-backdrop-
|
|
1638
|
-
--tw-backdrop-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
-webkit-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
}
|
|
1667
|
-
|
|
1668
|
-
.tw-form-
|
|
1669
|
-
border-radius:
|
|
1670
|
-
}
|
|
1671
|
-
|
|
1672
|
-
.tw-form-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
--tw-ring-
|
|
1680
|
-
--tw-ring-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
background-
|
|
1694
|
-
}
|
|
1695
|
-
|
|
1696
|
-
.tw-form-
|
|
1697
|
-
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
.tw-form-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
background-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
background-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
}
|
|
1722
|
-
|
|
1723
|
-
.tw-
|
|
1724
|
-
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
.tw-
|
|
1728
|
-
visibility:
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.tw-
|
|
1732
|
-
|
|
1733
|
-
}
|
|
1734
|
-
|
|
1735
|
-
.tw-
|
|
1736
|
-
position:
|
|
1737
|
-
}
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
.-tw-
|
|
1744
|
-
|
|
1745
|
-
}
|
|
1746
|
-
|
|
1747
|
-
.-tw-
|
|
1748
|
-
|
|
1749
|
-
}
|
|
1750
|
-
|
|
1751
|
-
.-tw-
|
|
1752
|
-
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
}
|
|
1758
|
-
|
|
1759
|
-
.tw-
|
|
1760
|
-
|
|
1761
|
-
}
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
}
|
|
1766
|
-
|
|
1767
|
-
.\!tw-z-\[
|
|
1768
|
-
z-index:
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
z-index:
|
|
1773
|
-
}
|
|
1774
|
-
|
|
1775
|
-
.tw-z
|
|
1776
|
-
z-index:
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
.tw-
|
|
1780
|
-
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
.tw-m-0
|
|
1784
|
-
margin:
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
|
-
.tw-m-5 {
|
|
1788
|
-
margin:
|
|
1789
|
-
}
|
|
1790
|
-
|
|
1791
|
-
.tw-
|
|
1792
|
-
margin
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
.tw-ml-1
|
|
1796
|
-
margin-left: 0.
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
|
-
.tw-
|
|
1800
|
-
margin-
|
|
1801
|
-
}
|
|
1802
|
-
|
|
1803
|
-
.tw-
|
|
1804
|
-
|
|
1805
|
-
}
|
|
1806
|
-
|
|
1807
|
-
.tw-
|
|
1808
|
-
display:
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
.tw-
|
|
1812
|
-
display:
|
|
1813
|
-
}
|
|
1814
|
-
|
|
1815
|
-
.tw-
|
|
1816
|
-
display:
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
.tw-
|
|
1820
|
-
|
|
1821
|
-
}
|
|
1822
|
-
|
|
1823
|
-
.tw-h-3
|
|
1824
|
-
height: 0.
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
.tw-h
|
|
1828
|
-
height:
|
|
1829
|
-
}
|
|
1830
|
-
|
|
1831
|
-
.tw-h
|
|
1832
|
-
height:
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
.tw-
|
|
1836
|
-
|
|
1837
|
-
}
|
|
1838
|
-
|
|
1839
|
-
.tw-w-3
|
|
1840
|
-
width: 0.
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
|
-
.tw-w
|
|
1844
|
-
width:
|
|
1845
|
-
}
|
|
1846
|
-
|
|
1847
|
-
.tw-w-\[
|
|
1848
|
-
width:
|
|
1849
|
-
}
|
|
1850
|
-
|
|
1851
|
-
.tw-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
--tw-translate-x
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
--tw-translate-y
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
--tw-translate-y
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
--tw-translate-x
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
--tw-translate-y
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
--tw-rotate
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
}
|
|
1894
|
-
|
|
1895
|
-
.tw-cursor-
|
|
1896
|
-
cursor:
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
|
-
.tw-
|
|
1900
|
-
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
.tw-grid-cols-
|
|
1904
|
-
grid-template-columns: repeat(
|
|
1905
|
-
}
|
|
1906
|
-
|
|
1907
|
-
.tw-grid-cols-
|
|
1908
|
-
grid-template-columns: repeat(
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
|
-
.tw-
|
|
1912
|
-
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
.tw-
|
|
1916
|
-
|
|
1917
|
-
}
|
|
1918
|
-
|
|
1919
|
-
.tw-
|
|
1920
|
-
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
.tw-
|
|
1924
|
-
|
|
1925
|
-
}
|
|
1926
|
-
|
|
1927
|
-
.tw-
|
|
1928
|
-
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
.tw-
|
|
1932
|
-
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
.tw-rounded
|
|
1936
|
-
border-radius:
|
|
1937
|
-
}
|
|
1938
|
-
|
|
1939
|
-
.tw-rounded-
|
|
1940
|
-
border-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
border-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
border-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
border-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
border-top-
|
|
1961
|
-
}
|
|
1962
|
-
|
|
1963
|
-
.tw-rounded-
|
|
1964
|
-
border-top-
|
|
1965
|
-
}
|
|
1966
|
-
|
|
1967
|
-
.tw-
|
|
1968
|
-
border-
|
|
1969
|
-
}
|
|
1970
|
-
|
|
1971
|
-
.tw-border
|
|
1972
|
-
border-
|
|
1973
|
-
}
|
|
1974
|
-
|
|
1975
|
-
.tw-border-
|
|
1976
|
-
border-
|
|
1977
|
-
}
|
|
1978
|
-
|
|
1979
|
-
.tw-border-
|
|
1980
|
-
border-
|
|
1981
|
-
}
|
|
1982
|
-
|
|
1983
|
-
.tw-border-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
--
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
--
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
--
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
--tw-bg-opacity
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
--
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
--
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
--
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
--
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
--
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
--
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
.tw-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
padding
|
|
2077
|
-
}
|
|
2078
|
-
|
|
2079
|
-
.tw-
|
|
2080
|
-
padding
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
padding-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
padding-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
padding-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
padding-
|
|
2101
|
-
}
|
|
2102
|
-
|
|
2103
|
-
.tw-
|
|
2104
|
-
padding-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
}
|
|
2133
|
-
|
|
2134
|
-
.tw-
|
|
2135
|
-
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
|
-
.tw-text-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
}
|
|
2142
|
-
|
|
2143
|
-
.tw-text-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
.tw-text-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
.tw-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
--tw-text-opacity
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
--
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
--
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
--
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
--
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
--
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
--
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
--
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
--
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
--
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
}
|
|
2211
|
-
|
|
2212
|
-
.tw-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
}
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
.
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
.
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
--tw-
|
|
2288
|
-
|
|
2289
|
-
}
|
|
2290
|
-
|
|
2291
|
-
.before
|
|
2292
|
-
content: var(--tw-content);
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
--tw-border-opacity
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
--tw-border-opacity
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
--tw-
|
|
2354
|
-
|
|
2355
|
-
}
|
|
2356
|
-
|
|
2357
|
-
.
|
|
2358
|
-
--tw-
|
|
2359
|
-
color:
|
|
2360
|
-
}
|
|
2361
|
-
|
|
2362
|
-
.
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
--tw-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
}
|
|
2480
|
-
|
|
2481
|
-
.
|
|
2482
|
-
|
|
2483
|
-
}
|
|
2484
|
-
|
|
2485
|
-
.
|
|
2486
|
-
|
|
2487
|
-
}
|
|
2488
|
-
|
|
2489
|
-
.tw-
|
|
2490
|
-
opacity: 1;
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
|
-
.
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
--
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
border-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
border-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
:root {
|
|
1483
|
+
--sq-color-dark: 42, 92, 132;
|
|
1484
|
+
--sq-color-dark-dark: 145, 180, 203;
|
|
1485
|
+
--sq-white: 255, 255, 255;
|
|
1486
|
+
--sq-color-highlight: 4, 145, 194;
|
|
1487
|
+
--sq-text-color: 58, 58, 58;
|
|
1488
|
+
--sq-disabled-gray: 221, 225, 227;
|
|
1489
|
+
--sq-light-gray: 241, 245, 247;
|
|
1490
|
+
--sq-dark-gray: 226, 226, 226;
|
|
1491
|
+
--sq-fairly-dark-gray: 96, 96, 97;
|
|
1492
|
+
--sq-darkish-gray: 183, 183, 183;
|
|
1493
|
+
--sq-danger-color: 217, 83, 79;
|
|
1494
|
+
--sq-warning-color: 240, 173, 78;
|
|
1495
|
+
--sq-success-color: 114, 192, 44;
|
|
1496
|
+
--sq-icon: 4, 145, 194;
|
|
1497
|
+
--sq-link: 42, 92, 132;
|
|
1498
|
+
--sq-dark-background: 36, 37, 37;
|
|
1499
|
+
--sq-dark-text: 194, 188, 176;
|
|
1500
|
+
--sq-dark-disabled-gray: 70, 73, 73;
|
|
1501
|
+
--sq-highlight-color-dark: 36, 45, 49;
|
|
1502
|
+
--sq-gray-highlight: 249, 249, 249;
|
|
1503
|
+
--sq-gray-highlight-dark: 36, 45, 49;
|
|
1504
|
+
--sq-colored-hover: 238, 246, 253;
|
|
1505
|
+
--sq-colored-hover-dark: 40, 42, 42;
|
|
1506
|
+
--sq-multi-gray-dark: 66, 69, 69;
|
|
1507
|
+
--sq-field-disabled-gray: 239, 239, 239;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
.color_topic {
|
|
1511
|
+
--sq-color-dark: 42, 92, 132;
|
|
1512
|
+
--sq-color-dark-dark: 145, 180, 203;
|
|
1513
|
+
--sq-color-light: 237, 247, 246;
|
|
1514
|
+
--sq-color-highlight: 4, 145, 194;
|
|
1515
|
+
--sq-icon: 4, 145, 194;
|
|
1516
|
+
--sq-link: 42, 92, 132;
|
|
1517
|
+
--sq-link-dark: 145, 180, 203;
|
|
1518
|
+
--sq-icon-dark: 4, 145, 194;
|
|
1519
|
+
--sq-gray-highlight-dark: 36, 45, 49;
|
|
1520
|
+
--sq-colored-hover: 238, 246, 253;
|
|
1521
|
+
--sq-colored-hover-dark: 40, 42, 42;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.color_analysis {
|
|
1525
|
+
--sq-color-dark: 0, 121, 96;
|
|
1526
|
+
--sq-color-dark-dark: 31, 207, 166;
|
|
1527
|
+
--sq-color-light: 237, 247, 246;
|
|
1528
|
+
--sq-color-highlight: 0, 153, 100;
|
|
1529
|
+
--sq-icon: 0, 160, 89;
|
|
1530
|
+
--sq-link: 0, 121, 96;
|
|
1531
|
+
--sq-link-dark: 21, 99, 81;
|
|
1532
|
+
--sq-icon-dark: 23, 126, 77;
|
|
1533
|
+
--sq-gray-highlight-dark: 36, 45, 49;
|
|
1534
|
+
--sq-colored-hover: 238, 248, 244;
|
|
1535
|
+
--sq-colored-hover-dark: 33, 54, 47;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
.color_datalab {
|
|
1539
|
+
--sq-color-dark: 242, 103, 34;
|
|
1540
|
+
--sq-color-dark-dark: 242, 103, 34;
|
|
1541
|
+
--sq-color-light: 237, 247, 246;
|
|
1542
|
+
--sq-color-highlight: 244, 123, 62;
|
|
1543
|
+
--sq-icon: 242, 103, 34;
|
|
1544
|
+
--sq-icon-dark: 36, 37, 37;
|
|
1545
|
+
--sq-link-dark: 36, 37, 37;
|
|
1546
|
+
--sq-link: 242, 103, 34;
|
|
1547
|
+
--sq-gray-highlight-dark: 36, 45, 49;
|
|
1548
|
+
--sq-colored-hover: 241, 162, 120;
|
|
1549
|
+
--sq-colored-hover-dark: 80, 43, 26;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
ol,
|
|
1553
|
+
ul,
|
|
1554
|
+
menu {
|
|
1555
|
+
list-style: revert;
|
|
1556
|
+
padding: revert;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
*, ::before, ::after {
|
|
1560
|
+
--tw-border-spacing-x: 0;
|
|
1561
|
+
--tw-border-spacing-y: 0;
|
|
1562
|
+
--tw-translate-x: 0;
|
|
1563
|
+
--tw-translate-y: 0;
|
|
1564
|
+
--tw-rotate: 0;
|
|
1565
|
+
--tw-skew-x: 0;
|
|
1566
|
+
--tw-skew-y: 0;
|
|
1567
|
+
--tw-scale-x: 1;
|
|
1568
|
+
--tw-scale-y: 1;
|
|
1569
|
+
--tw-pan-x: ;
|
|
1570
|
+
--tw-pan-y: ;
|
|
1571
|
+
--tw-pinch-zoom: ;
|
|
1572
|
+
--tw-scroll-snap-strictness: proximity;
|
|
1573
|
+
--tw-ordinal: ;
|
|
1574
|
+
--tw-slashed-zero: ;
|
|
1575
|
+
--tw-numeric-figure: ;
|
|
1576
|
+
--tw-numeric-spacing: ;
|
|
1577
|
+
--tw-numeric-fraction: ;
|
|
1578
|
+
--tw-ring-inset: ;
|
|
1579
|
+
--tw-ring-offset-width: 0px;
|
|
1580
|
+
--tw-ring-offset-color: #fff;
|
|
1581
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
1582
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1583
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1584
|
+
--tw-shadow: 0 0 #0000;
|
|
1585
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1586
|
+
--tw-blur: ;
|
|
1587
|
+
--tw-brightness: ;
|
|
1588
|
+
--tw-contrast: ;
|
|
1589
|
+
--tw-grayscale: ;
|
|
1590
|
+
--tw-hue-rotate: ;
|
|
1591
|
+
--tw-invert: ;
|
|
1592
|
+
--tw-saturate: ;
|
|
1593
|
+
--tw-sepia: ;
|
|
1594
|
+
--tw-drop-shadow: ;
|
|
1595
|
+
--tw-backdrop-blur: ;
|
|
1596
|
+
--tw-backdrop-brightness: ;
|
|
1597
|
+
--tw-backdrop-contrast: ;
|
|
1598
|
+
--tw-backdrop-grayscale: ;
|
|
1599
|
+
--tw-backdrop-hue-rotate: ;
|
|
1600
|
+
--tw-backdrop-invert: ;
|
|
1601
|
+
--tw-backdrop-opacity: ;
|
|
1602
|
+
--tw-backdrop-saturate: ;
|
|
1603
|
+
--tw-backdrop-sepia: ;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
::backdrop {
|
|
1607
|
+
--tw-border-spacing-x: 0;
|
|
1608
|
+
--tw-border-spacing-y: 0;
|
|
1609
|
+
--tw-translate-x: 0;
|
|
1610
|
+
--tw-translate-y: 0;
|
|
1611
|
+
--tw-rotate: 0;
|
|
1612
|
+
--tw-skew-x: 0;
|
|
1613
|
+
--tw-skew-y: 0;
|
|
1614
|
+
--tw-scale-x: 1;
|
|
1615
|
+
--tw-scale-y: 1;
|
|
1616
|
+
--tw-pan-x: ;
|
|
1617
|
+
--tw-pan-y: ;
|
|
1618
|
+
--tw-pinch-zoom: ;
|
|
1619
|
+
--tw-scroll-snap-strictness: proximity;
|
|
1620
|
+
--tw-ordinal: ;
|
|
1621
|
+
--tw-slashed-zero: ;
|
|
1622
|
+
--tw-numeric-figure: ;
|
|
1623
|
+
--tw-numeric-spacing: ;
|
|
1624
|
+
--tw-numeric-fraction: ;
|
|
1625
|
+
--tw-ring-inset: ;
|
|
1626
|
+
--tw-ring-offset-width: 0px;
|
|
1627
|
+
--tw-ring-offset-color: #fff;
|
|
1628
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
1629
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1630
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1631
|
+
--tw-shadow: 0 0 #0000;
|
|
1632
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1633
|
+
--tw-blur: ;
|
|
1634
|
+
--tw-brightness: ;
|
|
1635
|
+
--tw-contrast: ;
|
|
1636
|
+
--tw-grayscale: ;
|
|
1637
|
+
--tw-hue-rotate: ;
|
|
1638
|
+
--tw-invert: ;
|
|
1639
|
+
--tw-saturate: ;
|
|
1640
|
+
--tw-sepia: ;
|
|
1641
|
+
--tw-drop-shadow: ;
|
|
1642
|
+
--tw-backdrop-blur: ;
|
|
1643
|
+
--tw-backdrop-brightness: ;
|
|
1644
|
+
--tw-backdrop-contrast: ;
|
|
1645
|
+
--tw-backdrop-grayscale: ;
|
|
1646
|
+
--tw-backdrop-hue-rotate: ;
|
|
1647
|
+
--tw-backdrop-invert: ;
|
|
1648
|
+
--tw-backdrop-opacity: ;
|
|
1649
|
+
--tw-backdrop-saturate: ;
|
|
1650
|
+
--tw-backdrop-sepia: ;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.tw-form-checkbox,.tw-form-radio {
|
|
1654
|
+
-webkit-appearance: none;
|
|
1655
|
+
-moz-appearance: none;
|
|
1656
|
+
appearance: none;
|
|
1657
|
+
padding: 0;
|
|
1658
|
+
-webkit-print-color-adjust: exact;
|
|
1659
|
+
print-color-adjust: exact;
|
|
1660
|
+
display: inline-block;
|
|
1661
|
+
vertical-align: middle;
|
|
1662
|
+
background-origin: border-box;
|
|
1663
|
+
-webkit-user-select: none;
|
|
1664
|
+
-moz-user-select: none;
|
|
1665
|
+
user-select: none;
|
|
1666
|
+
flex-shrink: 0;
|
|
1667
|
+
height: 1rem;
|
|
1668
|
+
width: 1rem;
|
|
1669
|
+
color: #2563eb;
|
|
1670
|
+
background-color: #fff;
|
|
1671
|
+
border-color: #6b7280;
|
|
1672
|
+
border-width: 1px;
|
|
1673
|
+
--tw-shadow: 0 0 #0000;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.tw-form-checkbox {
|
|
1677
|
+
border-radius: 0px;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.tw-form-radio {
|
|
1681
|
+
border-radius: 100%;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.tw-form-checkbox:focus,.tw-form-radio:focus {
|
|
1685
|
+
outline: 2px solid transparent;
|
|
1686
|
+
outline-offset: 2px;
|
|
1687
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
1688
|
+
--tw-ring-offset-width: 2px;
|
|
1689
|
+
--tw-ring-offset-color: #fff;
|
|
1690
|
+
--tw-ring-color: #2563eb;
|
|
1691
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1692
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1693
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.tw-form-checkbox:checked,.tw-form-radio:checked {
|
|
1697
|
+
border-color: transparent;
|
|
1698
|
+
background-color: currentColor;
|
|
1699
|
+
background-size: 100% 100%;
|
|
1700
|
+
background-position: center;
|
|
1701
|
+
background-repeat: no-repeat;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
.tw-form-checkbox:checked {
|
|
1705
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.tw-form-radio:checked {
|
|
1709
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.tw-form-checkbox:checked:hover,.tw-form-checkbox:checked:focus,.tw-form-radio:checked:hover,.tw-form-radio:checked:focus {
|
|
1713
|
+
border-color: transparent;
|
|
1714
|
+
background-color: currentColor;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
.tw-form-checkbox:indeterminate {
|
|
1718
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
|
|
1719
|
+
border-color: transparent;
|
|
1720
|
+
background-color: currentColor;
|
|
1721
|
+
background-size: 100% 100%;
|
|
1722
|
+
background-position: center;
|
|
1723
|
+
background-repeat: no-repeat;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.tw-form-checkbox:indeterminate:hover,.tw-form-checkbox:indeterminate:focus {
|
|
1727
|
+
border-color: transparent;
|
|
1728
|
+
background-color: currentColor;
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
.tw-pointer-events-none {
|
|
1732
|
+
pointer-events: none;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.tw-visible {
|
|
1736
|
+
visibility: visible;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.tw-invisible {
|
|
1740
|
+
visibility: hidden;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
.tw-absolute {
|
|
1744
|
+
position: absolute;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.tw-relative {
|
|
1748
|
+
position: relative;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.-tw-bottom-2 {
|
|
1752
|
+
bottom: -0.5rem;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.-tw-left-3 {
|
|
1756
|
+
left: -0.75rem;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.-tw-right-3 {
|
|
1760
|
+
right: -0.75rem;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.-tw-top-2 {
|
|
1764
|
+
top: -0.5rem;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.tw-left-1\/2 {
|
|
1768
|
+
left: 50%;
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
.tw-top-1\/2 {
|
|
1772
|
+
top: 50%;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.\!tw-z-\[9000\] {
|
|
1776
|
+
z-index: 9000 !important;
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
.\!tw-z-\[9999\] {
|
|
1780
|
+
z-index: 9999 !important;
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
.tw-z-50 {
|
|
1784
|
+
z-index: 50;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
.tw-z-\[9999\] {
|
|
1788
|
+
z-index: 9999;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
.tw-m-0 {
|
|
1792
|
+
margin: 0px;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.tw-m-0\.5 {
|
|
1796
|
+
margin: 0.125rem;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.tw-m-5 {
|
|
1800
|
+
margin: 1.25rem;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
.tw-ml-1 {
|
|
1804
|
+
margin-left: 0.25rem;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
.tw-ml-1\.5 {
|
|
1808
|
+
margin-left: 0.375rem;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.tw-mr-1 {
|
|
1812
|
+
margin-right: 0.25rem;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.tw-inline-block {
|
|
1816
|
+
display: inline-block;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.tw-flex {
|
|
1820
|
+
display: flex;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.tw-grid {
|
|
1824
|
+
display: grid;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
.tw-hidden {
|
|
1828
|
+
display: none;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.tw-h-3 {
|
|
1832
|
+
height: 0.75rem;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.tw-h-3\.5 {
|
|
1836
|
+
height: 0.875rem;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.tw-h-\[10px\] {
|
|
1840
|
+
height: 10px;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.tw-h-inputs {
|
|
1844
|
+
height: 34px;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.tw-w-3 {
|
|
1848
|
+
width: 0.75rem;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.tw-w-3\.5 {
|
|
1852
|
+
width: 0.875rem;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.tw-w-\[10px\] {
|
|
1856
|
+
width: 10px;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.tw-w-\[200px\] {
|
|
1860
|
+
width: 200px;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.tw-min-w-fit {
|
|
1864
|
+
min-width: -moz-fit-content;
|
|
1865
|
+
min-width: fit-content;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.-tw-translate-x-1\/2 {
|
|
1869
|
+
--tw-translate-x: -50%;
|
|
1870
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
.-tw-translate-x-full {
|
|
1874
|
+
--tw-translate-x: -100%;
|
|
1875
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.-tw-translate-y-1\/2 {
|
|
1879
|
+
--tw-translate-y: -50%;
|
|
1880
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
.-tw-translate-y-full {
|
|
1884
|
+
--tw-translate-y: -100%;
|
|
1885
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.tw-translate-x-full {
|
|
1889
|
+
--tw-translate-x: 100%;
|
|
1890
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.tw-translate-y-full {
|
|
1894
|
+
--tw-translate-y: 100%;
|
|
1895
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.tw-rotate-45 {
|
|
1899
|
+
--tw-rotate: 45deg;
|
|
1900
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.tw-cursor-not-allowed {
|
|
1904
|
+
cursor: not-allowed;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.tw-cursor-pointer {
|
|
1908
|
+
cursor: pointer;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.tw-grid-cols-2 {
|
|
1912
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.tw-grid-cols-3 {
|
|
1916
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
.tw-grid-cols-4 {
|
|
1920
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
.tw-flex-row {
|
|
1924
|
+
flex-direction: row;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
.tw-items-center {
|
|
1928
|
+
align-items: center;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.tw-gap-4 {
|
|
1932
|
+
gap: 1rem;
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
.tw-overflow-hidden {
|
|
1936
|
+
overflow: hidden;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
.tw-whitespace-nowrap {
|
|
1940
|
+
white-space: nowrap;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.tw-rounded {
|
|
1944
|
+
border-radius: 0.25rem;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
.tw-rounded-sm {
|
|
1948
|
+
border-radius: 3px;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.tw-rounded-b {
|
|
1952
|
+
border-bottom-right-radius: 0.25rem;
|
|
1953
|
+
border-bottom-left-radius: 0.25rem;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.tw-rounded-l-sm {
|
|
1957
|
+
border-top-left-radius: 3px;
|
|
1958
|
+
border-bottom-left-radius: 3px;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.tw-rounded-r-sm {
|
|
1962
|
+
border-top-right-radius: 3px;
|
|
1963
|
+
border-bottom-right-radius: 3px;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.tw-rounded-t-sm {
|
|
1967
|
+
border-top-left-radius: 3px;
|
|
1968
|
+
border-top-right-radius: 3px;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
.tw-rounded-tl-sm {
|
|
1972
|
+
border-top-left-radius: 3px;
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
.tw-rounded-tr-sm {
|
|
1976
|
+
border-top-right-radius: 3px;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.tw-border {
|
|
1980
|
+
border-width: 1px;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
.tw-border-l-0 {
|
|
1984
|
+
border-left-width: 0px;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
.tw-border-r-0 {
|
|
1988
|
+
border-right-width: 0px;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
.tw-border-solid {
|
|
1992
|
+
border-style: solid;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
.tw-border-sq-color-dark {
|
|
1996
|
+
--tw-border-opacity: 1;
|
|
1997
|
+
border-color: rgb(var(--sq-color-dark));
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
.tw-border-sq-danger-color {
|
|
2001
|
+
--tw-border-opacity: 1;
|
|
2002
|
+
border-color: rgb(var(--sq-danger-color));
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
.tw-border-sq-disabled-gray {
|
|
2006
|
+
--tw-border-opacity: 1;
|
|
2007
|
+
border-color: rgb(var(--sq-disabled-gray));
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.tw-border-sq-icon {
|
|
2011
|
+
--tw-border-opacity: 1;
|
|
2012
|
+
border-color: rgb(var(--sq-icon));
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
.tw-border-sq-warning-color {
|
|
2016
|
+
--tw-border-opacity: 1;
|
|
2017
|
+
border-color: rgb(var(--sq-warning-color));
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.tw-bg-black {
|
|
2021
|
+
--tw-bg-opacity: 1;
|
|
2022
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
.tw-bg-sq-color-dark {
|
|
2026
|
+
--tw-bg-opacity: 1;
|
|
2027
|
+
background-color: rgb(var(--sq-color-dark));
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.tw-bg-sq-colored-hover {
|
|
2031
|
+
--tw-bg-opacity: 1;
|
|
2032
|
+
background-color: rgb(var(--sq-colored-hover));
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
.tw-bg-sq-danger-color {
|
|
2036
|
+
--tw-bg-opacity: 1;
|
|
2037
|
+
background-color: rgb(var(--sq-danger-color));
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
.tw-bg-sq-dark-background {
|
|
2041
|
+
--tw-bg-opacity: 1;
|
|
2042
|
+
background-color: rgb(var(--sq-dark-background));
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
.tw-bg-sq-disabled-gray {
|
|
2046
|
+
--tw-bg-opacity: 1;
|
|
2047
|
+
background-color: rgb(var(--sq-disabled-gray));
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
.tw-bg-sq-field-disabled-gray {
|
|
2051
|
+
--tw-bg-opacity: 1;
|
|
2052
|
+
background-color: rgba(var(--sq-field-disabled-gray), 0.3);
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
.tw-bg-sq-icon {
|
|
2056
|
+
--tw-bg-opacity: 1;
|
|
2057
|
+
background-color: rgb(var(--sq-icon));
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
.tw-bg-sq-light-gray {
|
|
2061
|
+
--tw-bg-opacity: 1;
|
|
2062
|
+
background-color: rgb(var(--sq-light-gray));
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.tw-bg-sq-warning-color {
|
|
2066
|
+
--tw-bg-opacity: 1;
|
|
2067
|
+
background-color: rgb(var(--sq-warning-color));
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.tw-bg-white {
|
|
2071
|
+
--tw-bg-opacity: 1;
|
|
2072
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.tw-p-1 {
|
|
2076
|
+
padding: 0.25rem;
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
.tw-p-2 {
|
|
2080
|
+
padding: 0.5rem;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
.tw-p-4 {
|
|
2084
|
+
padding: 1rem;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.tw-p-5 {
|
|
2088
|
+
padding: 1.25rem;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
.tw-px-1 {
|
|
2092
|
+
padding-left: 0.25rem;
|
|
2093
|
+
padding-right: 0.25rem;
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
.tw-px-2 {
|
|
2097
|
+
padding-left: 0.5rem;
|
|
2098
|
+
padding-right: 0.5rem;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
.tw-px-2\.5 {
|
|
2102
|
+
padding-left: 0.625rem;
|
|
2103
|
+
padding-right: 0.625rem;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
.tw-px-3 {
|
|
2107
|
+
padding-left: 0.75rem;
|
|
2108
|
+
padding-right: 0.75rem;
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.tw-py-0 {
|
|
2112
|
+
padding-top: 0px;
|
|
2113
|
+
padding-bottom: 0px;
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
.tw-py-0\.5 {
|
|
2117
|
+
padding-top: 0.125rem;
|
|
2118
|
+
padding-bottom: 0.125rem;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
.tw-py-1 {
|
|
2122
|
+
padding-top: 0.25rem;
|
|
2123
|
+
padding-bottom: 0.25rem;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
.tw-pl-2 {
|
|
2127
|
+
padding-left: 0.5rem;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
.tw-pl-2\.5 {
|
|
2131
|
+
padding-left: 0.625rem;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.tw-pr-1 {
|
|
2135
|
+
padding-right: 0.25rem;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
.tw-pr-1\.5 {
|
|
2139
|
+
padding-right: 0.375rem;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.tw-text-center {
|
|
2143
|
+
text-align: center;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
.tw-text-sm {
|
|
2147
|
+
font-size: 0.875rem;
|
|
2148
|
+
line-height: 1.25rem;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.tw-text-xl {
|
|
2152
|
+
font-size: 1.25rem;
|
|
2153
|
+
line-height: 1.75rem;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.tw-text-xs {
|
|
2157
|
+
font-size: 0.75rem;
|
|
2158
|
+
line-height: 1rem;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.tw-leading-normal {
|
|
2162
|
+
line-height: 1.5;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
.tw-text-gray-400 {
|
|
2166
|
+
--tw-text-opacity: 1;
|
|
2167
|
+
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.tw-text-sq-color-dark {
|
|
2171
|
+
--tw-text-opacity: 1;
|
|
2172
|
+
color: rgb(var(--sq-color-dark));
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.tw-text-sq-color-light {
|
|
2176
|
+
--tw-text-opacity: 1;
|
|
2177
|
+
color: rgb(var(--sq-color-light));
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
.tw-text-sq-danger-color {
|
|
2181
|
+
--tw-text-opacity: 1;
|
|
2182
|
+
color: rgb(var(--sq-danger-color));
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
.tw-text-sq-darkish-gray {
|
|
2186
|
+
--tw-text-opacity: 1;
|
|
2187
|
+
color: rgb(var(--sq-darkish-gray));
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.tw-text-sq-disabled-gray {
|
|
2191
|
+
--tw-text-opacity: 1;
|
|
2192
|
+
color: rgb(var(--sq-disabled-gray));
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
.tw-text-sq-fairly-dark-gray {
|
|
2196
|
+
--tw-text-opacity: 1;
|
|
2197
|
+
color: rgb(var(--sq-fairly-dark-gray));
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
.tw-text-sq-link {
|
|
2201
|
+
--tw-text-opacity: 1;
|
|
2202
|
+
color: rgb(var(--sq-link));
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
.tw-text-sq-success-color {
|
|
2206
|
+
--tw-text-opacity: 1;
|
|
2207
|
+
color: rgb(var(--sq-success-color));
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.tw-text-sq-text-color {
|
|
2211
|
+
--tw-text-opacity: 1;
|
|
2212
|
+
color: rgb(var(--sq-text-color));
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.tw-text-sq-warning-color {
|
|
2216
|
+
--tw-text-opacity: 1;
|
|
2217
|
+
color: rgb(var(--sq-warning-color));
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.tw-text-white {
|
|
2221
|
+
--tw-text-opacity: 1;
|
|
2222
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
.tw-placeholder-gray-400::-moz-placeholder {
|
|
2226
|
+
--tw-placeholder-opacity: 1;
|
|
2227
|
+
color: rgb(156 163 175 / var(--tw-placeholder-opacity));
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
.tw-placeholder-gray-400::placeholder {
|
|
2231
|
+
--tw-placeholder-opacity: 1;
|
|
2232
|
+
color: rgb(156 163 175 / var(--tw-placeholder-opacity));
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
.tw-opacity-0 {
|
|
2236
|
+
opacity: 0;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.tw-outline-none {
|
|
2240
|
+
outline: 2px solid transparent;
|
|
2241
|
+
outline-offset: 2px;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
/* Heads up! Before these colors can be used you must also add them to the tailwind.config.cjs! */
|
|
2245
|
+
|
|
2246
|
+
/* Make sure to keep these colors in sync with the webserver/_custom_variables.scss values to ensure cohesive UIs */
|
|
2247
|
+
|
|
2248
|
+
.reactSelectMinHeight {
|
|
2249
|
+
min-height: 34px !important;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.reactSelectMinHeightSmall {
|
|
2253
|
+
min-height: 22px !important;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
[type='checkbox']:checked,
|
|
2257
|
+
[type='radio']:checked {
|
|
2258
|
+
background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z"/></svg>');
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
.tw-dark [type='checkbox']:checked,
|
|
2262
|
+
.tw-dark [type='radio']:checked {
|
|
2263
|
+
background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z"/></svg>');
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
@keyframes fadeIn {
|
|
2267
|
+
0% {
|
|
2268
|
+
opacity: 0;
|
|
2269
|
+
}
|
|
2270
|
+
100% {
|
|
2271
|
+
opacity: 1;
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.fade-in {
|
|
2276
|
+
animation: fadeIn 500ms;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.before\:tw-absolute::before {
|
|
2280
|
+
content: var(--tw-content);
|
|
2281
|
+
position: absolute;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
.before\:-tw-bottom-4::before {
|
|
2285
|
+
content: var(--tw-content);
|
|
2286
|
+
bottom: -1rem;
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
.before\:-tw-top-4::before {
|
|
2290
|
+
content: var(--tw-content);
|
|
2291
|
+
top: -1rem;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
.before\:tw-left-1\/2::before {
|
|
2295
|
+
content: var(--tw-content);
|
|
2296
|
+
left: 50%;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
.before\:tw-left-\[100\%\]::before {
|
|
2300
|
+
content: var(--tw-content);
|
|
2301
|
+
left: 100%;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.before\:tw-right-\[100\%\]::before {
|
|
2305
|
+
content: var(--tw-content);
|
|
2306
|
+
right: 100%;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
.before\:tw-top-1\/2::before {
|
|
2310
|
+
content: var(--tw-content);
|
|
2311
|
+
top: 50%;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.before\:-tw-translate-x-1\/2::before {
|
|
2315
|
+
content: var(--tw-content);
|
|
2316
|
+
--tw-translate-x: -50%;
|
|
2317
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
.before\:-tw-translate-y-1\/2::before {
|
|
2321
|
+
content: var(--tw-content);
|
|
2322
|
+
--tw-translate-y: -50%;
|
|
2323
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
.before\:tw-border-8::before {
|
|
2327
|
+
content: var(--tw-content);
|
|
2328
|
+
border-width: 8px;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.before\:tw-border-y-transparent::before {
|
|
2332
|
+
content: var(--tw-content);
|
|
2333
|
+
border-top-color: transparent;
|
|
2334
|
+
border-bottom-color: transparent;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
.before\:tw-border-b-black::before {
|
|
2338
|
+
content: var(--tw-content);
|
|
2339
|
+
--tw-border-opacity: 1;
|
|
2340
|
+
border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.before\:tw-border-b-transparent::before {
|
|
2344
|
+
content: var(--tw-content);
|
|
2345
|
+
border-bottom-color: transparent;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.before\:tw-border-l-black::before {
|
|
2349
|
+
content: var(--tw-content);
|
|
2350
|
+
--tw-border-opacity: 1;
|
|
2351
|
+
border-left-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.before\:tw-border-l-transparent::before {
|
|
2355
|
+
content: var(--tw-content);
|
|
2356
|
+
border-left-color: transparent;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.before\:tw-border-r-black::before {
|
|
2360
|
+
content: var(--tw-content);
|
|
2361
|
+
--tw-border-opacity: 1;
|
|
2362
|
+
border-right-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
.before\:tw-border-r-transparent::before {
|
|
2366
|
+
content: var(--tw-content);
|
|
2367
|
+
border-right-color: transparent;
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
.before\:tw-border-t-black::before {
|
|
2371
|
+
content: var(--tw-content);
|
|
2372
|
+
--tw-border-opacity: 1;
|
|
2373
|
+
border-top-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
.before\:tw-border-t-transparent::before {
|
|
2377
|
+
content: var(--tw-content);
|
|
2378
|
+
border-top-color: transparent;
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2381
|
+
.before\:tw-content-\[\'\'\]::before {
|
|
2382
|
+
--tw-content: '';
|
|
2383
|
+
content: var(--tw-content);
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
.checked\:tw-text-sq-text-color:checked {
|
|
2387
|
+
--tw-text-opacity: 1;
|
|
2388
|
+
color: rgb(var(--sq-text-color));
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
.hover\:tw-cursor-pointer:hover {
|
|
2392
|
+
cursor: pointer;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.hover\:tw-border-sq-color-dark:hover {
|
|
2396
|
+
--tw-border-opacity: 1;
|
|
2397
|
+
border-color: rgb(var(--sq-color-dark));
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.hover\:tw-border-sq-color-highlight:hover {
|
|
2401
|
+
--tw-border-opacity: 1;
|
|
2402
|
+
border-color: rgb(var(--sq-color-highlight));
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
.hover\:tw-border-sq-danger-color-hover:hover {
|
|
2406
|
+
--tw-border-opacity: 1;
|
|
2407
|
+
border-color: rgb(212 59 55 / var(--tw-border-opacity));
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
.hover\:tw-border-sq-link:hover {
|
|
2411
|
+
--tw-border-opacity: 1;
|
|
2412
|
+
border-color: rgb(var(--sq-link));
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
.hover\:tw-bg-sq-color-highlight:hover {
|
|
2416
|
+
--tw-bg-opacity: 1;
|
|
2417
|
+
background-color: rgb(var(--sq-color-highlight));
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
.hover\:tw-bg-sq-danger-color-hover:hover {
|
|
2421
|
+
--tw-bg-opacity: 1;
|
|
2422
|
+
background-color: rgb(212 59 55 / var(--tw-bg-opacity));
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
.hover\:tw-bg-sq-gray-highlight:hover {
|
|
2426
|
+
--tw-bg-opacity: 1;
|
|
2427
|
+
background-color: rgb(var(--sq-gray-highlight));
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
.hover\:tw-bg-sq-light-gray:hover {
|
|
2431
|
+
--tw-bg-opacity: 1;
|
|
2432
|
+
background-color: rgb(var(--sq-light-gray));
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
.hover\:tw-bg-sq-link:hover {
|
|
2436
|
+
--tw-bg-opacity: 1;
|
|
2437
|
+
background-color: rgb(var(--sq-link));
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.hover\:tw-text-sq-color-dark:hover {
|
|
2441
|
+
--tw-text-opacity: 1;
|
|
2442
|
+
color: rgb(var(--sq-color-dark));
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.hover\:tw-text-sq-danger-color:hover {
|
|
2446
|
+
--tw-text-opacity: 1;
|
|
2447
|
+
color: rgb(var(--sq-danger-color));
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.focus\:tw-border-l:focus {
|
|
2451
|
+
border-left-width: 1px;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
.focus\:tw-border-r:focus {
|
|
2455
|
+
border-right-width: 1px;
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
.focus\:tw-border-sq-color-dark:focus {
|
|
2459
|
+
--tw-border-opacity: 1;
|
|
2460
|
+
border-color: rgb(var(--sq-color-dark));
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.focus\:tw-bg-sq-dark-gray:focus {
|
|
2464
|
+
--tw-bg-opacity: 1;
|
|
2465
|
+
background-color: rgb(var(--sq-dark-gray));
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
.focus\:tw-text-sq-color-dark:focus {
|
|
2469
|
+
--tw-text-opacity: 1;
|
|
2470
|
+
color: rgb(var(--sq-color-dark));
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2473
|
+
.focus\:tw-outline-none:focus {
|
|
2474
|
+
outline: 2px solid transparent;
|
|
2475
|
+
outline-offset: 2px;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
.focus\:tw-ring-0:focus {
|
|
2479
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2480
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2481
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2482
|
+
--tw-ring-color: r;
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2485
|
+
.focus\:tw-ring-offset-0:focus {
|
|
2486
|
+
--tw-ring-offset-width: 0px;
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
.active\:tw-border-l:active {
|
|
2490
|
+
border-left-width: 1px;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
.active\:tw-border-r:active {
|
|
2494
|
+
border-right-width: 1px;
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
.active\:tw-border-sq-color-dark:active {
|
|
2498
|
+
--tw-border-opacity: 1;
|
|
2499
|
+
border-color: rgb(var(--sq-color-dark));
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
.active\:tw-bg-sq-dark-gray:active {
|
|
2503
|
+
--tw-bg-opacity: 1;
|
|
2504
|
+
background-color: rgb(var(--sq-dark-gray));
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
.active\:tw-text-sq-color-dark:active {
|
|
2508
|
+
--tw-text-opacity: 1;
|
|
2509
|
+
color: rgb(var(--sq-color-dark));
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
.disabled\:tw-pointer-events-none:disabled {
|
|
2513
|
+
pointer-events: none;
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.disabled\:tw-cursor-not-allowed:disabled {
|
|
2517
|
+
cursor: not-allowed;
|
|
2518
|
+
}
|
|
2519
|
+
|
|
2520
|
+
.disabled\:tw-text-sq-fairly-dark-gray:disabled {
|
|
2521
|
+
--tw-text-opacity: 1;
|
|
2522
|
+
color: rgb(var(--sq-fairly-dark-gray));
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
.disabled\:tw-opacity-50:disabled {
|
|
2526
|
+
opacity: 0.5;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.tw-group:hover .group-hover\:tw-inline-block {
|
|
2530
|
+
display: inline-block;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
2534
|
+
opacity: 1;
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
.tw-dark .dark\:tw-border-sq-color-dark {
|
|
2538
|
+
--tw-border-opacity: 1;
|
|
2539
|
+
border-color: rgb(var(--sq-color-dark));
|
|
2540
|
+
}
|
|
2541
|
+
|
|
2542
|
+
.tw-dark .dark\:tw-border-sq-dark-disabled-gray {
|
|
2543
|
+
--tw-border-opacity: 1;
|
|
2544
|
+
border-color: rgb(var(--sq-dark-disabled-gray));
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
.tw-dark .dark\:tw-border-sq-dark-text {
|
|
2548
|
+
--tw-border-opacity: 1;
|
|
2549
|
+
border-color: rgb(var(--sq-dark-text));
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
.tw-dark .dark\:tw-border-sq-icon-dark {
|
|
2553
|
+
--tw-border-opacity: 1;
|
|
2554
|
+
border-color: rgb(var(--sq-icon-dark));
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
.tw-dark .dark\:tw-bg-sq-color-dark {
|
|
2558
|
+
--tw-bg-opacity: 1;
|
|
2559
|
+
background-color: rgb(var(--sq-color-dark));
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
.tw-dark .dark\:tw-bg-sq-colored-hover-dark {
|
|
2563
|
+
--tw-bg-opacity: 1;
|
|
2564
|
+
background-color: rgb(var(--sq-colored-hover-dark));
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
.tw-dark .dark\:tw-bg-sq-dark-background {
|
|
2568
|
+
--tw-bg-opacity: 1;
|
|
2569
|
+
background-color: rgb(var(--sq-dark-background));
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
.tw-dark .dark\:tw-bg-sq-dark-disabled-gray {
|
|
2573
|
+
--tw-bg-opacity: 1;
|
|
2574
|
+
background-color: rgb(var(--sq-dark-disabled-gray));
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.tw-dark .dark\:tw-bg-sq-icon-dark {
|
|
2578
|
+
--tw-bg-opacity: 1;
|
|
2579
|
+
background-color: rgb(var(--sq-icon-dark));
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
.tw-dark .dark\:tw-bg-sq-multi-gray-dark {
|
|
2583
|
+
--tw-bg-opacity: 1;
|
|
2584
|
+
background-color: rgb(var(--sq-multi-gray-dark));
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
.tw-dark .dark\:tw-text-sq-color-dark-dark {
|
|
2588
|
+
--tw-text-opacity: 1;
|
|
2589
|
+
color: rgb(var(--sq-color-dark-dark));
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
.tw-dark .dark\:tw-text-sq-dark-disabled-gray {
|
|
2593
|
+
--tw-text-opacity: 1;
|
|
2594
|
+
color: rgb(var(--sq-dark-disabled-gray));
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
.tw-dark .dark\:tw-text-sq-dark-text {
|
|
2598
|
+
--tw-text-opacity: 1;
|
|
2599
|
+
color: rgb(var(--sq-dark-text));
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.tw-dark .dark\:tw-text-sq-dark-text-lighter {
|
|
2603
|
+
--tw-text-opacity: 1;
|
|
2604
|
+
color: rgba(var(--sq-dark-text), 0.3);
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2607
|
+
.tw-dark .dark\:tw-text-sq-fairly-dark-gray {
|
|
2608
|
+
--tw-text-opacity: 1;
|
|
2609
|
+
color: rgb(var(--sq-fairly-dark-gray));
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
.tw-dark .dark\:tw-text-sq-link-dark {
|
|
2613
|
+
--tw-text-opacity: 1;
|
|
2614
|
+
color: rgb(var(--sq-link-dark));
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2617
|
+
.tw-dark .dark\:tw-text-white {
|
|
2618
|
+
--tw-text-opacity: 1;
|
|
2619
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
.tw-dark .dark\:tw-placeholder-sq-dark-text-lighter::-moz-placeholder {
|
|
2623
|
+
--tw-placeholder-opacity: 1;
|
|
2624
|
+
color: rgba(var(--sq-dark-text), 0.3);
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
.tw-dark .dark\:tw-placeholder-sq-dark-text-lighter::placeholder {
|
|
2628
|
+
--tw-placeholder-opacity: 1;
|
|
2629
|
+
color: rgba(var(--sq-dark-text), 0.3);
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
.tw-dark .dark\:checked\:tw-bg-sq-dark-text:checked {
|
|
2633
|
+
--tw-bg-opacity: 1;
|
|
2634
|
+
background-color: rgb(var(--sq-dark-text));
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
.tw-dark .dark\:hover\:tw-border-sq-color-dark-dark:hover {
|
|
2638
|
+
--tw-border-opacity: 1;
|
|
2639
|
+
border-color: rgb(var(--sq-color-dark-dark));
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
.tw-dark .dark\:hover\:tw-border-sq-color-highlight:hover {
|
|
2643
|
+
--tw-border-opacity: 1;
|
|
2644
|
+
border-color: rgb(var(--sq-color-highlight));
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
.tw-dark .dark\:hover\:tw-border-sq-link-dark:hover {
|
|
2648
|
+
--tw-border-opacity: 1;
|
|
2649
|
+
border-color: rgb(var(--sq-link-dark));
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.tw-dark .dark\:hover\:tw-bg-sq-color-highlight:hover {
|
|
2653
|
+
--tw-bg-opacity: 1;
|
|
2654
|
+
background-color: rgb(var(--sq-color-highlight));
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
.tw-dark .dark\:hover\:tw-bg-sq-gray-highlight-dark:hover {
|
|
2658
|
+
--tw-bg-opacity: 1;
|
|
2659
|
+
background-color: rgb(var(--sq-gray-highlight-dark));
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
.tw-dark .dark\:hover\:tw-bg-sq-highlight-color-dark:hover {
|
|
2663
|
+
--tw-bg-opacity: 1;
|
|
2664
|
+
background-color: rgb(var(--sq-highlight-color-dark));
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
.tw-dark .dark\:hover\:tw-bg-sq-link-dark:hover {
|
|
2668
|
+
--tw-bg-opacity: 1;
|
|
2669
|
+
background-color: rgb(var(--sq-link-dark));
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.tw-dark .dark\:hover\:tw-text-sq-color-dark-dark:hover {
|
|
2673
|
+
--tw-text-opacity: 1;
|
|
2674
|
+
color: rgb(var(--sq-color-dark-dark));
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
.tw-dark .dark\:focus\:tw-border-sq-color-dark:focus {
|
|
2678
|
+
--tw-border-opacity: 1;
|
|
2679
|
+
border-color: rgb(var(--sq-color-dark));
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2682
|
+
.tw-dark .dark\:focus\:tw-border-sq-color-dark-dark:focus {
|
|
2683
|
+
--tw-border-opacity: 1;
|
|
2684
|
+
border-color: rgb(var(--sq-color-dark-dark));
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
.tw-dark .dark\:focus\:tw-bg-sq-dark-gray:focus {
|
|
2688
|
+
--tw-bg-opacity: 1;
|
|
2689
|
+
background-color: rgb(var(--sq-dark-gray));
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.tw-dark .dark\:focus\:tw-text-sq-color-dark-dark:focus {
|
|
2693
|
+
--tw-text-opacity: 1;
|
|
2694
|
+
color: rgb(var(--sq-color-dark-dark));
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
.tw-dark .dark\:active\:tw-border-sq-color-dark:active {
|
|
2698
|
+
--tw-border-opacity: 1;
|
|
2699
|
+
border-color: rgb(var(--sq-color-dark));
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
.tw-dark .dark\:active\:tw-border-sq-color-dark-dark:active {
|
|
2703
|
+
--tw-border-opacity: 1;
|
|
2704
|
+
border-color: rgb(var(--sq-color-dark-dark));
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
.tw-dark .dark\:active\:tw-bg-sq-dark-gray:active {
|
|
2708
|
+
--tw-bg-opacity: 1;
|
|
2709
|
+
background-color: rgb(var(--sq-dark-gray));
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
.tw-dark .dark\:active\:tw-text-sq-color-dark-dark:active {
|
|
2713
|
+
--tw-text-opacity: 1;
|
|
2714
|
+
color: rgb(var(--sq-color-dark-dark));
|
|
2715
|
+
}
|