@neo4j-ndl/base 0.1.0
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/LICENSE +674 -0
- package/lib/neo4j-ds-styles.css +2839 -0
- package/lib/optimised.config.d.ts +274 -0
- package/lib/optimised.config.js +69 -0
- package/lib/optimised.config.js.map +1 -0
- package/lib/tailwindConfig.d.ts +254 -0
- package/lib/tailwindConfig.js +162 -0
- package/lib/tailwindConfig.js.map +1 -0
- package/lib/tokens/css/tokens.css +147 -0
- package/lib/tokens/js/tokens-raw.js +2871 -0
- package/lib/tokens/js/tokens.d.ts +266 -0
- package/lib/tokens/js/tokens.js +220 -0
- package/lib/tokens/js/tokens.js.map +1 -0
- package/lib/tokens/scss/tokens.scss +144 -0
- package/lib/typings.d.ts +22 -0
- package/lib/typings.js +23 -0
- package/lib/typings.js.map +1 -0
- package/package.json +43 -0
|
@@ -0,0 +1,2839 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&family=Nunito+Sans:wght@400;500;600;700&display=swap');
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) "Neo4j"
|
|
7
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
8
|
+
*
|
|
9
|
+
* This file is part of Neo4j.
|
|
10
|
+
*
|
|
11
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* This program is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU General Public License
|
|
22
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
/*! tailwindcss v3.0.16 | MIT License | https://tailwindcss.com
|
|
25
|
+
*/
|
|
26
|
+
/*
|
|
27
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
28
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
29
|
+
*/
|
|
30
|
+
*,
|
|
31
|
+
::before,
|
|
32
|
+
::after {
|
|
33
|
+
box-sizing: border-box; /* 1 */
|
|
34
|
+
border-width: 0; /* 2 */
|
|
35
|
+
border-style: solid; /* 2 */
|
|
36
|
+
border-color: currentColor; /* 2 */
|
|
37
|
+
}
|
|
38
|
+
::before,
|
|
39
|
+
::after {
|
|
40
|
+
--tw-content: '';
|
|
41
|
+
}
|
|
42
|
+
/*
|
|
43
|
+
1. Use a consistent sensible line-height in all browsers.
|
|
44
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
45
|
+
3. Use a more readable tab size.
|
|
46
|
+
4. Use the user's configured `sans` font-family by default.
|
|
47
|
+
*/
|
|
48
|
+
html {
|
|
49
|
+
line-height: 1.5; /* 1 */
|
|
50
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
51
|
+
-moz-tab-size: 4; /* 3 */
|
|
52
|
+
-o-tab-size: 4;
|
|
53
|
+
tab-size: 4; /* 3 */
|
|
54
|
+
font-family: "Nunito Sans"; /* 4 */
|
|
55
|
+
}
|
|
56
|
+
/*
|
|
57
|
+
1. Remove the margin in all browsers.
|
|
58
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
59
|
+
*/
|
|
60
|
+
body {
|
|
61
|
+
margin: 0; /* 1 */
|
|
62
|
+
line-height: inherit; /* 2 */
|
|
63
|
+
}
|
|
64
|
+
/*
|
|
65
|
+
1. Add the correct height in Firefox.
|
|
66
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
67
|
+
3. Ensure horizontal rules are visible by default.
|
|
68
|
+
*/
|
|
69
|
+
hr {
|
|
70
|
+
height: 0; /* 1 */
|
|
71
|
+
color: inherit; /* 2 */
|
|
72
|
+
border-top-width: 1px; /* 3 */
|
|
73
|
+
}
|
|
74
|
+
/*
|
|
75
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
76
|
+
*/
|
|
77
|
+
abbr:where([title]) {
|
|
78
|
+
-webkit-text-decoration: underline dotted;
|
|
79
|
+
text-decoration: underline dotted;
|
|
80
|
+
}
|
|
81
|
+
/*
|
|
82
|
+
Remove the default font size and weight for headings.
|
|
83
|
+
*/
|
|
84
|
+
h1,
|
|
85
|
+
h2,
|
|
86
|
+
h3,
|
|
87
|
+
h4,
|
|
88
|
+
h5,
|
|
89
|
+
h6 {
|
|
90
|
+
font-size: inherit;
|
|
91
|
+
font-weight: inherit;
|
|
92
|
+
}
|
|
93
|
+
/*
|
|
94
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
|
95
|
+
*/
|
|
96
|
+
a {
|
|
97
|
+
color: inherit;
|
|
98
|
+
text-decoration: inherit;
|
|
99
|
+
}
|
|
100
|
+
/*
|
|
101
|
+
Add the correct font weight in Edge and Safari.
|
|
102
|
+
*/
|
|
103
|
+
b,
|
|
104
|
+
strong {
|
|
105
|
+
font-weight: bolder;
|
|
106
|
+
}
|
|
107
|
+
/*
|
|
108
|
+
1. Use the user's configured `mono` font family by default.
|
|
109
|
+
2. Correct the odd `em` font sizing in all browsers.
|
|
110
|
+
*/
|
|
111
|
+
code,
|
|
112
|
+
kbd,
|
|
113
|
+
samp,
|
|
114
|
+
pre {
|
|
115
|
+
font-family: "Fira Code"; /* 1 */
|
|
116
|
+
font-size: 1em; /* 2 */
|
|
117
|
+
}
|
|
118
|
+
/*
|
|
119
|
+
Add the correct font size in all browsers.
|
|
120
|
+
*/
|
|
121
|
+
small {
|
|
122
|
+
font-size: 80%;
|
|
123
|
+
}
|
|
124
|
+
/*
|
|
125
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
126
|
+
*/
|
|
127
|
+
sub,
|
|
128
|
+
sup {
|
|
129
|
+
font-size: 75%;
|
|
130
|
+
line-height: 0;
|
|
131
|
+
position: relative;
|
|
132
|
+
vertical-align: baseline;
|
|
133
|
+
}
|
|
134
|
+
sub {
|
|
135
|
+
bottom: -0.25em;
|
|
136
|
+
}
|
|
137
|
+
sup {
|
|
138
|
+
top: -0.5em;
|
|
139
|
+
}
|
|
140
|
+
/*
|
|
141
|
+
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)
|
|
142
|
+
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)
|
|
143
|
+
3. Remove gaps between table borders by default.
|
|
144
|
+
*/
|
|
145
|
+
table {
|
|
146
|
+
text-indent: 0; /* 1 */
|
|
147
|
+
border-color: inherit; /* 2 */
|
|
148
|
+
border-collapse: collapse; /* 3 */
|
|
149
|
+
}
|
|
150
|
+
/*
|
|
151
|
+
1. Change the font styles in all browsers.
|
|
152
|
+
2. Remove the margin in Firefox and Safari.
|
|
153
|
+
3. Remove default padding in all browsers.
|
|
154
|
+
*/
|
|
155
|
+
button,
|
|
156
|
+
input,
|
|
157
|
+
optgroup,
|
|
158
|
+
select,
|
|
159
|
+
textarea {
|
|
160
|
+
font-family: inherit; /* 1 */
|
|
161
|
+
font-size: 100%; /* 1 */
|
|
162
|
+
line-height: inherit; /* 1 */
|
|
163
|
+
color: inherit; /* 1 */
|
|
164
|
+
margin: 0; /* 2 */
|
|
165
|
+
padding: 0; /* 3 */
|
|
166
|
+
}
|
|
167
|
+
/*
|
|
168
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
169
|
+
*/
|
|
170
|
+
button,
|
|
171
|
+
select {
|
|
172
|
+
text-transform: none;
|
|
173
|
+
}
|
|
174
|
+
/*
|
|
175
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
176
|
+
2. Remove default button styles.
|
|
177
|
+
*/
|
|
178
|
+
button,
|
|
179
|
+
[type='button'],
|
|
180
|
+
[type='reset'],
|
|
181
|
+
[type='submit'] {
|
|
182
|
+
-webkit-appearance: button; /* 1 */
|
|
183
|
+
background-color: transparent; /* 2 */
|
|
184
|
+
background-image: none; /* 2 */
|
|
185
|
+
}
|
|
186
|
+
/*
|
|
187
|
+
Use the modern Firefox focus style for all focusable elements.
|
|
188
|
+
*/
|
|
189
|
+
:-moz-focusring {
|
|
190
|
+
outline: auto;
|
|
191
|
+
}
|
|
192
|
+
/*
|
|
193
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
194
|
+
*/
|
|
195
|
+
:-moz-ui-invalid {
|
|
196
|
+
box-shadow: none;
|
|
197
|
+
}
|
|
198
|
+
/*
|
|
199
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
200
|
+
*/
|
|
201
|
+
progress {
|
|
202
|
+
vertical-align: baseline;
|
|
203
|
+
}
|
|
204
|
+
/*
|
|
205
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
206
|
+
*/
|
|
207
|
+
::-webkit-inner-spin-button,
|
|
208
|
+
::-webkit-outer-spin-button {
|
|
209
|
+
height: auto;
|
|
210
|
+
}
|
|
211
|
+
/*
|
|
212
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
213
|
+
2. Correct the outline style in Safari.
|
|
214
|
+
*/
|
|
215
|
+
[type='search'] {
|
|
216
|
+
-webkit-appearance: textfield; /* 1 */
|
|
217
|
+
outline-offset: -2px; /* 2 */
|
|
218
|
+
}
|
|
219
|
+
/*
|
|
220
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
221
|
+
*/
|
|
222
|
+
::-webkit-search-decoration {
|
|
223
|
+
-webkit-appearance: none;
|
|
224
|
+
}
|
|
225
|
+
/*
|
|
226
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
227
|
+
2. Change font properties to `inherit` in Safari.
|
|
228
|
+
*/
|
|
229
|
+
::-webkit-file-upload-button {
|
|
230
|
+
-webkit-appearance: button; /* 1 */
|
|
231
|
+
font: inherit; /* 2 */
|
|
232
|
+
}
|
|
233
|
+
/*
|
|
234
|
+
Add the correct display in Chrome and Safari.
|
|
235
|
+
*/
|
|
236
|
+
summary {
|
|
237
|
+
display: list-item;
|
|
238
|
+
}
|
|
239
|
+
/*
|
|
240
|
+
Removes the default spacing and border for appropriate elements.
|
|
241
|
+
*/
|
|
242
|
+
blockquote,
|
|
243
|
+
dl,
|
|
244
|
+
dd,
|
|
245
|
+
h1,
|
|
246
|
+
h2,
|
|
247
|
+
h3,
|
|
248
|
+
h4,
|
|
249
|
+
h5,
|
|
250
|
+
h6,
|
|
251
|
+
hr,
|
|
252
|
+
figure,
|
|
253
|
+
p,
|
|
254
|
+
pre {
|
|
255
|
+
margin: 0;
|
|
256
|
+
}
|
|
257
|
+
fieldset {
|
|
258
|
+
margin: 0;
|
|
259
|
+
padding: 0;
|
|
260
|
+
}
|
|
261
|
+
legend {
|
|
262
|
+
padding: 0;
|
|
263
|
+
}
|
|
264
|
+
ol,
|
|
265
|
+
ul,
|
|
266
|
+
menu {
|
|
267
|
+
list-style: none;
|
|
268
|
+
margin: 0;
|
|
269
|
+
padding: 0;
|
|
270
|
+
}
|
|
271
|
+
/*
|
|
272
|
+
Prevent resizing textareas horizontally by default.
|
|
273
|
+
*/
|
|
274
|
+
textarea {
|
|
275
|
+
resize: vertical;
|
|
276
|
+
}
|
|
277
|
+
/*
|
|
278
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
279
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
280
|
+
*/
|
|
281
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
282
|
+
opacity: 1; /* 1 */
|
|
283
|
+
color: #9ca3af; /* 2 */
|
|
284
|
+
}
|
|
285
|
+
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
286
|
+
opacity: 1; /* 1 */
|
|
287
|
+
color: #9ca3af; /* 2 */
|
|
288
|
+
}
|
|
289
|
+
input::placeholder,
|
|
290
|
+
textarea::placeholder {
|
|
291
|
+
opacity: 1; /* 1 */
|
|
292
|
+
color: #9ca3af; /* 2 */
|
|
293
|
+
}
|
|
294
|
+
/*
|
|
295
|
+
Set the default cursor for buttons.
|
|
296
|
+
*/
|
|
297
|
+
button,
|
|
298
|
+
[role="button"] {
|
|
299
|
+
cursor: pointer;
|
|
300
|
+
}
|
|
301
|
+
/*
|
|
302
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
303
|
+
*/
|
|
304
|
+
:disabled {
|
|
305
|
+
cursor: default;
|
|
306
|
+
}
|
|
307
|
+
/*
|
|
308
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
309
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
310
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
311
|
+
*/
|
|
312
|
+
img,
|
|
313
|
+
svg,
|
|
314
|
+
video,
|
|
315
|
+
canvas,
|
|
316
|
+
audio,
|
|
317
|
+
iframe,
|
|
318
|
+
embed,
|
|
319
|
+
object {
|
|
320
|
+
display: block; /* 1 */
|
|
321
|
+
vertical-align: middle; /* 2 */
|
|
322
|
+
}
|
|
323
|
+
/*
|
|
324
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
325
|
+
*/
|
|
326
|
+
img,
|
|
327
|
+
video {
|
|
328
|
+
max-width: 100%;
|
|
329
|
+
height: auto;
|
|
330
|
+
}
|
|
331
|
+
/*
|
|
332
|
+
Ensure the default browser behavior of the `hidden` attribute.
|
|
333
|
+
*/
|
|
334
|
+
[hidden] {
|
|
335
|
+
display: none;
|
|
336
|
+
}
|
|
337
|
+
*, ::before, ::after{
|
|
338
|
+
--tw-translate-x: 0;
|
|
339
|
+
--tw-translate-y: 0;
|
|
340
|
+
--tw-rotate: 0;
|
|
341
|
+
--tw-skew-x: 0;
|
|
342
|
+
--tw-skew-y: 0;
|
|
343
|
+
--tw-scale-x: 1;
|
|
344
|
+
--tw-scale-y: 1;
|
|
345
|
+
--tw-pan-x: ;
|
|
346
|
+
--tw-pan-y: ;
|
|
347
|
+
--tw-pinch-zoom: ;
|
|
348
|
+
--tw-scroll-snap-strictness: proximity;
|
|
349
|
+
--tw-ordinal: ;
|
|
350
|
+
--tw-slashed-zero: ;
|
|
351
|
+
--tw-numeric-figure: ;
|
|
352
|
+
--tw-numeric-spacing: ;
|
|
353
|
+
--tw-numeric-fraction: ;
|
|
354
|
+
--tw-ring-inset: ;
|
|
355
|
+
--tw-ring-offset-width: 0px;
|
|
356
|
+
--tw-ring-offset-color: #fff;
|
|
357
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
358
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
359
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
360
|
+
--tw-shadow: 0 0 #0000;
|
|
361
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
362
|
+
--tw-blur: ;
|
|
363
|
+
--tw-brightness: ;
|
|
364
|
+
--tw-contrast: ;
|
|
365
|
+
--tw-grayscale: ;
|
|
366
|
+
--tw-hue-rotate: ;
|
|
367
|
+
--tw-invert: ;
|
|
368
|
+
--tw-saturate: ;
|
|
369
|
+
--tw-sepia: ;
|
|
370
|
+
--tw-drop-shadow: ;
|
|
371
|
+
--tw-backdrop-blur: ;
|
|
372
|
+
--tw-backdrop-brightness: ;
|
|
373
|
+
--tw-backdrop-contrast: ;
|
|
374
|
+
--tw-backdrop-grayscale: ;
|
|
375
|
+
--tw-backdrop-hue-rotate: ;
|
|
376
|
+
--tw-backdrop-invert: ;
|
|
377
|
+
--tw-backdrop-opacity: ;
|
|
378
|
+
--tw-backdrop-saturate: ;
|
|
379
|
+
--tw-backdrop-sepia: ;
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
*
|
|
383
|
+
* Copyright (c) "Neo4j"
|
|
384
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
385
|
+
*
|
|
386
|
+
* This file is part of Neo4j.
|
|
387
|
+
*
|
|
388
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
389
|
+
* it under the terms of the GNU General Public License as published by
|
|
390
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
391
|
+
* (at your option) any later version.
|
|
392
|
+
*
|
|
393
|
+
* This program is distributed in the hope that it will be useful,
|
|
394
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
395
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
396
|
+
* GNU General Public License for more details.
|
|
397
|
+
*
|
|
398
|
+
* You should have received a copy of the GNU General Public License
|
|
399
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
400
|
+
*/
|
|
401
|
+
/**
|
|
402
|
+
*
|
|
403
|
+
* Copyright (c) "Neo4j"
|
|
404
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
405
|
+
*
|
|
406
|
+
* This file is part of Neo4j.
|
|
407
|
+
*
|
|
408
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
409
|
+
* it under the terms of the GNU General Public License as published by
|
|
410
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
411
|
+
* (at your option) any later version.
|
|
412
|
+
*
|
|
413
|
+
* This program is distributed in the hope that it will be useful,
|
|
414
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
415
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
416
|
+
* GNU General Public License for more details.
|
|
417
|
+
*
|
|
418
|
+
* You should have received a copy of the GNU General Public License
|
|
419
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
420
|
+
*/
|
|
421
|
+
code{
|
|
422
|
+
font-family: "Fira Code";
|
|
423
|
+
font-size: 14px;
|
|
424
|
+
line-height: 20px;
|
|
425
|
+
letter-spacing: 0px;
|
|
426
|
+
}
|
|
427
|
+
h1{
|
|
428
|
+
font-size: 48px;
|
|
429
|
+
line-height: 60px;
|
|
430
|
+
letter-spacing: -0.25px;
|
|
431
|
+
font-weight: 700;
|
|
432
|
+
}
|
|
433
|
+
h2{
|
|
434
|
+
font-size: 40px;
|
|
435
|
+
line-height: 48px;
|
|
436
|
+
letter-spacing: 0px;
|
|
437
|
+
font-weight: 700;
|
|
438
|
+
}
|
|
439
|
+
h3{
|
|
440
|
+
font-size: 30px;
|
|
441
|
+
line-height: 40px;
|
|
442
|
+
letter-spacing: 0.25px;
|
|
443
|
+
font-weight: 700;
|
|
444
|
+
}
|
|
445
|
+
h4{
|
|
446
|
+
font-size: 24px;
|
|
447
|
+
line-height: 32px;
|
|
448
|
+
letter-spacing: 0.25px;
|
|
449
|
+
font-weight: 700;
|
|
450
|
+
}
|
|
451
|
+
h5{
|
|
452
|
+
font-size: 20px;
|
|
453
|
+
line-height: 28px;
|
|
454
|
+
letter-spacing: 0.25px;
|
|
455
|
+
font-weight: 700;
|
|
456
|
+
}
|
|
457
|
+
h6{
|
|
458
|
+
font-size: 16px;
|
|
459
|
+
line-height: 24px;
|
|
460
|
+
letter-spacing: 0.25px;
|
|
461
|
+
font-weight: 700;
|
|
462
|
+
}
|
|
463
|
+
.subheading-large{
|
|
464
|
+
font-size: 20px;
|
|
465
|
+
line-height: 28px;
|
|
466
|
+
letter-spacing: 0.25px;
|
|
467
|
+
font-weight: 600;
|
|
468
|
+
}
|
|
469
|
+
.subheading-medium{
|
|
470
|
+
font-size: 16px;
|
|
471
|
+
line-height: 24px;
|
|
472
|
+
letter-spacing: 0.25px;
|
|
473
|
+
font-weight: 600;
|
|
474
|
+
}
|
|
475
|
+
.subheading-small{
|
|
476
|
+
font-size: 14px;
|
|
477
|
+
line-height: 20px;
|
|
478
|
+
letter-spacing: 0px;
|
|
479
|
+
font-weight: 600;
|
|
480
|
+
}
|
|
481
|
+
.body-large{
|
|
482
|
+
font-size: 16px;
|
|
483
|
+
line-height: 24px;
|
|
484
|
+
letter-spacing: 0px;
|
|
485
|
+
font-weight: 400;
|
|
486
|
+
}
|
|
487
|
+
.body-medium{
|
|
488
|
+
font-size: 14px;
|
|
489
|
+
line-height: 20px;
|
|
490
|
+
letter-spacing: 0px;
|
|
491
|
+
font-weight: 400;
|
|
492
|
+
}
|
|
493
|
+
.body-small{
|
|
494
|
+
font-size: 12px;
|
|
495
|
+
line-height: 20px;
|
|
496
|
+
letter-spacing: 0px;
|
|
497
|
+
font-weight: 400;
|
|
498
|
+
}
|
|
499
|
+
.label{
|
|
500
|
+
font-size: 14px;
|
|
501
|
+
line-height: 20px;
|
|
502
|
+
letter-spacing: 0px;
|
|
503
|
+
font-weight: 700;
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* Copyright (c) "Neo4j"
|
|
508
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
509
|
+
*
|
|
510
|
+
* This file is part of Neo4j.
|
|
511
|
+
*
|
|
512
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
513
|
+
* it under the terms of the GNU General Public License as published by
|
|
514
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
515
|
+
* (at your option) any later version.
|
|
516
|
+
*
|
|
517
|
+
* This program is distributed in the hope that it will be useful,
|
|
518
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
519
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
520
|
+
* GNU General Public License for more details.
|
|
521
|
+
*
|
|
522
|
+
* You should have received a copy of the GNU General Public License
|
|
523
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
524
|
+
*/
|
|
525
|
+
/**
|
|
526
|
+
*
|
|
527
|
+
* Copyright (c) "Neo4j"
|
|
528
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
529
|
+
*
|
|
530
|
+
* This file is part of Neo4j.
|
|
531
|
+
*
|
|
532
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
533
|
+
* it under the terms of the GNU General Public License as published by
|
|
534
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
535
|
+
* (at your option) any later version.
|
|
536
|
+
*
|
|
537
|
+
* This program is distributed in the hope that it will be useful,
|
|
538
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
539
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
540
|
+
* GNU General Public License for more details.
|
|
541
|
+
*
|
|
542
|
+
* You should have received a copy of the GNU General Public License
|
|
543
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
544
|
+
*/
|
|
545
|
+
.ndl-btn {
|
|
546
|
+
transition: background-color 75ms ease;
|
|
547
|
+
display: inline-flex;
|
|
548
|
+
cursor: pointer;
|
|
549
|
+
align-items: center;
|
|
550
|
+
justify-content: center;
|
|
551
|
+
gap: 0.125rem;
|
|
552
|
+
border-radius: 4px;
|
|
553
|
+
font-weight: 700;
|
|
554
|
+
}
|
|
555
|
+
.ndl-btn:focus{
|
|
556
|
+
outline-width: 0px;
|
|
557
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
558
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
559
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
560
|
+
--tw-ring-offset-width: 2px;
|
|
561
|
+
}
|
|
562
|
+
.ndl-btn.disabled, .ndl-btn.loading{
|
|
563
|
+
cursor: default;
|
|
564
|
+
opacity: 0.5;
|
|
565
|
+
}
|
|
566
|
+
.ndl-btn.rectangle{
|
|
567
|
+
width: 3rem;
|
|
568
|
+
}
|
|
569
|
+
.ndl-btn.small{
|
|
570
|
+
height: 1.75rem;
|
|
571
|
+
padding-left: 0.75rem;
|
|
572
|
+
padding-right: 0.75rem;
|
|
573
|
+
padding-top: 0.25rem;
|
|
574
|
+
padding-bottom: 0.25rem;
|
|
575
|
+
font-size: 14px;
|
|
576
|
+
line-height: 20px;
|
|
577
|
+
letter-spacing: 0px;
|
|
578
|
+
}
|
|
579
|
+
.ndl-btn.regular{
|
|
580
|
+
height: 2.25rem;
|
|
581
|
+
padding-left: 1.5rem;
|
|
582
|
+
padding-right: 1.5rem;
|
|
583
|
+
padding-top: 0.5rem;
|
|
584
|
+
padding-bottom: 0.5rem;
|
|
585
|
+
font-size: 14px;
|
|
586
|
+
line-height: 20px;
|
|
587
|
+
letter-spacing: 0px;
|
|
588
|
+
}
|
|
589
|
+
.ndl-btn.large{
|
|
590
|
+
height: 3rem;
|
|
591
|
+
padding-left: 1.5rem;
|
|
592
|
+
padding-right: 1.5rem;
|
|
593
|
+
padding-top: 0.75rem;
|
|
594
|
+
padding-bottom: 0.75rem;
|
|
595
|
+
font-size: 16px;
|
|
596
|
+
line-height: 24px;
|
|
597
|
+
letter-spacing: 0px;
|
|
598
|
+
}
|
|
599
|
+
.ndl-btn.rectangle{
|
|
600
|
+
border-radius: 6px;
|
|
601
|
+
}
|
|
602
|
+
.ndl-btn.small.rectangle{
|
|
603
|
+
width: 1.75rem;
|
|
604
|
+
padding: 0.5rem;
|
|
605
|
+
}
|
|
606
|
+
.ndl-btn.regular.rectangle{
|
|
607
|
+
width: 2.25rem;
|
|
608
|
+
padding: 0.5rem;
|
|
609
|
+
}
|
|
610
|
+
.ndl-btn.large.rectangle{
|
|
611
|
+
width: 3rem;
|
|
612
|
+
padding: 0.75rem;
|
|
613
|
+
}
|
|
614
|
+
.ndl-btn.filled{
|
|
615
|
+
border-width: 0px;
|
|
616
|
+
--tw-text-opacity: 1;
|
|
617
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
618
|
+
--tw-shadow: 0px 4px 8px 0px rgba(12, 26, 37, 0.04);
|
|
619
|
+
--tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
|
|
620
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
621
|
+
}
|
|
622
|
+
.ndl-btn.outlined{
|
|
623
|
+
border-width: 1px;
|
|
624
|
+
border-style: solid;
|
|
625
|
+
--tw-bg-opacity: 1;
|
|
626
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
627
|
+
--tw-shadow: 0px 4px 8px 0px rgba(12, 26, 37, 0.04);
|
|
628
|
+
--tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
|
|
629
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
630
|
+
}
|
|
631
|
+
.ndl-btn.text{
|
|
632
|
+
border-style: none;
|
|
633
|
+
background-color: transparent;
|
|
634
|
+
}
|
|
635
|
+
a.ndl-btn{
|
|
636
|
+
-webkit-text-decoration-line: none;
|
|
637
|
+
text-decoration-line: none;
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
*
|
|
641
|
+
* Copyright (c) "Neo4j"
|
|
642
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
643
|
+
*
|
|
644
|
+
* This file is part of Neo4j.
|
|
645
|
+
*
|
|
646
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
647
|
+
* it under the terms of the GNU General Public License as published by
|
|
648
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
649
|
+
* (at your option) any later version.
|
|
650
|
+
*
|
|
651
|
+
* This program is distributed in the hope that it will be useful,
|
|
652
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
653
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
654
|
+
* GNU General Public License for more details.
|
|
655
|
+
*
|
|
656
|
+
* You should have received a copy of the GNU General Public License
|
|
657
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
658
|
+
*/
|
|
659
|
+
.ndl-label{
|
|
660
|
+
display: flex;
|
|
661
|
+
height: 1.5rem;
|
|
662
|
+
max-width: -webkit-max-content;
|
|
663
|
+
max-width: -moz-max-content;
|
|
664
|
+
max-width: max-content;
|
|
665
|
+
flex-direction: column;
|
|
666
|
+
justify-content: center;
|
|
667
|
+
border-radius: 9999px;;
|
|
668
|
+
padding-left: 0.5rem;
|
|
669
|
+
padding-right: 0.5rem;
|
|
670
|
+
font-size: 14px;
|
|
671
|
+
line-height: 20px;
|
|
672
|
+
letter-spacing: 0px;
|
|
673
|
+
font-weight: 700;
|
|
674
|
+
text-transform: capitalize;
|
|
675
|
+
line-height: 1.25rem;
|
|
676
|
+
}
|
|
677
|
+
.ndl-label .label-content{
|
|
678
|
+
display: flex;
|
|
679
|
+
flex-direction: row;
|
|
680
|
+
align-items: center;
|
|
681
|
+
gap: 0.25rem;
|
|
682
|
+
font-family: "Nunito Sans";
|
|
683
|
+
}
|
|
684
|
+
.ndl-label .label-content svg{
|
|
685
|
+
height: 0.5rem;
|
|
686
|
+
width: 0.5rem;
|
|
687
|
+
}
|
|
688
|
+
.ndl-label.outlined{
|
|
689
|
+
border-width: 1px;
|
|
690
|
+
border-style: solid;
|
|
691
|
+
--tw-bg-opacity: 1;
|
|
692
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
693
|
+
}
|
|
694
|
+
.ndl-label.semi-filled{
|
|
695
|
+
border-width: 1px;
|
|
696
|
+
border-style: solid;
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* Copyright (c) "Neo4j"
|
|
701
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
702
|
+
*
|
|
703
|
+
* This file is part of Neo4j.
|
|
704
|
+
*
|
|
705
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
706
|
+
* it under the terms of the GNU General Public License as published by
|
|
707
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
708
|
+
* (at your option) any later version.
|
|
709
|
+
*
|
|
710
|
+
* This program is distributed in the hope that it will be useful,
|
|
711
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
712
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
713
|
+
* GNU General Public License for more details.
|
|
714
|
+
*
|
|
715
|
+
* You should have received a copy of the GNU General Public License
|
|
716
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
717
|
+
*/
|
|
718
|
+
.ndl-tabs.underline {
|
|
719
|
+
border-bottom-width: 1px;
|
|
720
|
+
border-bottom-style: solid;
|
|
721
|
+
--tw-border-opacity: 1;
|
|
722
|
+
border-bottom-color: rgb(238 241 246 / var(--tw-border-opacity));
|
|
723
|
+
}
|
|
724
|
+
.ndl-tabs .tab {
|
|
725
|
+
font-weight: 600;
|
|
726
|
+
background: none;
|
|
727
|
+
position: relative;
|
|
728
|
+
cursor: pointer;
|
|
729
|
+
border-width: 0px;
|
|
730
|
+
padding-left: 1rem;
|
|
731
|
+
padding-right: 1rem;
|
|
732
|
+
padding-top: 0.5rem;
|
|
733
|
+
padding-bottom: 0.5rem;
|
|
734
|
+
font-size: 16px;
|
|
735
|
+
line-height: 24px;
|
|
736
|
+
letter-spacing: 0px;
|
|
737
|
+
}
|
|
738
|
+
.ndl-tabs .tab.small{
|
|
739
|
+
padding-left: 0.5rem;
|
|
740
|
+
padding-right: 0.5rem;
|
|
741
|
+
padding-top: 0.25rem;
|
|
742
|
+
padding-bottom: 0.25rem;
|
|
743
|
+
font-size: 14px;
|
|
744
|
+
line-height: 20px;
|
|
745
|
+
letter-spacing: 0px;
|
|
746
|
+
}
|
|
747
|
+
.ndl-tabs .tab.small:not(:first-child){
|
|
748
|
+
margin-left: 0.25rem;
|
|
749
|
+
}
|
|
750
|
+
.ndl-tabs .tab.small:not(:last-child){
|
|
751
|
+
margin-right: 0.25rem;
|
|
752
|
+
}
|
|
753
|
+
.ndl-tabs .tab:not(:first-child){
|
|
754
|
+
margin-left: 0.5rem;
|
|
755
|
+
}
|
|
756
|
+
.ndl-tabs .tab:not(:last-child){
|
|
757
|
+
margin-right: 0.5rem;
|
|
758
|
+
}
|
|
759
|
+
.ndl-tabs .tab.disabled{
|
|
760
|
+
cursor: default;
|
|
761
|
+
--tw-text-opacity: 1;
|
|
762
|
+
color: rgb(178 183 189 / var(--tw-text-opacity));
|
|
763
|
+
}
|
|
764
|
+
.ndl-tabs .tab.underline .tab-underline {
|
|
765
|
+
bottom: -1px;
|
|
766
|
+
height: 4px;
|
|
767
|
+
position: absolute;
|
|
768
|
+
left: 0px;
|
|
769
|
+
width: 100%;
|
|
770
|
+
border-top-left-radius: 4px;
|
|
771
|
+
border-top-right-radius: 4px;
|
|
772
|
+
background-color: transparent;
|
|
773
|
+
}
|
|
774
|
+
.ndl-tabs .tab.underline:focus-visible {
|
|
775
|
+
outline: none;
|
|
776
|
+
}
|
|
777
|
+
.ndl-tabs .tab.underline:focus-visible .tab-underline{
|
|
778
|
+
--tw-bg-opacity: 1;
|
|
779
|
+
background-color: rgb(1 139 255 / var(--tw-bg-opacity));
|
|
780
|
+
}
|
|
781
|
+
.ndl-tabs .tab.underline:hover:not(.disabled):not(.selected) .tab-underline{
|
|
782
|
+
--tw-bg-opacity: 1;
|
|
783
|
+
background-color: rgb(113 119 128 / var(--tw-bg-opacity));
|
|
784
|
+
opacity: 0.1;
|
|
785
|
+
}
|
|
786
|
+
.ndl-tabs .tab.underline:active:not(.disabled):not(.selected) .tab-underline{
|
|
787
|
+
--tw-bg-opacity: 1;
|
|
788
|
+
background-color: rgb(113 119 128 / var(--tw-bg-opacity));
|
|
789
|
+
opacity: 0.2;
|
|
790
|
+
}
|
|
791
|
+
.ndl-tabs .tab.underline.selected:not(.disabled){
|
|
792
|
+
--tw-text-opacity: 1;
|
|
793
|
+
color: rgb(0 111 214 / var(--tw-text-opacity));
|
|
794
|
+
}
|
|
795
|
+
.ndl-tabs .tab.underline.selected:not(.disabled):not(:focus-visible) .tab-underline{
|
|
796
|
+
--tw-bg-opacity: 1;
|
|
797
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
798
|
+
}
|
|
799
|
+
.ndl-tabs .tab.underline.selected.disabled:not(:focus-visible) .tab-underline{
|
|
800
|
+
--tw-bg-opacity: 1;
|
|
801
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
802
|
+
}
|
|
803
|
+
.ndl-tabs .tab.filled{
|
|
804
|
+
border-radius: 4px;
|
|
805
|
+
padding-top: 0.25rem;
|
|
806
|
+
padding-bottom: 0.25rem;
|
|
807
|
+
}
|
|
808
|
+
.ndl-tabs .tab.filled:focus-visible {
|
|
809
|
+
outline: none;
|
|
810
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
811
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
812
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
813
|
+
--tw-ring-opacity: 1;
|
|
814
|
+
--tw-ring-color: rgb(1 139 255 / var(--tw-ring-opacity));
|
|
815
|
+
}
|
|
816
|
+
.ndl-tabs .tab.filled:hover:not(.disabled):not(.selected){
|
|
817
|
+
background-color: rgb(113 119 128 / var(--tw-bg-opacity));
|
|
818
|
+
--tw-bg-opacity: 0.1;
|
|
819
|
+
}
|
|
820
|
+
.ndl-tabs .tab.filled:active:not(.disabled):not(.selected){
|
|
821
|
+
background-color: rgb(113 119 128 / var(--tw-bg-opacity));
|
|
822
|
+
--tw-bg-opacity: 0.2;
|
|
823
|
+
}
|
|
824
|
+
.ndl-tabs .tab.filled.selected{
|
|
825
|
+
--tw-bg-opacity: 1;
|
|
826
|
+
background-color: rgb(230 248 255 / var(--tw-bg-opacity));
|
|
827
|
+
--tw-text-opacity: 1;
|
|
828
|
+
color: rgb(0 111 214 / var(--tw-text-opacity));
|
|
829
|
+
}
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* Copyright (c) "Neo4j"
|
|
833
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
834
|
+
*
|
|
835
|
+
* This file is part of Neo4j.
|
|
836
|
+
*
|
|
837
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
838
|
+
* it under the terms of the GNU General Public License as published by
|
|
839
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
840
|
+
* (at your option) any later version.
|
|
841
|
+
*
|
|
842
|
+
* This program is distributed in the hope that it will be useful,
|
|
843
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
844
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
845
|
+
* GNU General Public License for more details.
|
|
846
|
+
*
|
|
847
|
+
* You should have received a copy of the GNU General Public License
|
|
848
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
849
|
+
*/
|
|
850
|
+
.ndl-alert{
|
|
851
|
+
padding: 1rem;
|
|
852
|
+
border-radius: 4px;
|
|
853
|
+
display: flex;
|
|
854
|
+
flex-direction: row;
|
|
855
|
+
-moz-column-gap: 1rem;
|
|
856
|
+
column-gap: 1rem;
|
|
857
|
+
}
|
|
858
|
+
.ndl-alert .alert-content{
|
|
859
|
+
flex: 1 1 0%;
|
|
860
|
+
}
|
|
861
|
+
.ndl-alert .alert-title{
|
|
862
|
+
display: flex;
|
|
863
|
+
justify-content: space-between;
|
|
864
|
+
}
|
|
865
|
+
.ndl-alert.with-description .alert-title{
|
|
866
|
+
margin: 0px;
|
|
867
|
+
font-size: 20px;
|
|
868
|
+
line-height: 28px;
|
|
869
|
+
letter-spacing: 0.25px;
|
|
870
|
+
font-weight: 700;
|
|
871
|
+
}
|
|
872
|
+
.ndl-alert .alert-icon{
|
|
873
|
+
height: 1.5rem;
|
|
874
|
+
width: 1.5rem;
|
|
875
|
+
}
|
|
876
|
+
.ndl-alert .alert-icon.close-icon{
|
|
877
|
+
--tw-text-opacity: 1;
|
|
878
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
879
|
+
cursor: pointer;
|
|
880
|
+
}
|
|
881
|
+
.ndl-alert .alert-description{
|
|
882
|
+
margin-top: 0.5rem;
|
|
883
|
+
}
|
|
884
|
+
.ndl-alert .alert-actions{
|
|
885
|
+
margin-top: 1.25rem;
|
|
886
|
+
display: flex;
|
|
887
|
+
-moz-column-gap: 1rem;
|
|
888
|
+
column-gap: 1rem;
|
|
889
|
+
}
|
|
890
|
+
.ndl-alert .alert-actions a{
|
|
891
|
+
cursor: pointer;
|
|
892
|
+
font-size: 16px;
|
|
893
|
+
line-height: 24px;
|
|
894
|
+
letter-spacing: 0px;
|
|
895
|
+
font-weight: 700;
|
|
896
|
+
-webkit-text-decoration-line: underline;
|
|
897
|
+
text-decoration-line: underline;
|
|
898
|
+
}
|
|
899
|
+
.ndl-alert.info{
|
|
900
|
+
--tw-bg-opacity: 1;
|
|
901
|
+
background-color: rgb(230 248 255 / var(--tw-bg-opacity));
|
|
902
|
+
border-width: 1px;
|
|
903
|
+
border-style: solid;
|
|
904
|
+
--tw-border-opacity: 1;
|
|
905
|
+
border-color: rgb(163 226 255 / var(--tw-border-opacity));
|
|
906
|
+
}
|
|
907
|
+
.ndl-alert.info .alert-status-icon{
|
|
908
|
+
--tw-text-opacity: 1;
|
|
909
|
+
color: rgb(0 111 214 / var(--tw-text-opacity));
|
|
910
|
+
}
|
|
911
|
+
.ndl-alert.success{
|
|
912
|
+
--tw-bg-opacity: 1;
|
|
913
|
+
background-color: rgb(225 250 239 / var(--tw-bg-opacity));
|
|
914
|
+
border-width: 1px;
|
|
915
|
+
border-style: solid;
|
|
916
|
+
--tw-border-opacity: 1;
|
|
917
|
+
border-color: rgb(152 237 203 / var(--tw-border-opacity));
|
|
918
|
+
}
|
|
919
|
+
.ndl-alert.success .alert-status-icon{
|
|
920
|
+
--tw-text-opacity: 1;
|
|
921
|
+
color: rgb(50 125 96 / var(--tw-text-opacity));
|
|
922
|
+
}
|
|
923
|
+
.ndl-alert.warning{
|
|
924
|
+
--tw-bg-opacity: 1;
|
|
925
|
+
background-color: rgb(255 251 222 / var(--tw-bg-opacity));
|
|
926
|
+
border-width: 1px;
|
|
927
|
+
border-style: solid;
|
|
928
|
+
--tw-border-opacity: 1;
|
|
929
|
+
border-color: rgb(255 244 181 / var(--tw-border-opacity));
|
|
930
|
+
}
|
|
931
|
+
.ndl-alert.warning .alert-status-icon{
|
|
932
|
+
--tw-text-opacity: 1;
|
|
933
|
+
color: rgb(217 181 74 / var(--tw-text-opacity));
|
|
934
|
+
}
|
|
935
|
+
.ndl-alert.danger{
|
|
936
|
+
--tw-bg-opacity: 1;
|
|
937
|
+
background-color: rgb(255 230 233 / var(--tw-bg-opacity));
|
|
938
|
+
border-width: 1px;
|
|
939
|
+
border-style: solid;
|
|
940
|
+
--tw-border-opacity: 1;
|
|
941
|
+
border-color: rgb(255 184 196 / var(--tw-border-opacity));
|
|
942
|
+
}
|
|
943
|
+
.ndl-alert.danger .alert-status-icon{
|
|
944
|
+
--tw-text-opacity: 1;
|
|
945
|
+
color: rgb(204 37 75 / var(--tw-text-opacity));
|
|
946
|
+
}
|
|
947
|
+
.ndl-alert.floating{
|
|
948
|
+
--tw-shadow: 0px 8px 20px 0px rgba(12, 26, 37, 0.12);
|
|
949
|
+
--tw-shadow-colored: 0px 8px 20px 0px var(--tw-shadow-color);
|
|
950
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
951
|
+
}
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* Copyright (c) "Neo4j"
|
|
955
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
956
|
+
*
|
|
957
|
+
* This file is part of Neo4j.
|
|
958
|
+
*
|
|
959
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
960
|
+
* it under the terms of the GNU General Public License as published by
|
|
961
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
962
|
+
* (at your option) any later version.
|
|
963
|
+
*
|
|
964
|
+
* This program is distributed in the hope that it will be useful,
|
|
965
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
966
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
967
|
+
* GNU General Public License for more details.
|
|
968
|
+
*
|
|
969
|
+
* You should have received a copy of the GNU General Public License
|
|
970
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
971
|
+
*/
|
|
972
|
+
.ndl-tooltip-wrapper{
|
|
973
|
+
position: relative;
|
|
974
|
+
width: -webkit-fit-content;
|
|
975
|
+
width: -moz-fit-content;
|
|
976
|
+
width: fit-content;
|
|
977
|
+
border-radius: 4px;
|
|
978
|
+
--tw-bg-opacity: 1;
|
|
979
|
+
background-color: rgb(83 91 102 / var(--tw-bg-opacity));
|
|
980
|
+
padding-left: 0.5rem;
|
|
981
|
+
padding-right: 0.5rem;
|
|
982
|
+
padding-top: 0.75rem;
|
|
983
|
+
padding-bottom: 0.75rem;
|
|
984
|
+
font-size: 12px;
|
|
985
|
+
line-height: 20px;
|
|
986
|
+
letter-spacing: 0px;
|
|
987
|
+
--tw-text-opacity: 1;
|
|
988
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
989
|
+
}
|
|
990
|
+
.ndl-tooltip-wrapper .tooltip-triangle{
|
|
991
|
+
position: absolute;
|
|
992
|
+
height: 0px;
|
|
993
|
+
width: 0px;
|
|
994
|
+
border-style: solid;
|
|
995
|
+
--tw-border-opacity: 1;
|
|
996
|
+
border-color: rgb(83 91 102 / var(--tw-border-opacity));
|
|
997
|
+
}
|
|
998
|
+
.ndl-tooltip-wrapper .tooltip-triangle.bottom{
|
|
999
|
+
bottom: -8px;
|
|
1000
|
+
left: 0px;
|
|
1001
|
+
right: 0px;
|
|
1002
|
+
margin: auto;
|
|
1003
|
+
border-left-width: 8px;
|
|
1004
|
+
border-right-width: 8px;
|
|
1005
|
+
border-top-width: 8px;
|
|
1006
|
+
border-bottom-width: 0px;
|
|
1007
|
+
border-left-color: transparent;
|
|
1008
|
+
border-right-color: transparent; /* point down */
|
|
1009
|
+
}
|
|
1010
|
+
.ndl-tooltip-wrapper .tooltip-triangle.left{
|
|
1011
|
+
left: -8px;
|
|
1012
|
+
top: 0px;
|
|
1013
|
+
bottom: 0px;
|
|
1014
|
+
margin: auto;
|
|
1015
|
+
border-top-width: 8px;
|
|
1016
|
+
border-bottom-width: 8px;
|
|
1017
|
+
border-right-width: 8px;
|
|
1018
|
+
border-left-width: 0px;
|
|
1019
|
+
border-top-color: transparent;
|
|
1020
|
+
border-bottom-color: transparent; /* point left */
|
|
1021
|
+
}
|
|
1022
|
+
.ndl-tooltip-wrapper .tooltip-triangle.right{
|
|
1023
|
+
right: -8px;
|
|
1024
|
+
top: 0px;
|
|
1025
|
+
bottom: 0px;
|
|
1026
|
+
margin: auto;
|
|
1027
|
+
border-top-width: 8px;
|
|
1028
|
+
border-bottom-width: 8px;
|
|
1029
|
+
border-left-width: 8px;
|
|
1030
|
+
border-right-width: 0px;
|
|
1031
|
+
border-top-color: transparent;
|
|
1032
|
+
border-bottom-color: transparent; /* point right */
|
|
1033
|
+
}
|
|
1034
|
+
.ndl-tooltip-wrapper .tooltip-triangle.top{
|
|
1035
|
+
top: -8px;
|
|
1036
|
+
left: 0px;
|
|
1037
|
+
right: 0px;
|
|
1038
|
+
margin: auto;
|
|
1039
|
+
border-left-width: 8px;
|
|
1040
|
+
border-right-width: 8px;
|
|
1041
|
+
border-bottom-width: 8px;
|
|
1042
|
+
border-top-width: 0px;
|
|
1043
|
+
border-left-color: transparent;
|
|
1044
|
+
border-right-color: transparent; /* point up */
|
|
1045
|
+
}
|
|
1046
|
+
.ndl-tooltip-wrapper .tooltip-triangle.top-left{
|
|
1047
|
+
top: -8px;
|
|
1048
|
+
left: 15px;
|
|
1049
|
+
border-left-width: 8px;
|
|
1050
|
+
border-right-width: 8px;
|
|
1051
|
+
border-bottom-width: 8px;
|
|
1052
|
+
border-top-width: 0px;
|
|
1053
|
+
border-left-color: transparent;
|
|
1054
|
+
border-right-color: transparent; /* point up */
|
|
1055
|
+
}
|
|
1056
|
+
.ndl-tooltip-wrapper .tooltip-triangle.top-right{
|
|
1057
|
+
top: -8px;
|
|
1058
|
+
right: 15px;
|
|
1059
|
+
border-left-width: 8px;
|
|
1060
|
+
border-right-width: 8px;
|
|
1061
|
+
border-bottom-width: 8px;
|
|
1062
|
+
border-top-width: 0px;
|
|
1063
|
+
border-left-color: transparent;
|
|
1064
|
+
border-right-color: transparent; /* point up */
|
|
1065
|
+
}
|
|
1066
|
+
/**
|
|
1067
|
+
*
|
|
1068
|
+
* Copyright (c) "Neo4j"
|
|
1069
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1070
|
+
*
|
|
1071
|
+
* This file is part of Neo4j.
|
|
1072
|
+
*
|
|
1073
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1074
|
+
* it under the terms of the GNU General Public License as published by
|
|
1075
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1076
|
+
* (at your option) any later version.
|
|
1077
|
+
*
|
|
1078
|
+
* This program is distributed in the hope that it will be useful,
|
|
1079
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1080
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1081
|
+
* GNU General Public License for more details.
|
|
1082
|
+
*
|
|
1083
|
+
* You should have received a copy of the GNU General Public License
|
|
1084
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1085
|
+
*/
|
|
1086
|
+
.ndl-form-item{
|
|
1087
|
+
cursor: pointer;
|
|
1088
|
+
}
|
|
1089
|
+
.ndl-form-item input[type='checkbox'], .ndl-form-item input[type='radio']{
|
|
1090
|
+
cursor: pointer;
|
|
1091
|
+
position: relative;
|
|
1092
|
+
height: 1rem;
|
|
1093
|
+
width: 1rem;
|
|
1094
|
+
border-width: 1px;
|
|
1095
|
+
border-style: solid;
|
|
1096
|
+
--tw-border-opacity: 1;
|
|
1097
|
+
border-color: rgb(196 200 205 / var(--tw-border-opacity));
|
|
1098
|
+
border-radius: 4px;
|
|
1099
|
+
-webkit-appearance: none;
|
|
1100
|
+
-moz-appearance: none;
|
|
1101
|
+
appearance: none;
|
|
1102
|
+
}
|
|
1103
|
+
.ndl-form-item input[type='checkbox']:hover:enabled, .ndl-form-item input[type='radio']:hover:enabled{
|
|
1104
|
+
outline-style: solid;
|
|
1105
|
+
outline-width: 10px;
|
|
1106
|
+
outline-offset: 0px;
|
|
1107
|
+
outline-color: rgb(196 200 205 / 0.1);
|
|
1108
|
+
}
|
|
1109
|
+
.ndl-form-item input[type='checkbox']:focus:enabled, .ndl-form-item input[type='radio']:focus:enabled{
|
|
1110
|
+
outline-style: solid;
|
|
1111
|
+
outline-width: 2px;
|
|
1112
|
+
outline-offset: 1px;
|
|
1113
|
+
outline-color: #006FD6;
|
|
1114
|
+
}
|
|
1115
|
+
.ndl-form-item input[type='checkbox']:active:enabled, .ndl-form-item input[type='radio']:active:enabled{
|
|
1116
|
+
outline-style: solid;
|
|
1117
|
+
outline-width: 10px;
|
|
1118
|
+
outline-offset: 0px;
|
|
1119
|
+
outline-color: rgb(196 200 205 / 0.2);
|
|
1120
|
+
}
|
|
1121
|
+
.ndl-form-item input[type='checkbox']:checked, .ndl-form-item input[type='radio']:checked{
|
|
1122
|
+
--tw-border-opacity: 1;
|
|
1123
|
+
border-color: rgb(0 111 214 / var(--tw-border-opacity));
|
|
1124
|
+
--tw-bg-opacity: 1;
|
|
1125
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
1126
|
+
}
|
|
1127
|
+
.ndl-form-item input[type='checkbox']:checked:hover, .ndl-form-item input[type='radio']:checked:hover{
|
|
1128
|
+
outline-color: rgb(0 111 214 / 0.1);
|
|
1129
|
+
}
|
|
1130
|
+
.ndl-form-item input[type='checkbox']:checked:active, .ndl-form-item input[type='radio']:checked:active{
|
|
1131
|
+
outline-style: solid;
|
|
1132
|
+
outline-color: rgb(0 111 214 / 0.2);
|
|
1133
|
+
}
|
|
1134
|
+
.ndl-form-item input[type='checkbox']:disabled, .ndl-form-item input[type='radio']:disabled{
|
|
1135
|
+
cursor: not-allowed;
|
|
1136
|
+
--tw-border-opacity: 1;
|
|
1137
|
+
border-color: rgb(230 233 238 / var(--tw-border-opacity));
|
|
1138
|
+
}
|
|
1139
|
+
.ndl-form-item input[type='checkbox']:disabled:checked, .ndl-form-item input[type='radio']:disabled:checked{
|
|
1140
|
+
--tw-bg-opacity: 1;
|
|
1141
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
1142
|
+
}
|
|
1143
|
+
/* Checkbox */
|
|
1144
|
+
.ndl-form-item input[type='checkbox']::after {
|
|
1145
|
+
font-size: 14px;
|
|
1146
|
+
width: 100%;
|
|
1147
|
+
position: absolute;
|
|
1148
|
+
top: 0;
|
|
1149
|
+
left: 0;
|
|
1150
|
+
color: #fff;
|
|
1151
|
+
}
|
|
1152
|
+
.ndl-form-item input[type='checkbox']:checked::after {
|
|
1153
|
+
content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg>');
|
|
1154
|
+
}
|
|
1155
|
+
.ndl-form-item input[type='checkbox']:indeterminate{
|
|
1156
|
+
--tw-border-opacity: 1;
|
|
1157
|
+
border-color: rgb(0 111 214 / var(--tw-border-opacity));
|
|
1158
|
+
--tw-bg-opacity: 1;
|
|
1159
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
1160
|
+
}
|
|
1161
|
+
.ndl-form-item input[type='checkbox']:indeterminate::after {
|
|
1162
|
+
content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M18 12H6" /></svg>');
|
|
1163
|
+
}
|
|
1164
|
+
.ndl-form-item input[type='checkbox']:disabled{
|
|
1165
|
+
--tw-border-opacity: 1;
|
|
1166
|
+
border-color: rgb(230 233 238 / var(--tw-border-opacity));
|
|
1167
|
+
--tw-bg-opacity: 1;
|
|
1168
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
1169
|
+
}
|
|
1170
|
+
/* Switch */
|
|
1171
|
+
.ndl-form-item input[type='checkbox'][role='switch'] {
|
|
1172
|
+
--thumb-size: 1rem;
|
|
1173
|
+
--track-size: calc(var(--thumb-size) * 2);
|
|
1174
|
+
border-radius: 9999px;;
|
|
1175
|
+
--tw-bg-opacity: 1;
|
|
1176
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
1177
|
+
border-style: none;
|
|
1178
|
+
display: grid;
|
|
1179
|
+
align-items: center;
|
|
1180
|
+
|
|
1181
|
+
grid: [track] 1fr / [track] 1fr;
|
|
1182
|
+
padding: 2px;
|
|
1183
|
+
inline-size: var(--track-size);
|
|
1184
|
+
block-size: var(--thumb-size);
|
|
1185
|
+
touch-action: pan-y;
|
|
1186
|
+
pointer-events: auto;
|
|
1187
|
+
box-sizing: content-box;
|
|
1188
|
+
transition: background-color 0.25s ease;
|
|
1189
|
+
}
|
|
1190
|
+
.ndl-form-item input[type='checkbox'][role='switch']:hover:enabled{
|
|
1191
|
+
outline-width: 3px;
|
|
1192
|
+
outline-offset: 0px;
|
|
1193
|
+
}
|
|
1194
|
+
.ndl-form-item input[type='checkbox'][role='switch']:focus:enabled{
|
|
1195
|
+
outline-width: 2px;
|
|
1196
|
+
outline-offset: 1px;
|
|
1197
|
+
}
|
|
1198
|
+
.ndl-form-item input[type='checkbox'][role='switch']::before {
|
|
1199
|
+
inline-size: var(--thumb-size);
|
|
1200
|
+
block-size: var(--thumb-size);
|
|
1201
|
+
border-radius: 9999px;;
|
|
1202
|
+
|
|
1203
|
+
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
|
1204
|
+
content: '';
|
|
1205
|
+
grid-area: track;
|
|
1206
|
+
transform: translateX(0);
|
|
1207
|
+
--tw-bg-opacity: 1;
|
|
1208
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1209
|
+
}
|
|
1210
|
+
.ndl-form-item input[type='checkbox'][role='switch']::after {
|
|
1211
|
+
content: '';
|
|
1212
|
+
}
|
|
1213
|
+
.ndl-form-item input[type='checkbox'][role='switch']:checked{
|
|
1214
|
+
--tw-bg-opacity: 1;
|
|
1215
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
1216
|
+
}
|
|
1217
|
+
.ndl-form-item input[type='checkbox'][role='switch']:checked::before {
|
|
1218
|
+
transform: translateX(calc(var(--track-size) - var(--thumb-size)));
|
|
1219
|
+
}
|
|
1220
|
+
.ndl-form-item input[type='checkbox'][role='switch']:indeterminate{
|
|
1221
|
+
--tw-bg-opacity: 1;
|
|
1222
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
1223
|
+
}
|
|
1224
|
+
.ndl-form-item input[type='checkbox'][role='switch']:indeterminate::before {
|
|
1225
|
+
transform: translateX(
|
|
1226
|
+
calc(var(--track-size) - var(--thumb-size) * 1.5)
|
|
1227
|
+
);
|
|
1228
|
+
}
|
|
1229
|
+
.ndl-form-item input[type='checkbox'][role='switch']:disabled{
|
|
1230
|
+
--tw-bg-opacity: 1;
|
|
1231
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
1232
|
+
}
|
|
1233
|
+
/* Radio */
|
|
1234
|
+
.ndl-form-item input[type='radio']{
|
|
1235
|
+
border-radius: 9999px;;
|
|
1236
|
+
}
|
|
1237
|
+
.ndl-form-item input[type='radio']:checked{
|
|
1238
|
+
border-width: 2px;
|
|
1239
|
+
}
|
|
1240
|
+
.ndl-form-item input[type='radio']:checked::before {
|
|
1241
|
+
content: '';
|
|
1242
|
+
border: 2px solid white;
|
|
1243
|
+
width: 100%;
|
|
1244
|
+
height: 100%;
|
|
1245
|
+
position: absolute;
|
|
1246
|
+
left: 0;
|
|
1247
|
+
border-radius: 9999px;
|
|
1248
|
+
top: 0;
|
|
1249
|
+
}
|
|
1250
|
+
/* Label */
|
|
1251
|
+
.ndl-form-item .form-item-label{
|
|
1252
|
+
display: inline-flex;
|
|
1253
|
+
align-items: center;
|
|
1254
|
+
-moz-column-gap: 0.75rem;
|
|
1255
|
+
column-gap: 0.75rem;
|
|
1256
|
+
}
|
|
1257
|
+
.ndl-form-item .form-item-label.fluid{
|
|
1258
|
+
display: flex;
|
|
1259
|
+
justify-content: space-between;
|
|
1260
|
+
}
|
|
1261
|
+
.ndl-form-item .form-item-label.label-before{
|
|
1262
|
+
flex-direction: row-reverse;
|
|
1263
|
+
}
|
|
1264
|
+
.ndl-form-item.disabled .form-item-label{
|
|
1265
|
+
cursor: not-allowed;
|
|
1266
|
+
--tw-text-opacity: 1;
|
|
1267
|
+
color: rgb(230 233 238 / var(--tw-text-opacity));
|
|
1268
|
+
}
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* Copyright (c) "Neo4j"
|
|
1272
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1273
|
+
*
|
|
1274
|
+
* This file is part of Neo4j.
|
|
1275
|
+
*
|
|
1276
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1277
|
+
* it under the terms of the GNU General Public License as published by
|
|
1278
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1279
|
+
* (at your option) any later version.
|
|
1280
|
+
*
|
|
1281
|
+
* This program is distributed in the hope that it will be useful,
|
|
1282
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1283
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1284
|
+
* GNU General Public License for more details.
|
|
1285
|
+
*
|
|
1286
|
+
* You should have received a copy of the GNU General Public License
|
|
1287
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1288
|
+
*/
|
|
1289
|
+
.ndl-progress-bar-wrapper{
|
|
1290
|
+
display: flex;
|
|
1291
|
+
flex-direction: column;
|
|
1292
|
+
}
|
|
1293
|
+
.ndl-progress-bar-wrapper .header{
|
|
1294
|
+
display: flex;
|
|
1295
|
+
flex-direction: row;
|
|
1296
|
+
justify-content: space-between;
|
|
1297
|
+
}
|
|
1298
|
+
.ndl-progress-bar-wrapper .header .heading{
|
|
1299
|
+
--tw-text-opacity: 1;
|
|
1300
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
1301
|
+
}
|
|
1302
|
+
.ndl-progress-bar-wrapper .header .heading::after {
|
|
1303
|
+
display: inline-block;
|
|
1304
|
+
-webkit-animation: dotty steps(1, end) 2s infinite;
|
|
1305
|
+
animation: dotty steps(1, end) 2s infinite;
|
|
1306
|
+
content: '';
|
|
1307
|
+
}
|
|
1308
|
+
@-webkit-keyframes dotty {
|
|
1309
|
+
0% {
|
|
1310
|
+
content: '';
|
|
1311
|
+
}
|
|
1312
|
+
25% {
|
|
1313
|
+
content: '.';
|
|
1314
|
+
}
|
|
1315
|
+
50% {
|
|
1316
|
+
content: '..';
|
|
1317
|
+
}
|
|
1318
|
+
75% {
|
|
1319
|
+
content: '...';
|
|
1320
|
+
}
|
|
1321
|
+
100% {
|
|
1322
|
+
content: '';
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
@keyframes dotty {
|
|
1326
|
+
0% {
|
|
1327
|
+
content: '';
|
|
1328
|
+
}
|
|
1329
|
+
25% {
|
|
1330
|
+
content: '.';
|
|
1331
|
+
}
|
|
1332
|
+
50% {
|
|
1333
|
+
content: '..';
|
|
1334
|
+
}
|
|
1335
|
+
75% {
|
|
1336
|
+
content: '...';
|
|
1337
|
+
}
|
|
1338
|
+
100% {
|
|
1339
|
+
content: '';
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
.ndl-progress-bar-wrapper .header .progress-number{
|
|
1343
|
+
font-weight: 700;
|
|
1344
|
+
--tw-text-opacity: 1;
|
|
1345
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
1346
|
+
}
|
|
1347
|
+
.ndl-progress-bar-wrapper .progress-bar-container{
|
|
1348
|
+
margin-top: 6px;
|
|
1349
|
+
margin-bottom: 6px;
|
|
1350
|
+
--tw-bg-opacity: 1;
|
|
1351
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
1352
|
+
}
|
|
1353
|
+
.ndl-progress-bar-wrapper .progress-bar-container .progress-bar{
|
|
1354
|
+
--tw-bg-opacity: 1;
|
|
1355
|
+
background-color: rgb(1 139 255 / var(--tw-bg-opacity));
|
|
1356
|
+
--tw-shadow: 0px 4px 8px 0px rgba(12, 26, 37, 0.08);
|
|
1357
|
+
--tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
|
|
1358
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1359
|
+
transition-property: width;
|
|
1360
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1361
|
+
transition-duration: 1000ms;
|
|
1362
|
+
}
|
|
1363
|
+
.ndl-progress-bar-wrapper .details{
|
|
1364
|
+
display: flex;
|
|
1365
|
+
flex-direction: row;
|
|
1366
|
+
justify-content: flex-end;
|
|
1367
|
+
font-style: italic;
|
|
1368
|
+
--tw-text-opacity: 1;
|
|
1369
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1370
|
+
}
|
|
1371
|
+
.ndl-progress-bar-wrapper .details .estimated-time-heading{
|
|
1372
|
+
margin-right: 5px;
|
|
1373
|
+
}
|
|
1374
|
+
.ndl-progress-bar-wrapper .details .estimated-time{
|
|
1375
|
+
font-weight: 600;
|
|
1376
|
+
}
|
|
1377
|
+
.ndl-progress-bar-wrapper.large .heading{
|
|
1378
|
+
font-size: 16px;
|
|
1379
|
+
line-height: 24px;
|
|
1380
|
+
letter-spacing: 0px;
|
|
1381
|
+
}
|
|
1382
|
+
.ndl-progress-bar-wrapper.large .progress-number{
|
|
1383
|
+
font-size: 16px;
|
|
1384
|
+
line-height: 24px;
|
|
1385
|
+
letter-spacing: 0.25px;
|
|
1386
|
+
}
|
|
1387
|
+
.ndl-progress-bar-wrapper.large .progress-bar-container, .ndl-progress-bar-wrapper.large .progress-bar{
|
|
1388
|
+
height: 0.5rem;
|
|
1389
|
+
min-width: 3%;
|
|
1390
|
+
border-radius: 6px;
|
|
1391
|
+
}
|
|
1392
|
+
.ndl-progress-bar-wrapper.large .details{
|
|
1393
|
+
font-size: 14px;
|
|
1394
|
+
line-height: 20px;
|
|
1395
|
+
letter-spacing: 0px;
|
|
1396
|
+
}
|
|
1397
|
+
.ndl-progress-bar-wrapper.small .heading{
|
|
1398
|
+
font-size: 14px;
|
|
1399
|
+
line-height: 20px;
|
|
1400
|
+
letter-spacing: 0px;
|
|
1401
|
+
}
|
|
1402
|
+
.ndl-progress-bar-wrapper.small .progress-number{
|
|
1403
|
+
font-size: 14px;
|
|
1404
|
+
line-height: 20px;
|
|
1405
|
+
letter-spacing: 0px;
|
|
1406
|
+
}
|
|
1407
|
+
.ndl-progress-bar-wrapper.small .progress-bar-container, .ndl-progress-bar-wrapper.small .progress-bar{
|
|
1408
|
+
height: 0.25rem;
|
|
1409
|
+
min-width: 2%;
|
|
1410
|
+
border-radius: 4px;
|
|
1411
|
+
}
|
|
1412
|
+
.ndl-progress-bar-wrapper.small .details{
|
|
1413
|
+
font-size: 12px;
|
|
1414
|
+
line-height: 20px;
|
|
1415
|
+
letter-spacing: 0px;
|
|
1416
|
+
}
|
|
1417
|
+
/**
|
|
1418
|
+
*
|
|
1419
|
+
* Copyright (c) "Neo4j"
|
|
1420
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1421
|
+
*
|
|
1422
|
+
* This file is part of Neo4j.
|
|
1423
|
+
*
|
|
1424
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1425
|
+
* it under the terms of the GNU General Public License as published by
|
|
1426
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1427
|
+
* (at your option) any later version.
|
|
1428
|
+
*
|
|
1429
|
+
* This program is distributed in the hope that it will be useful,
|
|
1430
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1431
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1432
|
+
* GNU General Public License for more details.
|
|
1433
|
+
*
|
|
1434
|
+
* You should have received a copy of the GNU General Public License
|
|
1435
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1436
|
+
*/
|
|
1437
|
+
.ndl-tag{
|
|
1438
|
+
display: inline-flex;
|
|
1439
|
+
align-items: center;
|
|
1440
|
+
justify-content: center;
|
|
1441
|
+
-moz-column-gap: 0.5rem;
|
|
1442
|
+
column-gap: 0.5rem;
|
|
1443
|
+
border-radius: 4px;
|
|
1444
|
+
padding-left: 0.5rem;
|
|
1445
|
+
padding-right: 0.5rem;
|
|
1446
|
+
padding-top: 0.5rem;
|
|
1447
|
+
padding-bottom: 0.5rem;
|
|
1448
|
+
--tw-bg-opacity: 1;
|
|
1449
|
+
background-color: rgb(245 247 250 / var(--tw-bg-opacity));
|
|
1450
|
+
font-size: 14px;
|
|
1451
|
+
line-height: 20px;
|
|
1452
|
+
letter-spacing: 0px;
|
|
1453
|
+
}
|
|
1454
|
+
.ndl-tag .remove-icon{
|
|
1455
|
+
height: 1rem;
|
|
1456
|
+
width: 1rem;
|
|
1457
|
+
--tw-text-opacity: 1;
|
|
1458
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
1459
|
+
}
|
|
1460
|
+
.ndl-tag.destructive{
|
|
1461
|
+
--tw-bg-opacity: 1;
|
|
1462
|
+
background-color: rgb(255 230 233 / var(--tw-bg-opacity));
|
|
1463
|
+
--tw-text-opacity: 1;
|
|
1464
|
+
color: rgb(204 37 75 / var(--tw-text-opacity));
|
|
1465
|
+
}
|
|
1466
|
+
/**
|
|
1467
|
+
*
|
|
1468
|
+
* Copyright (c) "Neo4j"
|
|
1469
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1470
|
+
*
|
|
1471
|
+
* This file is part of Neo4j.
|
|
1472
|
+
*
|
|
1473
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1474
|
+
* it under the terms of the GNU General Public License as published by
|
|
1475
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1476
|
+
* (at your option) any later version.
|
|
1477
|
+
*
|
|
1478
|
+
* This program is distributed in the hope that it will be useful,
|
|
1479
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1480
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1481
|
+
* GNU General Public License for more details.
|
|
1482
|
+
*
|
|
1483
|
+
* You should have received a copy of the GNU General Public License
|
|
1484
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1485
|
+
*/
|
|
1486
|
+
.ndl-menu{
|
|
1487
|
+
padding: 1rem;
|
|
1488
|
+
}
|
|
1489
|
+
.ndl-menu.large .menu-item{
|
|
1490
|
+
padding-top: 0.75rem;
|
|
1491
|
+
padding-bottom: 0.75rem;
|
|
1492
|
+
padding-left: 1.25rem;
|
|
1493
|
+
padding-right: 1.25rem;
|
|
1494
|
+
}
|
|
1495
|
+
.ndl-menu.large .menu-item-title{
|
|
1496
|
+
width: 100%;
|
|
1497
|
+
font-size: 16px;
|
|
1498
|
+
line-height: 24px;
|
|
1499
|
+
letter-spacing: 0.25px;
|
|
1500
|
+
}
|
|
1501
|
+
.ndl-menu.large .menu-item-description{
|
|
1502
|
+
padding-top: 0.25rem;
|
|
1503
|
+
font-size: 14px;
|
|
1504
|
+
line-height: 20px;
|
|
1505
|
+
letter-spacing: 0px;
|
|
1506
|
+
}
|
|
1507
|
+
.ndl-menu.large .menu-item-icon{
|
|
1508
|
+
height: 1rem;
|
|
1509
|
+
width: 1rem;
|
|
1510
|
+
}
|
|
1511
|
+
.ndl-menu.large .menu-header{
|
|
1512
|
+
padding-left: 1.25rem;
|
|
1513
|
+
padding-right: 1.25rem;
|
|
1514
|
+
padding-top: 0.75rem;
|
|
1515
|
+
font-size: 16px;
|
|
1516
|
+
line-height: 24px;
|
|
1517
|
+
letter-spacing: 0.25px;
|
|
1518
|
+
}
|
|
1519
|
+
.ndl-menu.large .menu-header .menu-header-title{
|
|
1520
|
+
font-size: 20px;
|
|
1521
|
+
line-height: 28px;
|
|
1522
|
+
letter-spacing: 0.25px;
|
|
1523
|
+
}
|
|
1524
|
+
.ndl-menu.large .menu-header .menu-header-description{
|
|
1525
|
+
padding-top: 0.25rem;
|
|
1526
|
+
font-size: 14px;
|
|
1527
|
+
line-height: 20px;
|
|
1528
|
+
letter-spacing: 0px;
|
|
1529
|
+
}
|
|
1530
|
+
.ndl-menu.large .menu-header .menu-header-icon {
|
|
1531
|
+
width: 22px;
|
|
1532
|
+
height: 22px;
|
|
1533
|
+
}
|
|
1534
|
+
.ndl-menu .menu-items{
|
|
1535
|
+
display: flex;
|
|
1536
|
+
flex-direction: column;
|
|
1537
|
+
outline: 2px solid transparent;
|
|
1538
|
+
outline-offset: 2px;
|
|
1539
|
+
}
|
|
1540
|
+
.ndl-menu .menu-item{
|
|
1541
|
+
z-index: 2;
|
|
1542
|
+
cursor: pointer;
|
|
1543
|
+
padding: 0.5rem;
|
|
1544
|
+
font-size: 14px;
|
|
1545
|
+
line-height: 20px;
|
|
1546
|
+
letter-spacing: 0px;
|
|
1547
|
+
outline: 2px solid transparent;
|
|
1548
|
+
outline-offset: 2px;
|
|
1549
|
+
}
|
|
1550
|
+
.ndl-menu .menu-item:hover:not(.disabled), .ndl-menu .menu-item:focus-visible{
|
|
1551
|
+
border-radius: 8px;
|
|
1552
|
+
--tw-bg-opacity: 1;
|
|
1553
|
+
background-color: rgb(245 247 250 / var(--tw-bg-opacity));
|
|
1554
|
+
}
|
|
1555
|
+
.ndl-menu .menu-item.disabled{
|
|
1556
|
+
cursor: default;
|
|
1557
|
+
}
|
|
1558
|
+
.ndl-menu .menu-item.disabled .menu-item-title{
|
|
1559
|
+
--tw-text-opacity: 1;
|
|
1560
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1561
|
+
}
|
|
1562
|
+
.ndl-menu .menu-item.disabled .menu-item-description{
|
|
1563
|
+
--tw-text-opacity: 1;
|
|
1564
|
+
color: rgb(178 183 189 / var(--tw-text-opacity));
|
|
1565
|
+
}
|
|
1566
|
+
.ndl-menu .menu-item-title{
|
|
1567
|
+
width: 100%;
|
|
1568
|
+
font-size: 14px;
|
|
1569
|
+
line-height: 20px;
|
|
1570
|
+
letter-spacing: 0px;
|
|
1571
|
+
}
|
|
1572
|
+
.ndl-menu .menu-item-description{
|
|
1573
|
+
font-size: 12px;
|
|
1574
|
+
line-height: 20px;
|
|
1575
|
+
letter-spacing: 0px;
|
|
1576
|
+
--tw-text-opacity: 1;
|
|
1577
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1578
|
+
}
|
|
1579
|
+
.ndl-menu .menu-item-icon{
|
|
1580
|
+
margin-right: 0.5rem;
|
|
1581
|
+
height: 0.75rem;
|
|
1582
|
+
width: 0.75rem;
|
|
1583
|
+
}
|
|
1584
|
+
.ndl-menu .menu-header{
|
|
1585
|
+
margin-bottom: 1rem;
|
|
1586
|
+
padding-left: 0.5rem;
|
|
1587
|
+
padding-right: 0.5rem;
|
|
1588
|
+
padding-top: 0.5rem;
|
|
1589
|
+
}
|
|
1590
|
+
.ndl-menu .menu-header .menu-header-title{
|
|
1591
|
+
font-size: 16px;
|
|
1592
|
+
line-height: 24px;
|
|
1593
|
+
letter-spacing: 0.25px;
|
|
1594
|
+
font-weight: 700;
|
|
1595
|
+
}
|
|
1596
|
+
.ndl-menu .menu-header .menu-header-description{
|
|
1597
|
+
font-size: 12px;
|
|
1598
|
+
line-height: 20px;
|
|
1599
|
+
letter-spacing: 0px;
|
|
1600
|
+
--tw-text-opacity: 1;
|
|
1601
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1602
|
+
}
|
|
1603
|
+
.ndl-menu .menu-header .menu-header-icon {
|
|
1604
|
+
width: 17px;
|
|
1605
|
+
height: 17px;
|
|
1606
|
+
cursor: pointer;
|
|
1607
|
+
}
|
|
1608
|
+
/**
|
|
1609
|
+
*
|
|
1610
|
+
* Copyright (c) "Neo4j"
|
|
1611
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1612
|
+
*
|
|
1613
|
+
* This file is part of Neo4j.
|
|
1614
|
+
*
|
|
1615
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1616
|
+
* it under the terms of the GNU General Public License as published by
|
|
1617
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1618
|
+
* (at your option) any later version.
|
|
1619
|
+
*
|
|
1620
|
+
* This program is distributed in the hope that it will be useful,
|
|
1621
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1622
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1623
|
+
* GNU General Public License for more details.
|
|
1624
|
+
*
|
|
1625
|
+
* You should have received a copy of the GNU General Public License
|
|
1626
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1627
|
+
*/
|
|
1628
|
+
.ndl-popover {
|
|
1629
|
+
transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
1630
|
+
border-radius: 8px;
|
|
1631
|
+
--tw-border-opacity: 1;
|
|
1632
|
+
border-color: rgb(238 241 246 / var(--tw-border-opacity));
|
|
1633
|
+
--tw-bg-opacity: 1;
|
|
1634
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1635
|
+
--tw-shadow: 0px 4px 8px 0px rgba(12, 26, 37, 0.08);
|
|
1636
|
+
--tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
|
|
1637
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1638
|
+
position: fixed;
|
|
1639
|
+
z-index: 2;
|
|
1640
|
+
display: none;
|
|
1641
|
+
flex-direction: column;
|
|
1642
|
+
border-width: 1px;
|
|
1643
|
+
opacity: 0;
|
|
1644
|
+
outline: 2px solid transparent;
|
|
1645
|
+
outline-offset: 2px;
|
|
1646
|
+
}
|
|
1647
|
+
.ndl-popover.enter {
|
|
1648
|
+
opacity: 1;
|
|
1649
|
+
}
|
|
1650
|
+
.ndl-popover.open{
|
|
1651
|
+
display: flex;
|
|
1652
|
+
}
|
|
1653
|
+
.ndl-popover-backdrop{
|
|
1654
|
+
position: fixed;
|
|
1655
|
+
top: 0px;
|
|
1656
|
+
bottom: 0px;
|
|
1657
|
+
right: 0px;
|
|
1658
|
+
left: 0px;
|
|
1659
|
+
z-index: 1;
|
|
1660
|
+
}
|
|
1661
|
+
/**
|
|
1662
|
+
*
|
|
1663
|
+
* Copyright (c) "Neo4j"
|
|
1664
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1665
|
+
*
|
|
1666
|
+
* This file is part of Neo4j.
|
|
1667
|
+
*
|
|
1668
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1669
|
+
* it under the terms of the GNU General Public License as published by
|
|
1670
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1671
|
+
* (at your option) any later version.
|
|
1672
|
+
*
|
|
1673
|
+
* This program is distributed in the hope that it will be useful,
|
|
1674
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1675
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1676
|
+
* GNU General Public License for more details.
|
|
1677
|
+
*
|
|
1678
|
+
* You should have received a copy of the GNU General Public License
|
|
1679
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1680
|
+
*/
|
|
1681
|
+
.ndl-view-selector{
|
|
1682
|
+
position: relative;
|
|
1683
|
+
z-index: 0;
|
|
1684
|
+
display: inline-flex;
|
|
1685
|
+
max-width: none;
|
|
1686
|
+
align-items: center;
|
|
1687
|
+
gap: 0.25rem;
|
|
1688
|
+
overflow: hidden;
|
|
1689
|
+
border-radius: 10px;
|
|
1690
|
+
padding: 0.25rem;
|
|
1691
|
+
--tw-text-opacity: 1;
|
|
1692
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
1693
|
+
outline-style: solid;
|
|
1694
|
+
outline-width: 1px;
|
|
1695
|
+
outline-color: #B2B7BD;
|
|
1696
|
+
}
|
|
1697
|
+
.ndl-view-selector > button{
|
|
1698
|
+
cursor: pointer;
|
|
1699
|
+
border-radius: 8px;
|
|
1700
|
+
--tw-ring-inset: inset;
|
|
1701
|
+
--tw-ring-opacity: 1;
|
|
1702
|
+
--tw-ring-color: rgb(1 139 255 / var(--tw-ring-opacity));
|
|
1703
|
+
}
|
|
1704
|
+
.ndl-view-selector > button:focus{
|
|
1705
|
+
outline: 2px solid transparent;
|
|
1706
|
+
outline-offset: 2px;
|
|
1707
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1708
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1709
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1710
|
+
}
|
|
1711
|
+
.ndl-view-selector > button:hover{
|
|
1712
|
+
background-color: rgba(113,119,128,0.1);
|
|
1713
|
+
}
|
|
1714
|
+
.ndl-view-selector > button:active{
|
|
1715
|
+
background-color: rgba(113,119,128,0.2);
|
|
1716
|
+
}
|
|
1717
|
+
.ndl-view-selector .current{
|
|
1718
|
+
--tw-bg-opacity: 1;
|
|
1719
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
1720
|
+
--tw-text-opacity: 1;
|
|
1721
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1722
|
+
--tw-shadow: 0px 4px 8px 0px rgba(12, 26, 37, 0.08);
|
|
1723
|
+
--tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
|
|
1724
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1725
|
+
}
|
|
1726
|
+
.ndl-view-selector .current:hover{
|
|
1727
|
+
--tw-bg-opacity: 1;
|
|
1728
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
1729
|
+
}
|
|
1730
|
+
.ndl-view-selector.large{
|
|
1731
|
+
height: 3rem;
|
|
1732
|
+
font-size: 16px;
|
|
1733
|
+
line-height: 24px;
|
|
1734
|
+
letter-spacing: 0.25px;
|
|
1735
|
+
}
|
|
1736
|
+
.ndl-view-selector.large .selector-item{
|
|
1737
|
+
padding-left: 1rem;
|
|
1738
|
+
padding-right: 1rem;
|
|
1739
|
+
padding-top: 0.5rem;
|
|
1740
|
+
padding-bottom: 0.5rem;
|
|
1741
|
+
}
|
|
1742
|
+
.ndl-view-selector.large .selector-icon{
|
|
1743
|
+
padding: 10px;
|
|
1744
|
+
}
|
|
1745
|
+
.ndl-view-selector.large > button{
|
|
1746
|
+
height: 2.5rem;
|
|
1747
|
+
}
|
|
1748
|
+
.ndl-view-selector.small{
|
|
1749
|
+
height: 2.25rem;
|
|
1750
|
+
font-size: 14px;
|
|
1751
|
+
line-height: 20px;
|
|
1752
|
+
letter-spacing: 0px;
|
|
1753
|
+
}
|
|
1754
|
+
.ndl-view-selector.small .selector-item{
|
|
1755
|
+
padding-left: 0.75rem;
|
|
1756
|
+
padding-right: 0.75rem;
|
|
1757
|
+
padding-top: 0.25rem;
|
|
1758
|
+
padding-bottom: 0.25rem;
|
|
1759
|
+
}
|
|
1760
|
+
.ndl-view-selector.small .selector-icon{
|
|
1761
|
+
padding: 6px;
|
|
1762
|
+
}
|
|
1763
|
+
.ndl-view-selector.small > button{
|
|
1764
|
+
height: 1.75rem;
|
|
1765
|
+
}
|
|
1766
|
+
/**
|
|
1767
|
+
*
|
|
1768
|
+
* Copyright (c) "Neo4j"
|
|
1769
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
1770
|
+
*
|
|
1771
|
+
* This file is part of Neo4j.
|
|
1772
|
+
*
|
|
1773
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
1774
|
+
* it under the terms of the GNU General Public License as published by
|
|
1775
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
1776
|
+
* (at your option) any later version.
|
|
1777
|
+
*
|
|
1778
|
+
* This program is distributed in the hope that it will be useful,
|
|
1779
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1780
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1781
|
+
* GNU General Public License for more details.
|
|
1782
|
+
*
|
|
1783
|
+
* You should have received a copy of the GNU General Public License
|
|
1784
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
1785
|
+
*/
|
|
1786
|
+
@-webkit-keyframes ndl-spinner {
|
|
1787
|
+
0% {
|
|
1788
|
+
transform: translate3d(0%, 0%, 0) rotate(0deg);
|
|
1789
|
+
}
|
|
1790
|
+
100% {
|
|
1791
|
+
transform: translate3d(0%, 0%, 0) rotate(360deg);
|
|
1792
|
+
}
|
|
1793
|
+
}
|
|
1794
|
+
@keyframes ndl-spinner {
|
|
1795
|
+
0% {
|
|
1796
|
+
transform: translate3d(0%, 0%, 0) rotate(0deg);
|
|
1797
|
+
}
|
|
1798
|
+
100% {
|
|
1799
|
+
transform: translate3d(0%, 0%, 0) rotate(360deg);
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
.ndl-spin-wrapper.small {
|
|
1803
|
+
height: 14px;
|
|
1804
|
+
width: 14px;
|
|
1805
|
+
}
|
|
1806
|
+
.ndl-spin-wrapper.small .spin::before {
|
|
1807
|
+
height: 14px;
|
|
1808
|
+
width: 14px;
|
|
1809
|
+
border-width: 2px;
|
|
1810
|
+
}
|
|
1811
|
+
.ndl-spin-wrapper.large {
|
|
1812
|
+
height: 30px;
|
|
1813
|
+
width: 30px;
|
|
1814
|
+
}
|
|
1815
|
+
.ndl-spin-wrapper.large .spin::before {
|
|
1816
|
+
height: 30px;
|
|
1817
|
+
width: 30px;
|
|
1818
|
+
border-width: 4px;
|
|
1819
|
+
}
|
|
1820
|
+
.ndl-spin-wrapper .spin {
|
|
1821
|
+
position: absolute;
|
|
1822
|
+
}
|
|
1823
|
+
.ndl-spin-wrapper .spin::before {
|
|
1824
|
+
-webkit-animation: 1.5s linear infinite ndl-spinner;
|
|
1825
|
+
animation: 1.5s linear infinite ndl-spinner;
|
|
1826
|
+
-webkit-animation-play-state: inherit;
|
|
1827
|
+
animation-play-state: inherit;
|
|
1828
|
+
border-radius: 50%;
|
|
1829
|
+
content: '';
|
|
1830
|
+
position: absolute;
|
|
1831
|
+
top: 50%;
|
|
1832
|
+
left: 50%;
|
|
1833
|
+
transform: translate3d(0%, 0%, 0);
|
|
1834
|
+
will-change: transform;
|
|
1835
|
+
border-style: solid;
|
|
1836
|
+
border-color: rgb(230 233 238 / var(--tw-border-opacity));
|
|
1837
|
+
--tw-border-opacity: 1;
|
|
1838
|
+
border-bottom-color: rgb(0 111 214 / var(--tw-border-opacity));
|
|
1839
|
+
}
|
|
1840
|
+
.n-m-auto{
|
|
1841
|
+
margin: auto;
|
|
1842
|
+
}
|
|
1843
|
+
.n-my-2{
|
|
1844
|
+
margin-top: 0.5rem;
|
|
1845
|
+
margin-bottom: 0.5rem;
|
|
1846
|
+
}
|
|
1847
|
+
.n-mx-4{
|
|
1848
|
+
margin-left: 1rem;
|
|
1849
|
+
margin-right: 1rem;
|
|
1850
|
+
}
|
|
1851
|
+
.n-my-5{
|
|
1852
|
+
margin-top: 1.25rem;
|
|
1853
|
+
margin-bottom: 1.25rem;
|
|
1854
|
+
}
|
|
1855
|
+
.n-mr-1{
|
|
1856
|
+
margin-right: 0.25rem;
|
|
1857
|
+
}
|
|
1858
|
+
.n-mt-4{
|
|
1859
|
+
margin-top: 1rem;
|
|
1860
|
+
}
|
|
1861
|
+
.n-flex{
|
|
1862
|
+
display: flex;
|
|
1863
|
+
}
|
|
1864
|
+
.n-table{
|
|
1865
|
+
display: table;
|
|
1866
|
+
}
|
|
1867
|
+
.n-table-cell{
|
|
1868
|
+
display: table-cell;
|
|
1869
|
+
}
|
|
1870
|
+
.n-h-5{
|
|
1871
|
+
height: 1.25rem;
|
|
1872
|
+
}
|
|
1873
|
+
.n-h-10{
|
|
1874
|
+
height: 2.5rem;
|
|
1875
|
+
}
|
|
1876
|
+
.n-h-6{
|
|
1877
|
+
height: 1.5rem;
|
|
1878
|
+
}
|
|
1879
|
+
.n-h-full{
|
|
1880
|
+
height: 100%;
|
|
1881
|
+
}
|
|
1882
|
+
.n-h-12{
|
|
1883
|
+
height: 3rem;
|
|
1884
|
+
}
|
|
1885
|
+
.n-h-52{
|
|
1886
|
+
height: 13rem;
|
|
1887
|
+
}
|
|
1888
|
+
.n-w-5{
|
|
1889
|
+
width: 1.25rem;
|
|
1890
|
+
}
|
|
1891
|
+
.n-w-10{
|
|
1892
|
+
width: 2.5rem;
|
|
1893
|
+
}
|
|
1894
|
+
.n-w-6{
|
|
1895
|
+
width: 1.5rem;
|
|
1896
|
+
}
|
|
1897
|
+
.n-w-full{
|
|
1898
|
+
width: 100%;
|
|
1899
|
+
}
|
|
1900
|
+
.n-w-60{
|
|
1901
|
+
width: 15rem;
|
|
1902
|
+
}
|
|
1903
|
+
.n-w-52{
|
|
1904
|
+
width: 13rem;
|
|
1905
|
+
}
|
|
1906
|
+
.n-transform{
|
|
1907
|
+
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));
|
|
1908
|
+
}
|
|
1909
|
+
.n-flex-row{
|
|
1910
|
+
flex-direction: row;
|
|
1911
|
+
}
|
|
1912
|
+
.n-flex-col{
|
|
1913
|
+
flex-direction: column;
|
|
1914
|
+
}
|
|
1915
|
+
.n-flex-wrap{
|
|
1916
|
+
flex-wrap: wrap;
|
|
1917
|
+
}
|
|
1918
|
+
.n-items-start{
|
|
1919
|
+
align-items: flex-start;
|
|
1920
|
+
}
|
|
1921
|
+
.n-items-center{
|
|
1922
|
+
align-items: center;
|
|
1923
|
+
}
|
|
1924
|
+
.n-justify-between{
|
|
1925
|
+
justify-content: space-between;
|
|
1926
|
+
}
|
|
1927
|
+
.n-gap-12{
|
|
1928
|
+
gap: 3rem;
|
|
1929
|
+
}
|
|
1930
|
+
.n-gap-2{
|
|
1931
|
+
gap: 0.5rem;
|
|
1932
|
+
}
|
|
1933
|
+
.n-gap-x-12{
|
|
1934
|
+
-moz-column-gap: 3rem;
|
|
1935
|
+
column-gap: 3rem;
|
|
1936
|
+
}
|
|
1937
|
+
.n-gap-y-2{
|
|
1938
|
+
row-gap: 0.5rem;
|
|
1939
|
+
}
|
|
1940
|
+
.n-space-y-3 > :not([hidden]) ~ :not([hidden]){
|
|
1941
|
+
--tw-space-y-reverse: 0;
|
|
1942
|
+
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1943
|
+
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
1944
|
+
}
|
|
1945
|
+
.n-space-x-4 > :not([hidden]) ~ :not([hidden]){
|
|
1946
|
+
--tw-space-x-reverse: 0;
|
|
1947
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1948
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1949
|
+
}
|
|
1950
|
+
.n-overflow-x-scroll{
|
|
1951
|
+
overflow-x: scroll;
|
|
1952
|
+
}
|
|
1953
|
+
.n-whitespace-nowrap{
|
|
1954
|
+
white-space: nowrap;
|
|
1955
|
+
}
|
|
1956
|
+
.n-rounded-lg{
|
|
1957
|
+
border-radius: 8px;
|
|
1958
|
+
}
|
|
1959
|
+
.n-border-neutral-70{
|
|
1960
|
+
--tw-border-opacity: 1;
|
|
1961
|
+
border-color: rgb(113 119 128 / var(--tw-border-opacity));
|
|
1962
|
+
}
|
|
1963
|
+
.n-border-neutral-60{
|
|
1964
|
+
--tw-border-opacity: 1;
|
|
1965
|
+
border-color: rgb(178 183 189 / var(--tw-border-opacity));
|
|
1966
|
+
}
|
|
1967
|
+
.n-border-b-neutral-40{
|
|
1968
|
+
--tw-border-opacity: 1;
|
|
1969
|
+
border-bottom-color: rgb(230 233 238 / var(--tw-border-opacity));
|
|
1970
|
+
}
|
|
1971
|
+
.n-bg-primary-10{
|
|
1972
|
+
--tw-bg-opacity: 1;
|
|
1973
|
+
background-color: rgb(230 248 255 / var(--tw-bg-opacity));
|
|
1974
|
+
}
|
|
1975
|
+
.n-bg-primary-20{
|
|
1976
|
+
--tw-bg-opacity: 1;
|
|
1977
|
+
background-color: rgb(163 226 255 / var(--tw-bg-opacity));
|
|
1978
|
+
}
|
|
1979
|
+
.n-bg-primary-30{
|
|
1980
|
+
--tw-bg-opacity: 1;
|
|
1981
|
+
background-color: rgb(122 209 255 / var(--tw-bg-opacity));
|
|
1982
|
+
}
|
|
1983
|
+
.n-bg-primary-40{
|
|
1984
|
+
--tw-bg-opacity: 1;
|
|
1985
|
+
background-color: rgb(1 139 255 / var(--tw-bg-opacity));
|
|
1986
|
+
}
|
|
1987
|
+
.n-bg-primary-50{
|
|
1988
|
+
--tw-bg-opacity: 1;
|
|
1989
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
1990
|
+
}
|
|
1991
|
+
.n-bg-primary-60{
|
|
1992
|
+
--tw-bg-opacity: 1;
|
|
1993
|
+
background-color: rgb(0 86 179 / var(--tw-bg-opacity));
|
|
1994
|
+
}
|
|
1995
|
+
.n-bg-primary-70{
|
|
1996
|
+
--tw-bg-opacity: 1;
|
|
1997
|
+
background-color: rgb(0 64 146 / var(--tw-bg-opacity));
|
|
1998
|
+
}
|
|
1999
|
+
.n-bg-danger-10{
|
|
2000
|
+
--tw-bg-opacity: 1;
|
|
2001
|
+
background-color: rgb(255 230 233 / var(--tw-bg-opacity));
|
|
2002
|
+
}
|
|
2003
|
+
.n-bg-danger-20{
|
|
2004
|
+
--tw-bg-opacity: 1;
|
|
2005
|
+
background-color: rgb(255 184 196 / var(--tw-bg-opacity));
|
|
2006
|
+
}
|
|
2007
|
+
.n-bg-danger-30{
|
|
2008
|
+
--tw-bg-opacity: 1;
|
|
2009
|
+
background-color: rgb(255 102 138 / var(--tw-bg-opacity));
|
|
2010
|
+
}
|
|
2011
|
+
.n-bg-danger-40{
|
|
2012
|
+
--tw-bg-opacity: 1;
|
|
2013
|
+
background-color: rgb(237 18 82 / var(--tw-bg-opacity));
|
|
2014
|
+
}
|
|
2015
|
+
.n-bg-danger-50{
|
|
2016
|
+
--tw-bg-opacity: 1;
|
|
2017
|
+
background-color: rgb(204 37 75 / var(--tw-bg-opacity));
|
|
2018
|
+
}
|
|
2019
|
+
.n-bg-danger-60{
|
|
2020
|
+
--tw-bg-opacity: 1;
|
|
2021
|
+
background-color: rgb(161 0 59 / var(--tw-bg-opacity));
|
|
2022
|
+
}
|
|
2023
|
+
.n-bg-danger-70{
|
|
2024
|
+
--tw-bg-opacity: 1;
|
|
2025
|
+
background-color: rgb(122 0 49 / var(--tw-bg-opacity));
|
|
2026
|
+
}
|
|
2027
|
+
.n-bg-success-10{
|
|
2028
|
+
--tw-bg-opacity: 1;
|
|
2029
|
+
background-color: rgb(225 250 239 / var(--tw-bg-opacity));
|
|
2030
|
+
}
|
|
2031
|
+
.n-bg-success-20{
|
|
2032
|
+
--tw-bg-opacity: 1;
|
|
2033
|
+
background-color: rgb(152 237 203 / var(--tw-bg-opacity));
|
|
2034
|
+
}
|
|
2035
|
+
.n-bg-success-30{
|
|
2036
|
+
--tw-bg-opacity: 1;
|
|
2037
|
+
background-color: rgb(68 212 164 / var(--tw-bg-opacity));
|
|
2038
|
+
}
|
|
2039
|
+
.n-bg-success-40{
|
|
2040
|
+
--tw-bg-opacity: 1;
|
|
2041
|
+
background-color: rgb(0 186 136 / var(--tw-bg-opacity));
|
|
2042
|
+
}
|
|
2043
|
+
.n-bg-success-50{
|
|
2044
|
+
--tw-bg-opacity: 1;
|
|
2045
|
+
background-color: rgb(50 125 96 / var(--tw-bg-opacity));
|
|
2046
|
+
}
|
|
2047
|
+
.n-bg-success-60{
|
|
2048
|
+
--tw-bg-opacity: 1;
|
|
2049
|
+
background-color: rgb(0 110 88 / var(--tw-bg-opacity));
|
|
2050
|
+
}
|
|
2051
|
+
.n-bg-success-70{
|
|
2052
|
+
--tw-bg-opacity: 1;
|
|
2053
|
+
background-color: rgb(0 71 59 / var(--tw-bg-opacity));
|
|
2054
|
+
}
|
|
2055
|
+
.n-bg-warning-10{
|
|
2056
|
+
--tw-bg-opacity: 1;
|
|
2057
|
+
background-color: rgb(255 251 222 / var(--tw-bg-opacity));
|
|
2058
|
+
}
|
|
2059
|
+
.n-bg-warning-20{
|
|
2060
|
+
--tw-bg-opacity: 1;
|
|
2061
|
+
background-color: rgb(255 244 181 / var(--tw-bg-opacity));
|
|
2062
|
+
}
|
|
2063
|
+
.n-bg-warning-30{
|
|
2064
|
+
--tw-bg-opacity: 1;
|
|
2065
|
+
background-color: rgb(255 234 140 / var(--tw-bg-opacity));
|
|
2066
|
+
}
|
|
2067
|
+
.n-bg-warning-40{
|
|
2068
|
+
--tw-bg-opacity: 1;
|
|
2069
|
+
background-color: rgb(255 222 99 / var(--tw-bg-opacity));
|
|
2070
|
+
}
|
|
2071
|
+
.n-bg-warning-50{
|
|
2072
|
+
--tw-bg-opacity: 1;
|
|
2073
|
+
background-color: rgb(217 181 74 / var(--tw-bg-opacity));
|
|
2074
|
+
}
|
|
2075
|
+
.n-bg-warning-60{
|
|
2076
|
+
--tw-bg-opacity: 1;
|
|
2077
|
+
background-color: rgb(150 108 46 / var(--tw-bg-opacity));
|
|
2078
|
+
}
|
|
2079
|
+
.n-bg-warning-70{
|
|
2080
|
+
--tw-bg-opacity: 1;
|
|
2081
|
+
background-color: rgb(102 72 23 / var(--tw-bg-opacity));
|
|
2082
|
+
}
|
|
2083
|
+
.n-bg-blueberry-10{
|
|
2084
|
+
--tw-bg-opacity: 1;
|
|
2085
|
+
background-color: rgb(232 235 246 / var(--tw-bg-opacity));
|
|
2086
|
+
}
|
|
2087
|
+
.n-bg-blueberry-20{
|
|
2088
|
+
--tw-bg-opacity: 1;
|
|
2089
|
+
background-color: rgb(196 204 233 / var(--tw-bg-opacity));
|
|
2090
|
+
}
|
|
2091
|
+
.n-bg-blueberry-30{
|
|
2092
|
+
--tw-bg-opacity: 1;
|
|
2093
|
+
background-color: rgb(157 171 217 / var(--tw-bg-opacity));
|
|
2094
|
+
}
|
|
2095
|
+
.n-bg-blueberry-40{
|
|
2096
|
+
--tw-bg-opacity: 1;
|
|
2097
|
+
background-color: rgb(118 138 202 / var(--tw-bg-opacity));
|
|
2098
|
+
}
|
|
2099
|
+
.n-bg-blueberry-50{
|
|
2100
|
+
--tw-bg-opacity: 1;
|
|
2101
|
+
background-color: rgb(53 87 180 / var(--tw-bg-opacity));
|
|
2102
|
+
}
|
|
2103
|
+
.n-bg-blueberry-60{
|
|
2104
|
+
--tw-bg-opacity: 1;
|
|
2105
|
+
background-color: rgb(37 69 158 / var(--tw-bg-opacity));
|
|
2106
|
+
}
|
|
2107
|
+
.n-bg-blueberry-70{
|
|
2108
|
+
--tw-bg-opacity: 1;
|
|
2109
|
+
background-color: rgb(11 41 125 / var(--tw-bg-opacity));
|
|
2110
|
+
}
|
|
2111
|
+
.n-bg-mint-10{
|
|
2112
|
+
--tw-bg-opacity: 1;
|
|
2113
|
+
background-color: rgb(240 255 250 / var(--tw-bg-opacity));
|
|
2114
|
+
}
|
|
2115
|
+
.n-bg-mint-20{
|
|
2116
|
+
--tw-bg-opacity: 1;
|
|
2117
|
+
background-color: rgb(209 255 244 / var(--tw-bg-opacity));
|
|
2118
|
+
}
|
|
2119
|
+
.n-bg-mint-30{
|
|
2120
|
+
--tw-bg-opacity: 1;
|
|
2121
|
+
background-color: rgb(168 255 238 / var(--tw-bg-opacity));
|
|
2122
|
+
}
|
|
2123
|
+
.n-bg-mint-40{
|
|
2124
|
+
--tw-bg-opacity: 1;
|
|
2125
|
+
background-color: rgb(85 249 226 / var(--tw-bg-opacity));
|
|
2126
|
+
}
|
|
2127
|
+
.n-bg-mint-50{
|
|
2128
|
+
--tw-bg-opacity: 1;
|
|
2129
|
+
background-color: rgb(61 212 197 / var(--tw-bg-opacity));
|
|
2130
|
+
}
|
|
2131
|
+
.n-bg-mint-60{
|
|
2132
|
+
--tw-bg-opacity: 1;
|
|
2133
|
+
background-color: rgb(42 173 165 / var(--tw-bg-opacity));
|
|
2134
|
+
}
|
|
2135
|
+
.n-bg-mint-70{
|
|
2136
|
+
--tw-bg-opacity: 1;
|
|
2137
|
+
background-color: rgb(17 97 97 / var(--tw-bg-opacity));
|
|
2138
|
+
}
|
|
2139
|
+
.n-bg-neutral-10{
|
|
2140
|
+
--tw-bg-opacity: 1;
|
|
2141
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
2142
|
+
}
|
|
2143
|
+
.n-bg-neutral-20{
|
|
2144
|
+
--tw-bg-opacity: 1;
|
|
2145
|
+
background-color: rgb(245 247 250 / var(--tw-bg-opacity));
|
|
2146
|
+
}
|
|
2147
|
+
.n-bg-neutral-30{
|
|
2148
|
+
--tw-bg-opacity: 1;
|
|
2149
|
+
background-color: rgb(238 241 246 / var(--tw-bg-opacity));
|
|
2150
|
+
}
|
|
2151
|
+
.n-bg-neutral-40{
|
|
2152
|
+
--tw-bg-opacity: 1;
|
|
2153
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
2154
|
+
}
|
|
2155
|
+
.n-bg-neutral-50{
|
|
2156
|
+
--tw-bg-opacity: 1;
|
|
2157
|
+
background-color: rgb(196 200 205 / var(--tw-bg-opacity));
|
|
2158
|
+
}
|
|
2159
|
+
.n-bg-neutral-60{
|
|
2160
|
+
--tw-bg-opacity: 1;
|
|
2161
|
+
background-color: rgb(178 183 189 / var(--tw-bg-opacity));
|
|
2162
|
+
}
|
|
2163
|
+
.n-bg-neutral-70{
|
|
2164
|
+
--tw-bg-opacity: 1;
|
|
2165
|
+
background-color: rgb(113 119 128 / var(--tw-bg-opacity));
|
|
2166
|
+
}
|
|
2167
|
+
.n-bg-neutral-80{
|
|
2168
|
+
--tw-bg-opacity: 1;
|
|
2169
|
+
background-color: rgb(83 91 102 / var(--tw-bg-opacity));
|
|
2170
|
+
}
|
|
2171
|
+
.n-bg-neutral-90{
|
|
2172
|
+
--tw-bg-opacity: 1;
|
|
2173
|
+
background-color: rgb(21 30 41 / var(--tw-bg-opacity));
|
|
2174
|
+
}
|
|
2175
|
+
.n-p-4{
|
|
2176
|
+
padding: 1rem;
|
|
2177
|
+
}
|
|
2178
|
+
.n-p-14{
|
|
2179
|
+
padding: 3.5rem;
|
|
2180
|
+
}
|
|
2181
|
+
.n-px-3{
|
|
2182
|
+
padding-left: 0.75rem;
|
|
2183
|
+
padding-right: 0.75rem;
|
|
2184
|
+
}
|
|
2185
|
+
.n-px-8{
|
|
2186
|
+
padding-left: 2rem;
|
|
2187
|
+
padding-right: 2rem;
|
|
2188
|
+
}
|
|
2189
|
+
.n-font-sans{
|
|
2190
|
+
font-family: "Nunito Sans";
|
|
2191
|
+
}
|
|
2192
|
+
.n-text-body-medium{
|
|
2193
|
+
font-size: 14px;
|
|
2194
|
+
line-height: 20px;
|
|
2195
|
+
letter-spacing: 0px;
|
|
2196
|
+
}
|
|
2197
|
+
.n-capitalize{
|
|
2198
|
+
text-transform: capitalize;
|
|
2199
|
+
}
|
|
2200
|
+
.n-text-primary-10{
|
|
2201
|
+
--tw-text-opacity: 1;
|
|
2202
|
+
color: rgb(230 248 255 / var(--tw-text-opacity));
|
|
2203
|
+
}
|
|
2204
|
+
.n-text-primary-20{
|
|
2205
|
+
--tw-text-opacity: 1;
|
|
2206
|
+
color: rgb(163 226 255 / var(--tw-text-opacity));
|
|
2207
|
+
}
|
|
2208
|
+
.n-text-primary-30{
|
|
2209
|
+
--tw-text-opacity: 1;
|
|
2210
|
+
color: rgb(122 209 255 / var(--tw-text-opacity));
|
|
2211
|
+
}
|
|
2212
|
+
.n-text-primary-40{
|
|
2213
|
+
--tw-text-opacity: 1;
|
|
2214
|
+
color: rgb(1 139 255 / var(--tw-text-opacity));
|
|
2215
|
+
}
|
|
2216
|
+
.n-text-primary-50{
|
|
2217
|
+
--tw-text-opacity: 1;
|
|
2218
|
+
color: rgb(0 111 214 / var(--tw-text-opacity));
|
|
2219
|
+
}
|
|
2220
|
+
.n-text-primary-60{
|
|
2221
|
+
--tw-text-opacity: 1;
|
|
2222
|
+
color: rgb(0 86 179 / var(--tw-text-opacity));
|
|
2223
|
+
}
|
|
2224
|
+
.n-text-primary-70{
|
|
2225
|
+
--tw-text-opacity: 1;
|
|
2226
|
+
color: rgb(0 64 146 / var(--tw-text-opacity));
|
|
2227
|
+
}
|
|
2228
|
+
.n-text-danger-10{
|
|
2229
|
+
--tw-text-opacity: 1;
|
|
2230
|
+
color: rgb(255 230 233 / var(--tw-text-opacity));
|
|
2231
|
+
}
|
|
2232
|
+
.n-text-danger-20{
|
|
2233
|
+
--tw-text-opacity: 1;
|
|
2234
|
+
color: rgb(255 184 196 / var(--tw-text-opacity));
|
|
2235
|
+
}
|
|
2236
|
+
.n-text-danger-30{
|
|
2237
|
+
--tw-text-opacity: 1;
|
|
2238
|
+
color: rgb(255 102 138 / var(--tw-text-opacity));
|
|
2239
|
+
}
|
|
2240
|
+
.n-text-danger-40{
|
|
2241
|
+
--tw-text-opacity: 1;
|
|
2242
|
+
color: rgb(237 18 82 / var(--tw-text-opacity));
|
|
2243
|
+
}
|
|
2244
|
+
.n-text-danger-50{
|
|
2245
|
+
--tw-text-opacity: 1;
|
|
2246
|
+
color: rgb(204 37 75 / var(--tw-text-opacity));
|
|
2247
|
+
}
|
|
2248
|
+
.n-text-danger-60{
|
|
2249
|
+
--tw-text-opacity: 1;
|
|
2250
|
+
color: rgb(161 0 59 / var(--tw-text-opacity));
|
|
2251
|
+
}
|
|
2252
|
+
.n-text-danger-70{
|
|
2253
|
+
--tw-text-opacity: 1;
|
|
2254
|
+
color: rgb(122 0 49 / var(--tw-text-opacity));
|
|
2255
|
+
}
|
|
2256
|
+
.n-text-success-10{
|
|
2257
|
+
--tw-text-opacity: 1;
|
|
2258
|
+
color: rgb(225 250 239 / var(--tw-text-opacity));
|
|
2259
|
+
}
|
|
2260
|
+
.n-text-success-20{
|
|
2261
|
+
--tw-text-opacity: 1;
|
|
2262
|
+
color: rgb(152 237 203 / var(--tw-text-opacity));
|
|
2263
|
+
}
|
|
2264
|
+
.n-text-success-30{
|
|
2265
|
+
--tw-text-opacity: 1;
|
|
2266
|
+
color: rgb(68 212 164 / var(--tw-text-opacity));
|
|
2267
|
+
}
|
|
2268
|
+
.n-text-success-40{
|
|
2269
|
+
--tw-text-opacity: 1;
|
|
2270
|
+
color: rgb(0 186 136 / var(--tw-text-opacity));
|
|
2271
|
+
}
|
|
2272
|
+
.n-text-success-50{
|
|
2273
|
+
--tw-text-opacity: 1;
|
|
2274
|
+
color: rgb(50 125 96 / var(--tw-text-opacity));
|
|
2275
|
+
}
|
|
2276
|
+
.n-text-success-60{
|
|
2277
|
+
--tw-text-opacity: 1;
|
|
2278
|
+
color: rgb(0 110 88 / var(--tw-text-opacity));
|
|
2279
|
+
}
|
|
2280
|
+
.n-text-success-70{
|
|
2281
|
+
--tw-text-opacity: 1;
|
|
2282
|
+
color: rgb(0 71 59 / var(--tw-text-opacity));
|
|
2283
|
+
}
|
|
2284
|
+
.n-text-warning-10{
|
|
2285
|
+
--tw-text-opacity: 1;
|
|
2286
|
+
color: rgb(255 251 222 / var(--tw-text-opacity));
|
|
2287
|
+
}
|
|
2288
|
+
.n-text-warning-20{
|
|
2289
|
+
--tw-text-opacity: 1;
|
|
2290
|
+
color: rgb(255 244 181 / var(--tw-text-opacity));
|
|
2291
|
+
}
|
|
2292
|
+
.n-text-warning-30{
|
|
2293
|
+
--tw-text-opacity: 1;
|
|
2294
|
+
color: rgb(255 234 140 / var(--tw-text-opacity));
|
|
2295
|
+
}
|
|
2296
|
+
.n-text-warning-40{
|
|
2297
|
+
--tw-text-opacity: 1;
|
|
2298
|
+
color: rgb(255 222 99 / var(--tw-text-opacity));
|
|
2299
|
+
}
|
|
2300
|
+
.n-text-warning-50{
|
|
2301
|
+
--tw-text-opacity: 1;
|
|
2302
|
+
color: rgb(217 181 74 / var(--tw-text-opacity));
|
|
2303
|
+
}
|
|
2304
|
+
.n-text-warning-60{
|
|
2305
|
+
--tw-text-opacity: 1;
|
|
2306
|
+
color: rgb(150 108 46 / var(--tw-text-opacity));
|
|
2307
|
+
}
|
|
2308
|
+
.n-text-warning-70{
|
|
2309
|
+
--tw-text-opacity: 1;
|
|
2310
|
+
color: rgb(102 72 23 / var(--tw-text-opacity));
|
|
2311
|
+
}
|
|
2312
|
+
.n-text-blueberry-10{
|
|
2313
|
+
--tw-text-opacity: 1;
|
|
2314
|
+
color: rgb(232 235 246 / var(--tw-text-opacity));
|
|
2315
|
+
}
|
|
2316
|
+
.n-text-blueberry-20{
|
|
2317
|
+
--tw-text-opacity: 1;
|
|
2318
|
+
color: rgb(196 204 233 / var(--tw-text-opacity));
|
|
2319
|
+
}
|
|
2320
|
+
.n-text-blueberry-30{
|
|
2321
|
+
--tw-text-opacity: 1;
|
|
2322
|
+
color: rgb(157 171 217 / var(--tw-text-opacity));
|
|
2323
|
+
}
|
|
2324
|
+
.n-text-blueberry-40{
|
|
2325
|
+
--tw-text-opacity: 1;
|
|
2326
|
+
color: rgb(118 138 202 / var(--tw-text-opacity));
|
|
2327
|
+
}
|
|
2328
|
+
.n-text-blueberry-50{
|
|
2329
|
+
--tw-text-opacity: 1;
|
|
2330
|
+
color: rgb(53 87 180 / var(--tw-text-opacity));
|
|
2331
|
+
}
|
|
2332
|
+
.n-text-blueberry-60{
|
|
2333
|
+
--tw-text-opacity: 1;
|
|
2334
|
+
color: rgb(37 69 158 / var(--tw-text-opacity));
|
|
2335
|
+
}
|
|
2336
|
+
.n-text-blueberry-70{
|
|
2337
|
+
--tw-text-opacity: 1;
|
|
2338
|
+
color: rgb(11 41 125 / var(--tw-text-opacity));
|
|
2339
|
+
}
|
|
2340
|
+
.n-text-mint-10{
|
|
2341
|
+
--tw-text-opacity: 1;
|
|
2342
|
+
color: rgb(240 255 250 / var(--tw-text-opacity));
|
|
2343
|
+
}
|
|
2344
|
+
.n-text-mint-20{
|
|
2345
|
+
--tw-text-opacity: 1;
|
|
2346
|
+
color: rgb(209 255 244 / var(--tw-text-opacity));
|
|
2347
|
+
}
|
|
2348
|
+
.n-text-mint-30{
|
|
2349
|
+
--tw-text-opacity: 1;
|
|
2350
|
+
color: rgb(168 255 238 / var(--tw-text-opacity));
|
|
2351
|
+
}
|
|
2352
|
+
.n-text-mint-40{
|
|
2353
|
+
--tw-text-opacity: 1;
|
|
2354
|
+
color: rgb(85 249 226 / var(--tw-text-opacity));
|
|
2355
|
+
}
|
|
2356
|
+
.n-text-mint-50{
|
|
2357
|
+
--tw-text-opacity: 1;
|
|
2358
|
+
color: rgb(61 212 197 / var(--tw-text-opacity));
|
|
2359
|
+
}
|
|
2360
|
+
.n-text-mint-60{
|
|
2361
|
+
--tw-text-opacity: 1;
|
|
2362
|
+
color: rgb(42 173 165 / var(--tw-text-opacity));
|
|
2363
|
+
}
|
|
2364
|
+
.n-text-mint-70{
|
|
2365
|
+
--tw-text-opacity: 1;
|
|
2366
|
+
color: rgb(17 97 97 / var(--tw-text-opacity));
|
|
2367
|
+
}
|
|
2368
|
+
.n-text-neutral-10{
|
|
2369
|
+
--tw-text-opacity: 1;
|
|
2370
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2371
|
+
}
|
|
2372
|
+
.n-text-neutral-20{
|
|
2373
|
+
--tw-text-opacity: 1;
|
|
2374
|
+
color: rgb(245 247 250 / var(--tw-text-opacity));
|
|
2375
|
+
}
|
|
2376
|
+
.n-text-neutral-30{
|
|
2377
|
+
--tw-text-opacity: 1;
|
|
2378
|
+
color: rgb(238 241 246 / var(--tw-text-opacity));
|
|
2379
|
+
}
|
|
2380
|
+
.n-text-neutral-40{
|
|
2381
|
+
--tw-text-opacity: 1;
|
|
2382
|
+
color: rgb(230 233 238 / var(--tw-text-opacity));
|
|
2383
|
+
}
|
|
2384
|
+
.n-text-neutral-50{
|
|
2385
|
+
--tw-text-opacity: 1;
|
|
2386
|
+
color: rgb(196 200 205 / var(--tw-text-opacity));
|
|
2387
|
+
}
|
|
2388
|
+
.n-text-neutral-60{
|
|
2389
|
+
--tw-text-opacity: 1;
|
|
2390
|
+
color: rgb(178 183 189 / var(--tw-text-opacity));
|
|
2391
|
+
}
|
|
2392
|
+
.n-text-neutral-70{
|
|
2393
|
+
--tw-text-opacity: 1;
|
|
2394
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
2395
|
+
}
|
|
2396
|
+
.n-text-neutral-80{
|
|
2397
|
+
--tw-text-opacity: 1;
|
|
2398
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
2399
|
+
}
|
|
2400
|
+
.n-text-neutral-90{
|
|
2401
|
+
--tw-text-opacity: 1;
|
|
2402
|
+
color: rgb(21 30 41 / var(--tw-text-opacity));
|
|
2403
|
+
}
|
|
2404
|
+
.n-duration-200{
|
|
2405
|
+
transition-duration: 200ms;
|
|
2406
|
+
}
|
|
2407
|
+
.n-ease-in-out{
|
|
2408
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2409
|
+
}
|
|
2410
|
+
.\[http\:\/\/neo4j\.com\]{
|
|
2411
|
+
http: //neo4j.com;
|
|
2412
|
+
}
|
|
2413
|
+
* {
|
|
2414
|
+
font-family: 'Nunito Sans', sans-serif;
|
|
2415
|
+
}
|
|
2416
|
+
.hover\:n-rotate-12:hover{
|
|
2417
|
+
--tw-rotate: 12deg;
|
|
2418
|
+
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));
|
|
2419
|
+
}
|
|
2420
|
+
.hover\:n-bg-primary-10:hover{
|
|
2421
|
+
--tw-bg-opacity: 1;
|
|
2422
|
+
background-color: rgb(230 248 255 / var(--tw-bg-opacity));
|
|
2423
|
+
}
|
|
2424
|
+
.hover\:n-bg-primary-20:hover{
|
|
2425
|
+
--tw-bg-opacity: 1;
|
|
2426
|
+
background-color: rgb(163 226 255 / var(--tw-bg-opacity));
|
|
2427
|
+
}
|
|
2428
|
+
.hover\:n-bg-primary-30:hover{
|
|
2429
|
+
--tw-bg-opacity: 1;
|
|
2430
|
+
background-color: rgb(122 209 255 / var(--tw-bg-opacity));
|
|
2431
|
+
}
|
|
2432
|
+
.hover\:n-bg-primary-40:hover{
|
|
2433
|
+
--tw-bg-opacity: 1;
|
|
2434
|
+
background-color: rgb(1 139 255 / var(--tw-bg-opacity));
|
|
2435
|
+
}
|
|
2436
|
+
.hover\:n-bg-primary-50:hover{
|
|
2437
|
+
--tw-bg-opacity: 1;
|
|
2438
|
+
background-color: rgb(0 111 214 / var(--tw-bg-opacity));
|
|
2439
|
+
}
|
|
2440
|
+
.hover\:n-bg-primary-60:hover{
|
|
2441
|
+
--tw-bg-opacity: 1;
|
|
2442
|
+
background-color: rgb(0 86 179 / var(--tw-bg-opacity));
|
|
2443
|
+
}
|
|
2444
|
+
.hover\:n-bg-primary-70:hover{
|
|
2445
|
+
--tw-bg-opacity: 1;
|
|
2446
|
+
background-color: rgb(0 64 146 / var(--tw-bg-opacity));
|
|
2447
|
+
}
|
|
2448
|
+
.hover\:n-bg-danger-10:hover{
|
|
2449
|
+
--tw-bg-opacity: 1;
|
|
2450
|
+
background-color: rgb(255 230 233 / var(--tw-bg-opacity));
|
|
2451
|
+
}
|
|
2452
|
+
.hover\:n-bg-danger-20:hover{
|
|
2453
|
+
--tw-bg-opacity: 1;
|
|
2454
|
+
background-color: rgb(255 184 196 / var(--tw-bg-opacity));
|
|
2455
|
+
}
|
|
2456
|
+
.hover\:n-bg-danger-30:hover{
|
|
2457
|
+
--tw-bg-opacity: 1;
|
|
2458
|
+
background-color: rgb(255 102 138 / var(--tw-bg-opacity));
|
|
2459
|
+
}
|
|
2460
|
+
.hover\:n-bg-danger-40:hover{
|
|
2461
|
+
--tw-bg-opacity: 1;
|
|
2462
|
+
background-color: rgb(237 18 82 / var(--tw-bg-opacity));
|
|
2463
|
+
}
|
|
2464
|
+
.hover\:n-bg-danger-50:hover{
|
|
2465
|
+
--tw-bg-opacity: 1;
|
|
2466
|
+
background-color: rgb(204 37 75 / var(--tw-bg-opacity));
|
|
2467
|
+
}
|
|
2468
|
+
.hover\:n-bg-danger-60:hover{
|
|
2469
|
+
--tw-bg-opacity: 1;
|
|
2470
|
+
background-color: rgb(161 0 59 / var(--tw-bg-opacity));
|
|
2471
|
+
}
|
|
2472
|
+
.hover\:n-bg-danger-70:hover{
|
|
2473
|
+
--tw-bg-opacity: 1;
|
|
2474
|
+
background-color: rgb(122 0 49 / var(--tw-bg-opacity));
|
|
2475
|
+
}
|
|
2476
|
+
.hover\:n-bg-success-10:hover{
|
|
2477
|
+
--tw-bg-opacity: 1;
|
|
2478
|
+
background-color: rgb(225 250 239 / var(--tw-bg-opacity));
|
|
2479
|
+
}
|
|
2480
|
+
.hover\:n-bg-success-20:hover{
|
|
2481
|
+
--tw-bg-opacity: 1;
|
|
2482
|
+
background-color: rgb(152 237 203 / var(--tw-bg-opacity));
|
|
2483
|
+
}
|
|
2484
|
+
.hover\:n-bg-success-30:hover{
|
|
2485
|
+
--tw-bg-opacity: 1;
|
|
2486
|
+
background-color: rgb(68 212 164 / var(--tw-bg-opacity));
|
|
2487
|
+
}
|
|
2488
|
+
.hover\:n-bg-success-40:hover{
|
|
2489
|
+
--tw-bg-opacity: 1;
|
|
2490
|
+
background-color: rgb(0 186 136 / var(--tw-bg-opacity));
|
|
2491
|
+
}
|
|
2492
|
+
.hover\:n-bg-success-50:hover{
|
|
2493
|
+
--tw-bg-opacity: 1;
|
|
2494
|
+
background-color: rgb(50 125 96 / var(--tw-bg-opacity));
|
|
2495
|
+
}
|
|
2496
|
+
.hover\:n-bg-success-60:hover{
|
|
2497
|
+
--tw-bg-opacity: 1;
|
|
2498
|
+
background-color: rgb(0 110 88 / var(--tw-bg-opacity));
|
|
2499
|
+
}
|
|
2500
|
+
.hover\:n-bg-success-70:hover{
|
|
2501
|
+
--tw-bg-opacity: 1;
|
|
2502
|
+
background-color: rgb(0 71 59 / var(--tw-bg-opacity));
|
|
2503
|
+
}
|
|
2504
|
+
.hover\:n-bg-warning-10:hover{
|
|
2505
|
+
--tw-bg-opacity: 1;
|
|
2506
|
+
background-color: rgb(255 251 222 / var(--tw-bg-opacity));
|
|
2507
|
+
}
|
|
2508
|
+
.hover\:n-bg-warning-20:hover{
|
|
2509
|
+
--tw-bg-opacity: 1;
|
|
2510
|
+
background-color: rgb(255 244 181 / var(--tw-bg-opacity));
|
|
2511
|
+
}
|
|
2512
|
+
.hover\:n-bg-warning-30:hover{
|
|
2513
|
+
--tw-bg-opacity: 1;
|
|
2514
|
+
background-color: rgb(255 234 140 / var(--tw-bg-opacity));
|
|
2515
|
+
}
|
|
2516
|
+
.hover\:n-bg-warning-40:hover{
|
|
2517
|
+
--tw-bg-opacity: 1;
|
|
2518
|
+
background-color: rgb(255 222 99 / var(--tw-bg-opacity));
|
|
2519
|
+
}
|
|
2520
|
+
.hover\:n-bg-warning-50:hover{
|
|
2521
|
+
--tw-bg-opacity: 1;
|
|
2522
|
+
background-color: rgb(217 181 74 / var(--tw-bg-opacity));
|
|
2523
|
+
}
|
|
2524
|
+
.hover\:n-bg-warning-60:hover{
|
|
2525
|
+
--tw-bg-opacity: 1;
|
|
2526
|
+
background-color: rgb(150 108 46 / var(--tw-bg-opacity));
|
|
2527
|
+
}
|
|
2528
|
+
.hover\:n-bg-warning-70:hover{
|
|
2529
|
+
--tw-bg-opacity: 1;
|
|
2530
|
+
background-color: rgb(102 72 23 / var(--tw-bg-opacity));
|
|
2531
|
+
}
|
|
2532
|
+
.hover\:n-bg-blueberry-10:hover{
|
|
2533
|
+
--tw-bg-opacity: 1;
|
|
2534
|
+
background-color: rgb(232 235 246 / var(--tw-bg-opacity));
|
|
2535
|
+
}
|
|
2536
|
+
.hover\:n-bg-blueberry-20:hover{
|
|
2537
|
+
--tw-bg-opacity: 1;
|
|
2538
|
+
background-color: rgb(196 204 233 / var(--tw-bg-opacity));
|
|
2539
|
+
}
|
|
2540
|
+
.hover\:n-bg-blueberry-30:hover{
|
|
2541
|
+
--tw-bg-opacity: 1;
|
|
2542
|
+
background-color: rgb(157 171 217 / var(--tw-bg-opacity));
|
|
2543
|
+
}
|
|
2544
|
+
.hover\:n-bg-blueberry-40:hover{
|
|
2545
|
+
--tw-bg-opacity: 1;
|
|
2546
|
+
background-color: rgb(118 138 202 / var(--tw-bg-opacity));
|
|
2547
|
+
}
|
|
2548
|
+
.hover\:n-bg-blueberry-50:hover{
|
|
2549
|
+
--tw-bg-opacity: 1;
|
|
2550
|
+
background-color: rgb(53 87 180 / var(--tw-bg-opacity));
|
|
2551
|
+
}
|
|
2552
|
+
.hover\:n-bg-blueberry-60:hover{
|
|
2553
|
+
--tw-bg-opacity: 1;
|
|
2554
|
+
background-color: rgb(37 69 158 / var(--tw-bg-opacity));
|
|
2555
|
+
}
|
|
2556
|
+
.hover\:n-bg-blueberry-70:hover{
|
|
2557
|
+
--tw-bg-opacity: 1;
|
|
2558
|
+
background-color: rgb(11 41 125 / var(--tw-bg-opacity));
|
|
2559
|
+
}
|
|
2560
|
+
.hover\:n-bg-mint-10:hover{
|
|
2561
|
+
--tw-bg-opacity: 1;
|
|
2562
|
+
background-color: rgb(240 255 250 / var(--tw-bg-opacity));
|
|
2563
|
+
}
|
|
2564
|
+
.hover\:n-bg-mint-20:hover{
|
|
2565
|
+
--tw-bg-opacity: 1;
|
|
2566
|
+
background-color: rgb(209 255 244 / var(--tw-bg-opacity));
|
|
2567
|
+
}
|
|
2568
|
+
.hover\:n-bg-mint-30:hover{
|
|
2569
|
+
--tw-bg-opacity: 1;
|
|
2570
|
+
background-color: rgb(168 255 238 / var(--tw-bg-opacity));
|
|
2571
|
+
}
|
|
2572
|
+
.hover\:n-bg-mint-40:hover{
|
|
2573
|
+
--tw-bg-opacity: 1;
|
|
2574
|
+
background-color: rgb(85 249 226 / var(--tw-bg-opacity));
|
|
2575
|
+
}
|
|
2576
|
+
.hover\:n-bg-mint-50:hover{
|
|
2577
|
+
--tw-bg-opacity: 1;
|
|
2578
|
+
background-color: rgb(61 212 197 / var(--tw-bg-opacity));
|
|
2579
|
+
}
|
|
2580
|
+
.hover\:n-bg-mint-60:hover{
|
|
2581
|
+
--tw-bg-opacity: 1;
|
|
2582
|
+
background-color: rgb(42 173 165 / var(--tw-bg-opacity));
|
|
2583
|
+
}
|
|
2584
|
+
.hover\:n-bg-mint-70:hover{
|
|
2585
|
+
--tw-bg-opacity: 1;
|
|
2586
|
+
background-color: rgb(17 97 97 / var(--tw-bg-opacity));
|
|
2587
|
+
}
|
|
2588
|
+
.hover\:n-bg-neutral-10:hover{
|
|
2589
|
+
--tw-bg-opacity: 1;
|
|
2590
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
2591
|
+
}
|
|
2592
|
+
.hover\:n-bg-neutral-20:hover{
|
|
2593
|
+
--tw-bg-opacity: 1;
|
|
2594
|
+
background-color: rgb(245 247 250 / var(--tw-bg-opacity));
|
|
2595
|
+
}
|
|
2596
|
+
.hover\:n-bg-neutral-30:hover{
|
|
2597
|
+
--tw-bg-opacity: 1;
|
|
2598
|
+
background-color: rgb(238 241 246 / var(--tw-bg-opacity));
|
|
2599
|
+
}
|
|
2600
|
+
.hover\:n-bg-neutral-40:hover{
|
|
2601
|
+
--tw-bg-opacity: 1;
|
|
2602
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
2603
|
+
}
|
|
2604
|
+
.hover\:n-bg-neutral-50:hover{
|
|
2605
|
+
--tw-bg-opacity: 1;
|
|
2606
|
+
background-color: rgb(196 200 205 / var(--tw-bg-opacity));
|
|
2607
|
+
}
|
|
2608
|
+
.hover\:n-bg-neutral-60:hover{
|
|
2609
|
+
--tw-bg-opacity: 1;
|
|
2610
|
+
background-color: rgb(178 183 189 / var(--tw-bg-opacity));
|
|
2611
|
+
}
|
|
2612
|
+
.hover\:n-bg-neutral-70:hover{
|
|
2613
|
+
--tw-bg-opacity: 1;
|
|
2614
|
+
background-color: rgb(113 119 128 / var(--tw-bg-opacity));
|
|
2615
|
+
}
|
|
2616
|
+
.hover\:n-bg-neutral-80:hover{
|
|
2617
|
+
--tw-bg-opacity: 1;
|
|
2618
|
+
background-color: rgb(83 91 102 / var(--tw-bg-opacity));
|
|
2619
|
+
}
|
|
2620
|
+
.hover\:n-bg-neutral-90:hover{
|
|
2621
|
+
--tw-bg-opacity: 1;
|
|
2622
|
+
background-color: rgb(21 30 41 / var(--tw-bg-opacity));
|
|
2623
|
+
}
|
|
2624
|
+
.hover\:n-text-primary-10:hover{
|
|
2625
|
+
--tw-text-opacity: 1;
|
|
2626
|
+
color: rgb(230 248 255 / var(--tw-text-opacity));
|
|
2627
|
+
}
|
|
2628
|
+
.hover\:n-text-primary-20:hover{
|
|
2629
|
+
--tw-text-opacity: 1;
|
|
2630
|
+
color: rgb(163 226 255 / var(--tw-text-opacity));
|
|
2631
|
+
}
|
|
2632
|
+
.hover\:n-text-primary-30:hover{
|
|
2633
|
+
--tw-text-opacity: 1;
|
|
2634
|
+
color: rgb(122 209 255 / var(--tw-text-opacity));
|
|
2635
|
+
}
|
|
2636
|
+
.hover\:n-text-primary-40:hover{
|
|
2637
|
+
--tw-text-opacity: 1;
|
|
2638
|
+
color: rgb(1 139 255 / var(--tw-text-opacity));
|
|
2639
|
+
}
|
|
2640
|
+
.hover\:n-text-primary-50:hover{
|
|
2641
|
+
--tw-text-opacity: 1;
|
|
2642
|
+
color: rgb(0 111 214 / var(--tw-text-opacity));
|
|
2643
|
+
}
|
|
2644
|
+
.hover\:n-text-primary-60:hover{
|
|
2645
|
+
--tw-text-opacity: 1;
|
|
2646
|
+
color: rgb(0 86 179 / var(--tw-text-opacity));
|
|
2647
|
+
}
|
|
2648
|
+
.hover\:n-text-primary-70:hover{
|
|
2649
|
+
--tw-text-opacity: 1;
|
|
2650
|
+
color: rgb(0 64 146 / var(--tw-text-opacity));
|
|
2651
|
+
}
|
|
2652
|
+
.hover\:n-text-danger-10:hover{
|
|
2653
|
+
--tw-text-opacity: 1;
|
|
2654
|
+
color: rgb(255 230 233 / var(--tw-text-opacity));
|
|
2655
|
+
}
|
|
2656
|
+
.hover\:n-text-danger-20:hover{
|
|
2657
|
+
--tw-text-opacity: 1;
|
|
2658
|
+
color: rgb(255 184 196 / var(--tw-text-opacity));
|
|
2659
|
+
}
|
|
2660
|
+
.hover\:n-text-danger-30:hover{
|
|
2661
|
+
--tw-text-opacity: 1;
|
|
2662
|
+
color: rgb(255 102 138 / var(--tw-text-opacity));
|
|
2663
|
+
}
|
|
2664
|
+
.hover\:n-text-danger-40:hover{
|
|
2665
|
+
--tw-text-opacity: 1;
|
|
2666
|
+
color: rgb(237 18 82 / var(--tw-text-opacity));
|
|
2667
|
+
}
|
|
2668
|
+
.hover\:n-text-danger-50:hover{
|
|
2669
|
+
--tw-text-opacity: 1;
|
|
2670
|
+
color: rgb(204 37 75 / var(--tw-text-opacity));
|
|
2671
|
+
}
|
|
2672
|
+
.hover\:n-text-danger-60:hover{
|
|
2673
|
+
--tw-text-opacity: 1;
|
|
2674
|
+
color: rgb(161 0 59 / var(--tw-text-opacity));
|
|
2675
|
+
}
|
|
2676
|
+
.hover\:n-text-danger-70:hover{
|
|
2677
|
+
--tw-text-opacity: 1;
|
|
2678
|
+
color: rgb(122 0 49 / var(--tw-text-opacity));
|
|
2679
|
+
}
|
|
2680
|
+
.hover\:n-text-success-10:hover{
|
|
2681
|
+
--tw-text-opacity: 1;
|
|
2682
|
+
color: rgb(225 250 239 / var(--tw-text-opacity));
|
|
2683
|
+
}
|
|
2684
|
+
.hover\:n-text-success-20:hover{
|
|
2685
|
+
--tw-text-opacity: 1;
|
|
2686
|
+
color: rgb(152 237 203 / var(--tw-text-opacity));
|
|
2687
|
+
}
|
|
2688
|
+
.hover\:n-text-success-30:hover{
|
|
2689
|
+
--tw-text-opacity: 1;
|
|
2690
|
+
color: rgb(68 212 164 / var(--tw-text-opacity));
|
|
2691
|
+
}
|
|
2692
|
+
.hover\:n-text-success-40:hover{
|
|
2693
|
+
--tw-text-opacity: 1;
|
|
2694
|
+
color: rgb(0 186 136 / var(--tw-text-opacity));
|
|
2695
|
+
}
|
|
2696
|
+
.hover\:n-text-success-50:hover{
|
|
2697
|
+
--tw-text-opacity: 1;
|
|
2698
|
+
color: rgb(50 125 96 / var(--tw-text-opacity));
|
|
2699
|
+
}
|
|
2700
|
+
.hover\:n-text-success-60:hover{
|
|
2701
|
+
--tw-text-opacity: 1;
|
|
2702
|
+
color: rgb(0 110 88 / var(--tw-text-opacity));
|
|
2703
|
+
}
|
|
2704
|
+
.hover\:n-text-success-70:hover{
|
|
2705
|
+
--tw-text-opacity: 1;
|
|
2706
|
+
color: rgb(0 71 59 / var(--tw-text-opacity));
|
|
2707
|
+
}
|
|
2708
|
+
.hover\:n-text-warning-10:hover{
|
|
2709
|
+
--tw-text-opacity: 1;
|
|
2710
|
+
color: rgb(255 251 222 / var(--tw-text-opacity));
|
|
2711
|
+
}
|
|
2712
|
+
.hover\:n-text-warning-20:hover{
|
|
2713
|
+
--tw-text-opacity: 1;
|
|
2714
|
+
color: rgb(255 244 181 / var(--tw-text-opacity));
|
|
2715
|
+
}
|
|
2716
|
+
.hover\:n-text-warning-30:hover{
|
|
2717
|
+
--tw-text-opacity: 1;
|
|
2718
|
+
color: rgb(255 234 140 / var(--tw-text-opacity));
|
|
2719
|
+
}
|
|
2720
|
+
.hover\:n-text-warning-40:hover{
|
|
2721
|
+
--tw-text-opacity: 1;
|
|
2722
|
+
color: rgb(255 222 99 / var(--tw-text-opacity));
|
|
2723
|
+
}
|
|
2724
|
+
.hover\:n-text-warning-50:hover{
|
|
2725
|
+
--tw-text-opacity: 1;
|
|
2726
|
+
color: rgb(217 181 74 / var(--tw-text-opacity));
|
|
2727
|
+
}
|
|
2728
|
+
.hover\:n-text-warning-60:hover{
|
|
2729
|
+
--tw-text-opacity: 1;
|
|
2730
|
+
color: rgb(150 108 46 / var(--tw-text-opacity));
|
|
2731
|
+
}
|
|
2732
|
+
.hover\:n-text-warning-70:hover{
|
|
2733
|
+
--tw-text-opacity: 1;
|
|
2734
|
+
color: rgb(102 72 23 / var(--tw-text-opacity));
|
|
2735
|
+
}
|
|
2736
|
+
.hover\:n-text-blueberry-10:hover{
|
|
2737
|
+
--tw-text-opacity: 1;
|
|
2738
|
+
color: rgb(232 235 246 / var(--tw-text-opacity));
|
|
2739
|
+
}
|
|
2740
|
+
.hover\:n-text-blueberry-20:hover{
|
|
2741
|
+
--tw-text-opacity: 1;
|
|
2742
|
+
color: rgb(196 204 233 / var(--tw-text-opacity));
|
|
2743
|
+
}
|
|
2744
|
+
.hover\:n-text-blueberry-30:hover{
|
|
2745
|
+
--tw-text-opacity: 1;
|
|
2746
|
+
color: rgb(157 171 217 / var(--tw-text-opacity));
|
|
2747
|
+
}
|
|
2748
|
+
.hover\:n-text-blueberry-40:hover{
|
|
2749
|
+
--tw-text-opacity: 1;
|
|
2750
|
+
color: rgb(118 138 202 / var(--tw-text-opacity));
|
|
2751
|
+
}
|
|
2752
|
+
.hover\:n-text-blueberry-50:hover{
|
|
2753
|
+
--tw-text-opacity: 1;
|
|
2754
|
+
color: rgb(53 87 180 / var(--tw-text-opacity));
|
|
2755
|
+
}
|
|
2756
|
+
.hover\:n-text-blueberry-60:hover{
|
|
2757
|
+
--tw-text-opacity: 1;
|
|
2758
|
+
color: rgb(37 69 158 / var(--tw-text-opacity));
|
|
2759
|
+
}
|
|
2760
|
+
.hover\:n-text-blueberry-70:hover{
|
|
2761
|
+
--tw-text-opacity: 1;
|
|
2762
|
+
color: rgb(11 41 125 / var(--tw-text-opacity));
|
|
2763
|
+
}
|
|
2764
|
+
.hover\:n-text-mint-10:hover{
|
|
2765
|
+
--tw-text-opacity: 1;
|
|
2766
|
+
color: rgb(240 255 250 / var(--tw-text-opacity));
|
|
2767
|
+
}
|
|
2768
|
+
.hover\:n-text-mint-20:hover{
|
|
2769
|
+
--tw-text-opacity: 1;
|
|
2770
|
+
color: rgb(209 255 244 / var(--tw-text-opacity));
|
|
2771
|
+
}
|
|
2772
|
+
.hover\:n-text-mint-30:hover{
|
|
2773
|
+
--tw-text-opacity: 1;
|
|
2774
|
+
color: rgb(168 255 238 / var(--tw-text-opacity));
|
|
2775
|
+
}
|
|
2776
|
+
.hover\:n-text-mint-40:hover{
|
|
2777
|
+
--tw-text-opacity: 1;
|
|
2778
|
+
color: rgb(85 249 226 / var(--tw-text-opacity));
|
|
2779
|
+
}
|
|
2780
|
+
.hover\:n-text-mint-50:hover{
|
|
2781
|
+
--tw-text-opacity: 1;
|
|
2782
|
+
color: rgb(61 212 197 / var(--tw-text-opacity));
|
|
2783
|
+
}
|
|
2784
|
+
.hover\:n-text-mint-60:hover{
|
|
2785
|
+
--tw-text-opacity: 1;
|
|
2786
|
+
color: rgb(42 173 165 / var(--tw-text-opacity));
|
|
2787
|
+
}
|
|
2788
|
+
.hover\:n-text-mint-70:hover{
|
|
2789
|
+
--tw-text-opacity: 1;
|
|
2790
|
+
color: rgb(17 97 97 / var(--tw-text-opacity));
|
|
2791
|
+
}
|
|
2792
|
+
.hover\:n-text-neutral-10:hover{
|
|
2793
|
+
--tw-text-opacity: 1;
|
|
2794
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2795
|
+
}
|
|
2796
|
+
.hover\:n-text-neutral-20:hover{
|
|
2797
|
+
--tw-text-opacity: 1;
|
|
2798
|
+
color: rgb(245 247 250 / var(--tw-text-opacity));
|
|
2799
|
+
}
|
|
2800
|
+
.hover\:n-text-neutral-30:hover{
|
|
2801
|
+
--tw-text-opacity: 1;
|
|
2802
|
+
color: rgb(238 241 246 / var(--tw-text-opacity));
|
|
2803
|
+
}
|
|
2804
|
+
.hover\:n-text-neutral-40:hover{
|
|
2805
|
+
--tw-text-opacity: 1;
|
|
2806
|
+
color: rgb(230 233 238 / var(--tw-text-opacity));
|
|
2807
|
+
}
|
|
2808
|
+
.hover\:n-text-neutral-50:hover{
|
|
2809
|
+
--tw-text-opacity: 1;
|
|
2810
|
+
color: rgb(196 200 205 / var(--tw-text-opacity));
|
|
2811
|
+
}
|
|
2812
|
+
.hover\:n-text-neutral-60:hover{
|
|
2813
|
+
--tw-text-opacity: 1;
|
|
2814
|
+
color: rgb(178 183 189 / var(--tw-text-opacity));
|
|
2815
|
+
}
|
|
2816
|
+
.hover\:n-text-neutral-70:hover{
|
|
2817
|
+
--tw-text-opacity: 1;
|
|
2818
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
2819
|
+
}
|
|
2820
|
+
.hover\:n-text-neutral-80:hover{
|
|
2821
|
+
--tw-text-opacity: 1;
|
|
2822
|
+
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
2823
|
+
}
|
|
2824
|
+
.hover\:n-text-neutral-90:hover{
|
|
2825
|
+
--tw-text-opacity: 1;
|
|
2826
|
+
color: rgb(21 30 41 / var(--tw-text-opacity));
|
|
2827
|
+
}
|
|
2828
|
+
@media (min-width: 640px){
|
|
2829
|
+
.sm\:n-space-y-0 > :not([hidden]) ~ :not([hidden]){
|
|
2830
|
+
--tw-space-y-reverse: 0;
|
|
2831
|
+
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
|
|
2832
|
+
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
2833
|
+
}
|
|
2834
|
+
.sm\:n-space-x-4 > :not([hidden]) ~ :not([hidden]){
|
|
2835
|
+
--tw-space-x-reverse: 0;
|
|
2836
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
2837
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2838
|
+
}
|
|
2839
|
+
}
|