@collabchron/notiq 1.1.1 → 1.1.2
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/dist/styles/notiq.css +1 -1
- package/package.json +1 -2
- package/src/styles/notiq.css +346 -253
package/src/styles/notiq.css
CHANGED
|
@@ -6,11 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
@custom-variant dark (&:is(.dark *));
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
/* =========================
|
|
11
|
-
Theme Tokens (SCOPED)
|
|
12
|
-
========================= */
|
|
13
|
-
.notiq-root {
|
|
9
|
+
:root {
|
|
14
10
|
--background: oklch(1 0 0);
|
|
15
11
|
--foreground: oklch(0.145 0 0);
|
|
16
12
|
--card: oklch(1 0 0);
|
|
@@ -54,7 +50,7 @@
|
|
|
54
50
|
--background-red: #fbe4e4;
|
|
55
51
|
}
|
|
56
52
|
|
|
57
|
-
.dark
|
|
53
|
+
.dark {
|
|
58
54
|
--background: oklch(0.145 0 0);
|
|
59
55
|
--foreground: oklch(0.985 0 0);
|
|
60
56
|
--card: oklch(0.145 0 0);
|
|
@@ -96,35 +92,6 @@
|
|
|
96
92
|
--background-red: #594141;
|
|
97
93
|
}
|
|
98
94
|
|
|
99
|
-
/* =========================
|
|
100
|
-
Tailwind Token Bridge
|
|
101
|
-
========================= */
|
|
102
|
-
.notiq-root {
|
|
103
|
-
--color-background: var(--background);
|
|
104
|
-
--color-foreground: var(--foreground);
|
|
105
|
-
--color-card: var(--card);
|
|
106
|
-
--color-card-foreground: var(--card-foreground);
|
|
107
|
-
--color-popover: var(--popover);
|
|
108
|
-
--color-popover-foreground: var(--popover-foreground);
|
|
109
|
-
--color-primary: var(--primary);
|
|
110
|
-
--color-primary-foreground: var(--primary-foreground);
|
|
111
|
-
--color-secondary: var(--secondary);
|
|
112
|
-
--color-secondary-foreground: var(--secondary-foreground);
|
|
113
|
-
--color-muted: var(--muted);
|
|
114
|
-
--color-muted-foreground: var(--muted-foreground);
|
|
115
|
-
--color-accent: var(--accent);
|
|
116
|
-
--color-accent-foreground: var(--accent-foreground);
|
|
117
|
-
--color-destructive: var(--destructive);
|
|
118
|
-
--color-destructive-foreground: var(--destructive-foreground);
|
|
119
|
-
--color-border: var(--border);
|
|
120
|
-
--color-input: var(--input);
|
|
121
|
-
--color-ring: var(--ring);
|
|
122
|
-
--radius-sm: calc(var(--radius) - 4px);
|
|
123
|
-
--radius-md: calc(var(--radius) - 2px);
|
|
124
|
-
--radius-lg: var(--radius);
|
|
125
|
-
--radius-xl: calc(var(--radius) + 4px);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
95
|
@theme inline {
|
|
129
96
|
--color-background: var(--background);
|
|
130
97
|
--color-foreground: var(--foreground);
|
|
@@ -151,42 +118,45 @@
|
|
|
151
118
|
--radius-xl: calc(var(--radius) + 4px);
|
|
152
119
|
}
|
|
153
120
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
@apply border-border outline-ring/50;
|
|
121
|
+
@layer base {
|
|
122
|
+
* {
|
|
123
|
+
@apply border-border outline-ring/50;
|
|
124
|
+
}
|
|
159
125
|
}
|
|
160
126
|
|
|
161
|
-
/*
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
.notiq-root input[type="number"]::-webkit-inner-spin-button,
|
|
165
|
-
.notiq-root input[type="number"]::-webkit-outer-spin-button {
|
|
127
|
+
/* Editor custom styles */
|
|
128
|
+
input[type="number"]::-webkit-inner-spin-button,
|
|
129
|
+
input[type="number"]::-webkit-outer-spin-button {
|
|
166
130
|
-webkit-appearance: none;
|
|
167
131
|
margin: 0;
|
|
168
132
|
}
|
|
169
133
|
|
|
170
|
-
|
|
134
|
+
#toolbar {
|
|
171
135
|
scrollbar-width: none;
|
|
172
136
|
}
|
|
173
137
|
|
|
174
|
-
|
|
138
|
+
#toolbar::-webkit-scrollbar {
|
|
175
139
|
display: none;
|
|
176
140
|
}
|
|
177
141
|
|
|
178
|
-
.
|
|
142
|
+
.code {
|
|
179
143
|
scrollbar-width: none;
|
|
180
144
|
}
|
|
181
145
|
|
|
182
|
-
.
|
|
146
|
+
.code::-webkit-scrollbar {
|
|
183
147
|
display: none;
|
|
184
148
|
}
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
149
|
+
/* File: C:\Users\HP\notiq\src\components\editor\nodes\InlineImageNode\InlineImageNode.css */
|
|
150
|
+
/**
|
|
151
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
152
|
+
*
|
|
153
|
+
* This source code is licensed under the MIT license found in the
|
|
154
|
+
* LICENSE file in the root directory of this source tree.
|
|
155
|
+
*
|
|
156
|
+
*
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
.InlineImageNode__contentEditable {
|
|
190
160
|
min-height: 20px;
|
|
191
161
|
border: 0px;
|
|
192
162
|
resize: none;
|
|
@@ -205,7 +175,7 @@
|
|
|
205
175
|
word-break: break-word;
|
|
206
176
|
}
|
|
207
177
|
|
|
208
|
-
.
|
|
178
|
+
.InlineImageNode__placeholder {
|
|
209
179
|
font-size: 12px;
|
|
210
180
|
color: #888;
|
|
211
181
|
overflow: hidden;
|
|
@@ -219,14 +189,14 @@
|
|
|
219
189
|
pointer-events: none;
|
|
220
190
|
}
|
|
221
191
|
|
|
222
|
-
.
|
|
223
|
-
.
|
|
192
|
+
.InlineImageNode_Checkbox:checked,
|
|
193
|
+
.InlineImageNode_Checkbox:not(:checked) {
|
|
224
194
|
position: absolute;
|
|
225
195
|
left: -9999px;
|
|
226
196
|
}
|
|
227
197
|
|
|
228
|
-
.
|
|
229
|
-
.
|
|
198
|
+
.InlineImageNode_Checkbox:checked + label,
|
|
199
|
+
.InlineImageNode_Checkbox:not(:checked) + label {
|
|
230
200
|
position: absolute;
|
|
231
201
|
padding-right: 55px;
|
|
232
202
|
cursor: pointer;
|
|
@@ -235,8 +205,8 @@
|
|
|
235
205
|
color: #666;
|
|
236
206
|
}
|
|
237
207
|
|
|
238
|
-
.
|
|
239
|
-
.
|
|
208
|
+
.InlineImageNode_Checkbox:checked + label:before,
|
|
209
|
+
.InlineImageNode_Checkbox:not(:checked) + label:before {
|
|
240
210
|
content: '';
|
|
241
211
|
position: absolute;
|
|
242
212
|
right: 0;
|
|
@@ -247,8 +217,8 @@
|
|
|
247
217
|
background: #fff;
|
|
248
218
|
}
|
|
249
219
|
|
|
250
|
-
.
|
|
251
|
-
.
|
|
220
|
+
.InlineImageNode_Checkbox:checked + label:after,
|
|
221
|
+
.InlineImageNode_Checkbox:not(:checked) + label:after {
|
|
252
222
|
content: '';
|
|
253
223
|
width: 8px;
|
|
254
224
|
height: 8px;
|
|
@@ -260,37 +230,47 @@
|
|
|
260
230
|
transition: all 0.2s ease;
|
|
261
231
|
}
|
|
262
232
|
|
|
263
|
-
.
|
|
233
|
+
.InlineImageNode_Checkbox:not(:checked) + label:after {
|
|
264
234
|
opacity: 0;
|
|
265
235
|
-webkit-transform: scale(0);
|
|
266
236
|
transform: scale(0);
|
|
267
237
|
}
|
|
268
238
|
|
|
269
|
-
.
|
|
239
|
+
.InlineImageNode_Checkbox:checked + label:after {
|
|
270
240
|
opacity: 1;
|
|
271
241
|
-webkit-transform: scale(1);
|
|
272
242
|
transform: scale(1);
|
|
273
243
|
}
|
|
274
244
|
|
|
275
|
-
|
|
245
|
+
|
|
246
|
+
/* File: C:\Users\HP\notiq\src\components\editor\plugins\CollapsiblePlugin\Collapsible.css */
|
|
247
|
+
.Collapsible__container {
|
|
276
248
|
margin-bottom: 8px;
|
|
249
|
+
|
|
277
250
|
}
|
|
278
251
|
|
|
279
|
-
.
|
|
252
|
+
.Collapsible__title {
|
|
280
253
|
cursor: pointer;
|
|
281
254
|
padding: 5px 5px 5px 20px;
|
|
282
255
|
position: relative;
|
|
283
256
|
font-weight: bold;
|
|
284
257
|
list-style: none;
|
|
285
258
|
outline: none;
|
|
259
|
+
|
|
286
260
|
}
|
|
287
261
|
|
|
288
|
-
|
|
289
|
-
.
|
|
262
|
+
|
|
263
|
+
.Collapsible__title::marker,
|
|
264
|
+
.Collapsible__title::-webkit-details-marker {
|
|
290
265
|
display: none;
|
|
266
|
+
|
|
291
267
|
}
|
|
292
268
|
|
|
293
|
-
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
.dark .Collapsible__title:before {
|
|
294
274
|
border-style: solid;
|
|
295
275
|
border-color: transparent;
|
|
296
276
|
border-width: 5px;
|
|
@@ -302,8 +282,7 @@
|
|
|
302
282
|
top: 50%;
|
|
303
283
|
transform: translateY(-50%);
|
|
304
284
|
}
|
|
305
|
-
|
|
306
|
-
.notiq-root .Collapsible__title:before {
|
|
285
|
+
.Collapsible__title:before {
|
|
307
286
|
border-style: solid;
|
|
308
287
|
border-color: transparent;
|
|
309
288
|
border-width: 5px;
|
|
@@ -316,28 +295,35 @@
|
|
|
316
295
|
transform: translateY(-50%);
|
|
317
296
|
}
|
|
318
297
|
|
|
319
|
-
.dark .
|
|
298
|
+
.dark .Collapsible__container[open] > .Collapsible__title:before {
|
|
320
299
|
border-color: transparent;
|
|
321
300
|
border-width: 6px 4px 0 4px;
|
|
322
301
|
border-top-color: white;
|
|
302
|
+
|
|
303
|
+
|
|
323
304
|
}
|
|
324
305
|
|
|
325
|
-
.
|
|
306
|
+
.Collapsible__container[open] > .Collapsible__title:before {
|
|
326
307
|
border-color: transparent;
|
|
327
308
|
border-width: 6px 4px 0 4px;
|
|
328
309
|
border-top-color: #000;
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
329
313
|
}
|
|
330
314
|
|
|
331
|
-
.
|
|
315
|
+
.Collapsible__content {
|
|
332
316
|
padding: 0 5px 5px 20px;
|
|
333
317
|
}
|
|
334
318
|
|
|
335
|
-
.
|
|
319
|
+
.Collapsible__collapsed .Collapsible__content {
|
|
336
320
|
display: none;
|
|
337
321
|
user-select: none;
|
|
338
322
|
}
|
|
339
323
|
|
|
340
|
-
|
|
324
|
+
|
|
325
|
+
/* File: C:\Users\HP\notiq\src\components\editor\themes\theme.css */
|
|
326
|
+
.PlaygroundEditorTheme__table {
|
|
341
327
|
border-collapse: collapse;
|
|
342
328
|
border-spacing: 0;
|
|
343
329
|
overflow-x: auto;
|
|
@@ -348,15 +334,13 @@
|
|
|
348
334
|
margin: 0px 25px 30px 0px;
|
|
349
335
|
}
|
|
350
336
|
|
|
351
|
-
.
|
|
337
|
+
.PlaygroundEditorTheme__tableSelection *::selection {
|
|
352
338
|
background-color: transparent;
|
|
353
339
|
}
|
|
354
|
-
|
|
355
|
-
.notiq-root .PlaygroundEditorTheme__tableSelected {
|
|
340
|
+
.PlaygroundEditorTheme__tableSelected {
|
|
356
341
|
outline: 2px solid rgb(60, 132, 244);
|
|
357
342
|
}
|
|
358
|
-
|
|
359
|
-
.notiq-root .PlaygroundEditorTheme__tableCell {
|
|
343
|
+
.PlaygroundEditorTheme__tableCell {
|
|
360
344
|
border: 1px solid #979797;
|
|
361
345
|
width: 75px;
|
|
362
346
|
min-width: 75px;
|
|
@@ -366,19 +350,18 @@
|
|
|
366
350
|
position: relative;
|
|
367
351
|
outline: none;
|
|
368
352
|
}
|
|
369
|
-
|
|
370
|
-
.notiq-root .PlaygroundEditorTheme__tableCellSortedIndicator {
|
|
353
|
+
.PlaygroundEditorTheme__tableCellSortedIndicator {
|
|
371
354
|
display: block;
|
|
372
355
|
opacity: 0.5;
|
|
373
356
|
position: absolute;
|
|
374
357
|
bottom: 0;
|
|
375
358
|
left: 0;
|
|
376
359
|
width: 100%;
|
|
360
|
+
|
|
377
361
|
height: 4px;
|
|
378
362
|
background-color: #999;
|
|
379
363
|
}
|
|
380
|
-
|
|
381
|
-
.notiq-root .PlaygroundEditorTheme__tableCellResizer {
|
|
364
|
+
.PlaygroundEditorTheme__tableCellResizer {
|
|
382
365
|
position: absolute;
|
|
383
366
|
right: -4px;
|
|
384
367
|
height: 100%;
|
|
@@ -387,16 +370,13 @@
|
|
|
387
370
|
z-index: 10;
|
|
388
371
|
top: 0;
|
|
389
372
|
}
|
|
390
|
-
|
|
391
|
-
.notiq-root .PlaygroundEditorTheme__tableCellHeader {
|
|
373
|
+
.PlaygroundEditorTheme__tableCellHeader {
|
|
392
374
|
text-align: start;
|
|
393
375
|
}
|
|
394
|
-
|
|
395
|
-
.notiq-root .PlaygroundEditorTheme__tableCellSelected {
|
|
376
|
+
.PlaygroundEditorTheme__tableCellSelected {
|
|
396
377
|
background-color: #c9dbf0;
|
|
397
378
|
}
|
|
398
|
-
|
|
399
|
-
.notiq-root .PlaygroundEditorTheme__tableCellPrimarySelected {
|
|
379
|
+
.PlaygroundEditorTheme__tableCellPrimarySelected {
|
|
400
380
|
border: 2px solid rgb(60, 132, 244);
|
|
401
381
|
display: block;
|
|
402
382
|
height: calc(100% - 2px);
|
|
@@ -406,13 +386,11 @@
|
|
|
406
386
|
top: -1px;
|
|
407
387
|
z-index: 2;
|
|
408
388
|
}
|
|
409
|
-
|
|
410
|
-
.notiq-root .PlaygroundEditorTheme__tableCellEditing {
|
|
389
|
+
.PlaygroundEditorTheme__tableCellEditing {
|
|
411
390
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
|
|
412
391
|
border-radius: 3px;
|
|
413
392
|
}
|
|
414
|
-
|
|
415
|
-
.notiq-root .PlaygroundEditorTheme__tableAddColumns {
|
|
393
|
+
.PlaygroundEditorTheme__tableAddColumns {
|
|
416
394
|
position: absolute;
|
|
417
395
|
background-color: #eee;
|
|
418
396
|
height: 100%;
|
|
@@ -420,8 +398,7 @@
|
|
|
420
398
|
border: 0;
|
|
421
399
|
cursor: pointer;
|
|
422
400
|
}
|
|
423
|
-
|
|
424
|
-
.notiq-root .PlaygroundEditorTheme__tableAddColumns:after {
|
|
401
|
+
.PlaygroundEditorTheme__tableAddColumns:after {
|
|
425
402
|
background-image: url(/public/images/icons/plus.svg);
|
|
426
403
|
background-size: contain;
|
|
427
404
|
background-position: center;
|
|
@@ -435,13 +412,11 @@
|
|
|
435
412
|
height: 100%;
|
|
436
413
|
opacity: 0.4;
|
|
437
414
|
}
|
|
438
|
-
|
|
439
|
-
.
|
|
440
|
-
.notiq-root .PlaygroundEditorTheme__tableAddRows:hover {
|
|
415
|
+
.PlaygroundEditorTheme__tableAddColumns:hover,
|
|
416
|
+
.PlaygroundEditorTheme__tableAddRows:hover {
|
|
441
417
|
background-color: #c9dbf0;
|
|
442
418
|
}
|
|
443
|
-
|
|
444
|
-
.notiq-root .PlaygroundEditorTheme__tableAddRows {
|
|
419
|
+
.PlaygroundEditorTheme__tableAddRows {
|
|
445
420
|
position: absolute;
|
|
446
421
|
width: calc(100% - 25px);
|
|
447
422
|
background-color: #eee;
|
|
@@ -449,8 +424,7 @@
|
|
|
449
424
|
border: 0;
|
|
450
425
|
cursor: pointer;
|
|
451
426
|
}
|
|
452
|
-
|
|
453
|
-
.notiq-root .PlaygroundEditorTheme__tableAddRows:after {
|
|
427
|
+
.PlaygroundEditorTheme__tableAddRows:after {
|
|
454
428
|
background-image: url(/public/images/icons/plus.svg);
|
|
455
429
|
background-size: contain;
|
|
456
430
|
background-position: center;
|
|
@@ -464,7 +438,6 @@
|
|
|
464
438
|
height: 100%;
|
|
465
439
|
opacity: 0.4;
|
|
466
440
|
}
|
|
467
|
-
|
|
468
441
|
@keyframes table-controls {
|
|
469
442
|
0% {
|
|
470
443
|
opacity: 0;
|
|
@@ -473,8 +446,7 @@
|
|
|
473
446
|
opacity: 1;
|
|
474
447
|
}
|
|
475
448
|
}
|
|
476
|
-
|
|
477
|
-
.notiq-root .PlaygroundEditorTheme__tableCellResizeRuler {
|
|
449
|
+
.PlaygroundEditorTheme__tableCellResizeRuler {
|
|
478
450
|
display: block;
|
|
479
451
|
position: absolute;
|
|
480
452
|
width: 1px;
|
|
@@ -482,8 +454,7 @@
|
|
|
482
454
|
height: 100%;
|
|
483
455
|
top: 0;
|
|
484
456
|
}
|
|
485
|
-
|
|
486
|
-
.notiq-root .PlaygroundEditorTheme__tableCellActionButtonContainer {
|
|
457
|
+
.PlaygroundEditorTheme__tableCellActionButtonContainer {
|
|
487
458
|
display: block;
|
|
488
459
|
right: 5px;
|
|
489
460
|
top: 6px;
|
|
@@ -492,8 +463,7 @@
|
|
|
492
463
|
width: 20px;
|
|
493
464
|
height: 20px;
|
|
494
465
|
}
|
|
495
|
-
|
|
496
|
-
.notiq-root .PlaygroundEditorTheme__tableCellActionButton {
|
|
466
|
+
.PlaygroundEditorTheme__tableCellActionButton {
|
|
497
467
|
background-color: #eee;
|
|
498
468
|
display: block;
|
|
499
469
|
border: 0;
|
|
@@ -503,59 +473,51 @@
|
|
|
503
473
|
color: #222;
|
|
504
474
|
cursor: pointer;
|
|
505
475
|
}
|
|
506
|
-
|
|
507
|
-
.notiq-root .PlaygroundEditorTheme__tableCellActionButton:hover {
|
|
476
|
+
.PlaygroundEditorTheme__tableCellActionButton:hover {
|
|
508
477
|
background-color: #ddd;
|
|
509
478
|
}
|
|
510
479
|
|
|
511
|
-
.
|
|
480
|
+
.PlaygroundEditorTheme__tokenComment {
|
|
512
481
|
color: slategray;
|
|
513
482
|
}
|
|
514
|
-
|
|
515
|
-
.notiq-root .PlaygroundEditorTheme__tokenPunctuation {
|
|
483
|
+
.PlaygroundEditorTheme__tokenPunctuation {
|
|
516
484
|
color: #999;
|
|
517
485
|
}
|
|
518
|
-
|
|
519
|
-
.notiq-root .PlaygroundEditorTheme__tokenProperty {
|
|
486
|
+
.PlaygroundEditorTheme__tokenProperty {
|
|
520
487
|
color: rgba(226, 113, 175, 0.5);
|
|
521
488
|
}
|
|
522
|
-
|
|
523
|
-
.notiq-root .PlaygroundEditorTheme__tokenSelector {
|
|
489
|
+
.PlaygroundEditorTheme__tokenSelector {
|
|
524
490
|
color: #690;
|
|
525
491
|
}
|
|
526
|
-
|
|
527
|
-
.notiq-root .PlaygroundEditorTheme__tokenOperator {
|
|
492
|
+
.PlaygroundEditorTheme__tokenOperator {
|
|
528
493
|
color: #9a6e3a;
|
|
529
494
|
}
|
|
530
|
-
|
|
531
|
-
.notiq-root .PlaygroundEditorTheme__tokenAttr {
|
|
495
|
+
.PlaygroundEditorTheme__tokenAttr {
|
|
532
496
|
color: #07a;
|
|
533
497
|
}
|
|
534
|
-
|
|
535
|
-
.notiq-root .PlaygroundEditorTheme__tokenVariable {
|
|
498
|
+
.PlaygroundEditorTheme__tokenVariable {
|
|
536
499
|
color: #e90;
|
|
537
500
|
}
|
|
538
|
-
|
|
539
|
-
.notiq-root .PlaygroundEditorTheme__tokenFunction {
|
|
501
|
+
.PlaygroundEditorTheme__tokenFunction {
|
|
540
502
|
color: #e398a7;
|
|
541
503
|
}
|
|
542
504
|
|
|
543
|
-
.
|
|
505
|
+
.PlaygroundEditorTheme__embedBlock {
|
|
544
506
|
user-select: none;
|
|
545
507
|
}
|
|
546
|
-
|
|
547
|
-
.notiq-root .PlaygroundEditorTheme__embedBlockFocus {
|
|
508
|
+
.PlaygroundEditorTheme__embedBlockFocus {
|
|
548
509
|
outline: 2px solid rgb(60, 132, 244);
|
|
549
510
|
}
|
|
550
511
|
|
|
551
|
-
.
|
|
512
|
+
.line-code{
|
|
552
513
|
tab-size: 2;
|
|
553
514
|
}
|
|
554
515
|
|
|
555
|
-
|
|
516
|
+
|
|
517
|
+
.line-code:before {
|
|
556
518
|
content: attr(data-gutter);
|
|
557
519
|
position: absolute;
|
|
558
|
-
background-color:
|
|
520
|
+
background-color:transparent;
|
|
559
521
|
left: 0;
|
|
560
522
|
top: 0;
|
|
561
523
|
height: 100%;
|
|
@@ -566,42 +528,42 @@
|
|
|
566
528
|
text-align: right;
|
|
567
529
|
min-width: 25px;
|
|
568
530
|
}
|
|
569
|
-
|
|
570
|
-
.notiq-root .line-code:before:hover {
|
|
531
|
+
.line-code:before:hover{
|
|
571
532
|
background: red;
|
|
572
533
|
}
|
|
573
|
-
|
|
574
|
-
.dark .notiq-root .line-code:before {
|
|
534
|
+
.dark .line-code:before{
|
|
575
535
|
border-right: 1px solid #3b3b3b65;
|
|
576
536
|
color: #777;
|
|
537
|
+
|
|
577
538
|
}
|
|
578
539
|
|
|
579
|
-
.
|
|
580
|
-
.
|
|
581
|
-
.
|
|
582
|
-
.
|
|
583
|
-
.
|
|
540
|
+
.PlaygroundEditorTheme__ul1,
|
|
541
|
+
.PlaygroundEditorTheme__ul2,
|
|
542
|
+
.PlaygroundEditorTheme__ul3,
|
|
543
|
+
.PlaygroundEditorTheme__ul4,
|
|
544
|
+
.PlaygroundEditorTheme__ul5 {
|
|
584
545
|
padding: 0;
|
|
585
546
|
margin: 0;
|
|
586
547
|
list-style-position: inside;
|
|
548
|
+
|
|
587
549
|
}
|
|
588
|
-
|
|
589
|
-
.
|
|
590
|
-
.
|
|
591
|
-
.
|
|
592
|
-
.
|
|
593
|
-
.notiq-root .PlaygroundEditorTheme__ol5 {
|
|
550
|
+
.PlaygroundEditorTheme__ol1,
|
|
551
|
+
.PlaygroundEditorTheme__ol2,
|
|
552
|
+
.PlaygroundEditorTheme__ol3,
|
|
553
|
+
.PlaygroundEditorTheme__ol4,
|
|
554
|
+
.PlaygroundEditorTheme__ol5 {
|
|
594
555
|
padding: 0;
|
|
595
556
|
margin: 0;
|
|
596
557
|
list-style-position: inside;
|
|
597
558
|
}
|
|
598
|
-
|
|
599
|
-
.notiq-root .PlaygroundEditorTheme__listItem {
|
|
559
|
+
.PlaygroundEditorTheme__listItem {
|
|
600
560
|
margin: 2px 32px;
|
|
561
|
+
|
|
601
562
|
}
|
|
602
563
|
|
|
603
|
-
|
|
604
|
-
.
|
|
564
|
+
|
|
565
|
+
.PlaygroundEditorTheme__listItemChecked,
|
|
566
|
+
.PlaygroundEditorTheme__listItemUnchecked {
|
|
605
567
|
position: relative;
|
|
606
568
|
margin-left: 8px;
|
|
607
569
|
margin-right: 8px;
|
|
@@ -610,21 +572,19 @@
|
|
|
610
572
|
list-style-type: none;
|
|
611
573
|
outline: none;
|
|
612
574
|
}
|
|
613
|
-
|
|
614
|
-
.notiq-root .ol {
|
|
575
|
+
.ol {
|
|
615
576
|
list-style-type: decimal;
|
|
616
577
|
}
|
|
617
578
|
|
|
618
|
-
.
|
|
619
|
-
list-style-type:
|
|
579
|
+
.ul {
|
|
580
|
+
list-style-type:disc;
|
|
620
581
|
}
|
|
621
582
|
|
|
622
|
-
.
|
|
583
|
+
.PlaygroundEditorTheme__listItemChecked {
|
|
623
584
|
text-decoration: line-through;
|
|
624
585
|
}
|
|
625
|
-
|
|
626
|
-
.
|
|
627
|
-
.notiq-root .PlaygroundEditorTheme__listItemChecked:before {
|
|
586
|
+
.PlaygroundEditorTheme__listItemUnchecked:before,
|
|
587
|
+
.PlaygroundEditorTheme__listItemChecked:before {
|
|
628
588
|
content: '';
|
|
629
589
|
width: 16px;
|
|
630
590
|
height: 16px;
|
|
@@ -635,32 +595,27 @@
|
|
|
635
595
|
background-size: cover;
|
|
636
596
|
position: absolute;
|
|
637
597
|
}
|
|
638
|
-
|
|
639
|
-
.
|
|
640
|
-
.notiq-root .PlaygroundEditorTheme__listItemChecked[dir='rtl']:before {
|
|
598
|
+
.PlaygroundEditorTheme__listItemUnchecked[dir='rtl']:before,
|
|
599
|
+
.PlaygroundEditorTheme__listItemChecked[dir='rtl']:before {
|
|
641
600
|
left: auto;
|
|
642
601
|
right: 0;
|
|
643
602
|
}
|
|
644
|
-
|
|
645
|
-
.
|
|
646
|
-
.notiq-root .PlaygroundEditorTheme__listItemChecked:focus:before {
|
|
603
|
+
.PlaygroundEditorTheme__listItemUnchecked:focus:before,
|
|
604
|
+
.PlaygroundEditorTheme__listItemChecked:focus:before {
|
|
647
605
|
box-shadow: 0 0 0 2px #a6cdfe;
|
|
648
606
|
border-radius: 2px;
|
|
649
607
|
}
|
|
650
|
-
|
|
651
|
-
.notiq-root .PlaygroundEditorTheme__listItemUnchecked:before {
|
|
608
|
+
.PlaygroundEditorTheme__listItemUnchecked:before {
|
|
652
609
|
border: 1px solid #999;
|
|
653
610
|
border-radius: 2px;
|
|
654
611
|
}
|
|
655
|
-
|
|
656
|
-
.notiq-root .PlaygroundEditorTheme__listItemChecked:before {
|
|
612
|
+
.PlaygroundEditorTheme__listItemChecked:before {
|
|
657
613
|
border: 1px solid rgb(61, 135, 245);
|
|
658
614
|
border-radius: 2px;
|
|
659
615
|
background-color: #3d87f5;
|
|
660
616
|
background-repeat: no-repeat;
|
|
661
617
|
}
|
|
662
|
-
|
|
663
|
-
.notiq-root .PlaygroundEditorTheme__listItemChecked:after {
|
|
618
|
+
.PlaygroundEditorTheme__listItemChecked:after {
|
|
664
619
|
content: '';
|
|
665
620
|
cursor: pointer;
|
|
666
621
|
border-color: #fff;
|
|
@@ -676,91 +631,96 @@
|
|
|
676
631
|
border-width: 0 2px 2px 0;
|
|
677
632
|
}
|
|
678
633
|
|
|
679
|
-
.
|
|
634
|
+
.PlaygroundEditorTheme__ol1 {
|
|
680
635
|
padding: 0;
|
|
681
636
|
margin: 0;
|
|
682
637
|
list-style-position: outside;
|
|
683
638
|
}
|
|
684
|
-
|
|
685
|
-
.notiq-root .PlaygroundEditorTheme__ol2 {
|
|
639
|
+
.PlaygroundEditorTheme__ol2 {
|
|
686
640
|
padding: 0;
|
|
687
641
|
margin: 0;
|
|
688
642
|
list-style-type: upper-alpha;
|
|
689
643
|
list-style-position: outside;
|
|
690
644
|
}
|
|
691
|
-
|
|
692
|
-
.notiq-root .PlaygroundEditorTheme__ol3 {
|
|
645
|
+
.PlaygroundEditorTheme__ol3 {
|
|
693
646
|
padding: 0;
|
|
694
647
|
margin: 0;
|
|
695
648
|
list-style-type: lower-alpha;
|
|
696
649
|
list-style-position: outside;
|
|
697
650
|
}
|
|
698
|
-
|
|
699
|
-
.notiq-root .PlaygroundEditorTheme__ol4 {
|
|
651
|
+
.PlaygroundEditorTheme__ol4 {
|
|
700
652
|
padding: 0;
|
|
701
653
|
margin: 0;
|
|
702
654
|
list-style-type: upper-roman;
|
|
703
655
|
list-style-position: outside;
|
|
704
656
|
}
|
|
705
|
-
|
|
706
|
-
.notiq-root .PlaygroundEditorTheme__ol5 {
|
|
657
|
+
.PlaygroundEditorTheme__ol5 {
|
|
707
658
|
padding: 0;
|
|
708
659
|
margin: 0;
|
|
709
660
|
list-style-type: lower-roman;
|
|
710
661
|
list-style-position: outside;
|
|
711
662
|
}
|
|
712
663
|
|
|
713
|
-
.
|
|
664
|
+
.PlaygroundEditorTheme__ul1 {
|
|
714
665
|
padding: 0;
|
|
715
666
|
margin: 0;
|
|
716
|
-
list-style-type:
|
|
667
|
+
list-style-type:disc;
|
|
717
668
|
list-style-position: outside;
|
|
718
669
|
}
|
|
719
|
-
|
|
720
|
-
.notiq-root .PlaygroundEditorTheme__ul2 {
|
|
670
|
+
.PlaygroundEditorTheme__ul2 {
|
|
721
671
|
padding: 0;
|
|
722
672
|
margin: 0;
|
|
723
|
-
list-style-type:
|
|
673
|
+
list-style-type:circle;
|
|
724
674
|
list-style-position: outside;
|
|
725
675
|
}
|
|
726
|
-
|
|
727
|
-
.notiq-root .PlaygroundEditorTheme__ul3 {
|
|
676
|
+
.PlaygroundEditorTheme__ul3 {
|
|
728
677
|
padding: 0;
|
|
729
678
|
margin: 0;
|
|
730
|
-
list-style-type:
|
|
679
|
+
list-style-type:square;
|
|
731
680
|
list-style-position: outside;
|
|
732
681
|
}
|
|
733
|
-
|
|
734
|
-
.notiq-root .PlaygroundEditorTheme__ul4 {
|
|
682
|
+
.PlaygroundEditorTheme__ul4 {
|
|
735
683
|
padding: 0;
|
|
736
684
|
margin: 0;
|
|
737
|
-
list-style-type:
|
|
685
|
+
list-style-type:circle;
|
|
738
686
|
list-style-position: outside;
|
|
739
687
|
}
|
|
740
|
-
|
|
741
|
-
.notiq-root .PlaygroundEditorTheme__ul5 {
|
|
688
|
+
.PlaygroundEditorTheme__ul5 {
|
|
742
689
|
padding: 0;
|
|
743
690
|
margin: 0;
|
|
744
|
-
list-style-type:
|
|
691
|
+
list-style-type:disc;
|
|
745
692
|
list-style-position: outside;
|
|
746
693
|
}
|
|
747
694
|
|
|
748
|
-
|
|
695
|
+
|
|
696
|
+
.PlaygroundEditorTheme__nestedListItem {
|
|
749
697
|
list-style-type: none;
|
|
750
698
|
}
|
|
751
|
-
|
|
752
|
-
.
|
|
753
|
-
.notiq-root .PlaygroundEditorTheme__nestedListItem:after {
|
|
699
|
+
.PlaygroundEditorTheme__nestedListItem:before,
|
|
700
|
+
.PlaygroundEditorTheme__nestedListItem:after {
|
|
754
701
|
display: none;
|
|
755
702
|
}
|
|
756
703
|
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
704
|
+
|
|
705
|
+
/* File: C:\Users\HP\notiq\src\components\editor\utils\setNodePlaceholderFromSelection\styles.css */
|
|
706
|
+
.node-placeholder:has(br):not(:has(span))::before {
|
|
707
|
+
position: absolute;
|
|
708
|
+
content: attr(data-placeholder);
|
|
709
|
+
color: rgba(136, 136, 136, 0.6);
|
|
710
|
+
|
|
761
711
|
}
|
|
762
712
|
|
|
763
|
-
|
|
713
|
+
|
|
714
|
+
/* File: C:\Users\HP\notiq\src\components\ui\ContentEditable.css */
|
|
715
|
+
/**
|
|
716
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
717
|
+
*
|
|
718
|
+
* This source code is licensed under the MIT license found in the
|
|
719
|
+
* LICENSE file in the root directory of this source tree.
|
|
720
|
+
*
|
|
721
|
+
*
|
|
722
|
+
*/
|
|
723
|
+
.ContentEditable__root {
|
|
764
724
|
border: 0;
|
|
765
725
|
font-size: 15px;
|
|
766
726
|
display: block;
|
|
@@ -769,15 +729,14 @@
|
|
|
769
729
|
padding: 8px 46px 40px;
|
|
770
730
|
min-height: 150px;
|
|
771
731
|
}
|
|
772
|
-
|
|
773
732
|
@media (max-width: 1025px) {
|
|
774
|
-
.
|
|
733
|
+
.ContentEditable__root {
|
|
775
734
|
padding-left: 8px;
|
|
776
735
|
padding-right: 8px;
|
|
777
736
|
}
|
|
778
737
|
}
|
|
779
738
|
|
|
780
|
-
.
|
|
739
|
+
.ContentEditable__placeholder {
|
|
781
740
|
font-size: 15px;
|
|
782
741
|
color: #999;
|
|
783
742
|
overflow: hidden;
|
|
@@ -791,28 +750,36 @@
|
|
|
791
750
|
display: inline-block;
|
|
792
751
|
pointer-events: none;
|
|
793
752
|
}
|
|
794
|
-
|
|
795
753
|
@media (max-width: 1025px) {
|
|
796
|
-
.
|
|
754
|
+
.ContentEditable__placeholder {
|
|
797
755
|
left: 8px;
|
|
798
756
|
right: 8px;
|
|
799
757
|
}
|
|
800
758
|
}
|
|
801
759
|
|
|
802
|
-
|
|
760
|
+
|
|
761
|
+
/* File: C:\Users\HP\notiq\src\components\ui\Input.css */
|
|
762
|
+
/**
|
|
763
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
764
|
+
*
|
|
765
|
+
* This source code is licensed under the MIT license found in the
|
|
766
|
+
* LICENSE file in the root directory of this source tree.
|
|
767
|
+
*
|
|
768
|
+
*
|
|
769
|
+
*/
|
|
770
|
+
|
|
771
|
+
.Input__wrapper {
|
|
803
772
|
display: flex;
|
|
804
773
|
flex-direction: row;
|
|
805
774
|
align-items: center;
|
|
806
775
|
margin-bottom: 10px;
|
|
807
776
|
}
|
|
808
|
-
|
|
809
|
-
.notiq-root .Input__label {
|
|
777
|
+
.Input__label {
|
|
810
778
|
display: flex;
|
|
811
779
|
flex: 1;
|
|
812
780
|
color: #666;
|
|
813
781
|
}
|
|
814
|
-
|
|
815
|
-
.notiq-root .Input__input {
|
|
782
|
+
.Input__input {
|
|
816
783
|
display: flex;
|
|
817
784
|
flex: 2;
|
|
818
785
|
border: 1px solid #999;
|
|
@@ -825,7 +792,18 @@
|
|
|
825
792
|
min-width: 0;
|
|
826
793
|
}
|
|
827
794
|
|
|
828
|
-
|
|
795
|
+
|
|
796
|
+
/* File: C:\Users\HP\notiq\src\components\ui\Modal.css */
|
|
797
|
+
/**
|
|
798
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
799
|
+
*
|
|
800
|
+
* This source code is licensed under the MIT license found in the
|
|
801
|
+
* LICENSE file in the root directory of this source tree.
|
|
802
|
+
*
|
|
803
|
+
*
|
|
804
|
+
*/
|
|
805
|
+
|
|
806
|
+
.Modal__overlay {
|
|
829
807
|
display: flex;
|
|
830
808
|
justify-content: center;
|
|
831
809
|
align-items: center;
|
|
@@ -840,8 +818,7 @@
|
|
|
840
818
|
flex-shrink: 1px;
|
|
841
819
|
z-index: 100;
|
|
842
820
|
}
|
|
843
|
-
|
|
844
|
-
.notiq-root .Modal__modal {
|
|
821
|
+
.Modal__modal {
|
|
845
822
|
padding: 20px;
|
|
846
823
|
min-height: 100px;
|
|
847
824
|
min-width: 300px;
|
|
@@ -853,15 +830,13 @@
|
|
|
853
830
|
box-shadow: 0 0 20px 0 #444;
|
|
854
831
|
border-radius: 10px;
|
|
855
832
|
}
|
|
856
|
-
|
|
857
|
-
.notiq-root .Modal__title {
|
|
833
|
+
.Modal__title {
|
|
858
834
|
color: #444;
|
|
859
835
|
margin: 0px;
|
|
860
836
|
padding-bottom: 10px;
|
|
861
837
|
border-bottom: 1px solid #ccc;
|
|
862
838
|
}
|
|
863
|
-
|
|
864
|
-
.notiq-root .Modal__closeButton {
|
|
839
|
+
.Modal__closeButton {
|
|
865
840
|
border: 0px;
|
|
866
841
|
position: absolute;
|
|
867
842
|
right: 20px;
|
|
@@ -875,16 +850,24 @@
|
|
|
875
850
|
cursor: pointer;
|
|
876
851
|
background-color: #eee;
|
|
877
852
|
}
|
|
878
|
-
|
|
879
|
-
.notiq-root .Modal__closeButton:hover {
|
|
853
|
+
.Modal__closeButton:hover {
|
|
880
854
|
background-color: #ddd;
|
|
881
855
|
}
|
|
882
|
-
|
|
883
|
-
.notiq-root .Modal__content {
|
|
856
|
+
.Modal__content {
|
|
884
857
|
padding-top: 20px;
|
|
885
858
|
}
|
|
886
859
|
|
|
887
|
-
|
|
860
|
+
|
|
861
|
+
/* File: C:\Users\HP\notiq\src\components\ui\Select.css */
|
|
862
|
+
/**
|
|
863
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
864
|
+
*
|
|
865
|
+
* This source code is licensed under the MIT license found in the
|
|
866
|
+
* LICENSE file in the root directory of this source tree.
|
|
867
|
+
*
|
|
868
|
+
*/
|
|
869
|
+
|
|
870
|
+
select {
|
|
888
871
|
appearance: none;
|
|
889
872
|
-webkit-appearance: none;
|
|
890
873
|
-moz-appearance: none;
|
|
@@ -896,11 +879,18 @@
|
|
|
896
879
|
font-size: inherit;
|
|
897
880
|
cursor: inherit;
|
|
898
881
|
line-height: inherit;
|
|
882
|
+
|
|
899
883
|
z-index: 1;
|
|
900
884
|
outline: none;
|
|
901
885
|
}
|
|
902
886
|
|
|
903
|
-
|
|
887
|
+
:root {
|
|
888
|
+
--select-border: #393939;
|
|
889
|
+
--select-focus: #101484;
|
|
890
|
+
--select-arrow: var(--select-border);
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.select {
|
|
904
894
|
min-width: 160px;
|
|
905
895
|
max-width: 290px;
|
|
906
896
|
border: 1px solid var(--select-border);
|
|
@@ -912,25 +902,46 @@
|
|
|
912
902
|
background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
|
|
913
903
|
}
|
|
914
904
|
|
|
915
|
-
|
|
905
|
+
|
|
906
|
+
/* File: C:\Users\HP\notiq\src\components\ui\dialog\Dialog.css */
|
|
907
|
+
/**
|
|
908
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
909
|
+
*
|
|
910
|
+
* This source code is licensed under the MIT license found in the
|
|
911
|
+
* LICENSE file in the root directory of this source tree.
|
|
912
|
+
*
|
|
913
|
+
*/
|
|
914
|
+
|
|
915
|
+
.DialogActions {
|
|
916
916
|
display: flex;
|
|
917
917
|
flex-direction: row;
|
|
918
918
|
justify-content: right;
|
|
919
919
|
margin-top: 20px;
|
|
920
920
|
}
|
|
921
921
|
|
|
922
|
-
.
|
|
922
|
+
.DialogButtonsList {
|
|
923
923
|
display: flex;
|
|
924
924
|
flex-direction: column;
|
|
925
925
|
justify-content: right;
|
|
926
926
|
margin-top: 20px;
|
|
927
927
|
}
|
|
928
928
|
|
|
929
|
-
.
|
|
929
|
+
.DialogButtonsList button {
|
|
930
930
|
margin-bottom: 20px;
|
|
931
931
|
}
|
|
932
932
|
|
|
933
|
-
|
|
933
|
+
|
|
934
|
+
/* File: C:\Users\HP\notiq\src\components\ui\equation\EquationEditor.css */
|
|
935
|
+
/**
|
|
936
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
937
|
+
*
|
|
938
|
+
* This source code is licensed under the MIT license found in the
|
|
939
|
+
* LICENSE file in the root directory of this source tree.
|
|
940
|
+
*
|
|
941
|
+
*
|
|
942
|
+
*/
|
|
943
|
+
|
|
944
|
+
.EquationEditor_inlineEditor {
|
|
934
945
|
padding: 0;
|
|
935
946
|
margin: 0;
|
|
936
947
|
border: 0;
|
|
@@ -940,7 +951,7 @@
|
|
|
940
951
|
resize: none;
|
|
941
952
|
}
|
|
942
953
|
|
|
943
|
-
.
|
|
954
|
+
.EquationEditor_blockEditor {
|
|
944
955
|
padding: 0;
|
|
945
956
|
margin: 0;
|
|
946
957
|
border: 0;
|
|
@@ -951,16 +962,27 @@
|
|
|
951
962
|
width: 100%;
|
|
952
963
|
}
|
|
953
964
|
|
|
954
|
-
.
|
|
965
|
+
.EquationEditor_inputBackground {
|
|
955
966
|
background-color: #eee;
|
|
956
967
|
}
|
|
957
968
|
|
|
958
|
-
.
|
|
969
|
+
.EquationEditor_dollarSign {
|
|
959
970
|
text-align: left;
|
|
960
971
|
color: #b0b0b0;
|
|
961
972
|
}
|
|
962
973
|
|
|
963
|
-
|
|
974
|
+
|
|
975
|
+
/* File: C:\Users\HP\notiq\src\components\ui\equation\KatexEquationAlterer.css */
|
|
976
|
+
/**
|
|
977
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
978
|
+
*
|
|
979
|
+
* This source code is licensed under the MIT license found in the
|
|
980
|
+
* LICENSE file in the root directory of this source tree.
|
|
981
|
+
*
|
|
982
|
+
*
|
|
983
|
+
*/
|
|
984
|
+
|
|
985
|
+
.KatexEquationAlterer_defaultRow {
|
|
964
986
|
display: flex;
|
|
965
987
|
flex-direction: row;
|
|
966
988
|
margin-top: 10px;
|
|
@@ -969,7 +991,7 @@
|
|
|
969
991
|
overflow: hidden;
|
|
970
992
|
}
|
|
971
993
|
|
|
972
|
-
.
|
|
994
|
+
.KatexEquationAlterer_dialogActions {
|
|
973
995
|
display: flex;
|
|
974
996
|
flex-direction: row;
|
|
975
997
|
overflow: hidden;
|
|
@@ -978,7 +1000,7 @@
|
|
|
978
1000
|
justify-content: right;
|
|
979
1001
|
}
|
|
980
1002
|
|
|
981
|
-
.
|
|
1003
|
+
.KatexEquationAlterer_centerRow {
|
|
982
1004
|
display: flex;
|
|
983
1005
|
flex-direction: 'row';
|
|
984
1006
|
margin-top: 10px;
|
|
@@ -987,13 +1009,24 @@
|
|
|
987
1009
|
overflow: hidden;
|
|
988
1010
|
}
|
|
989
1011
|
|
|
990
|
-
.
|
|
1012
|
+
.KatexEquationAlterer_textArea {
|
|
991
1013
|
width: 100%;
|
|
992
1014
|
resize: none;
|
|
993
1015
|
padding: 7px;
|
|
994
1016
|
}
|
|
995
1017
|
|
|
996
|
-
|
|
1018
|
+
|
|
1019
|
+
/* File: C:\Users\HP\notiq\src\components\ui\excalidraw\ExcalidrawModal.css */
|
|
1020
|
+
/**
|
|
1021
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
1022
|
+
*
|
|
1023
|
+
* This source code is licensed under the MIT license found in the
|
|
1024
|
+
* LICENSE file in the root directory of this source tree.
|
|
1025
|
+
*
|
|
1026
|
+
*
|
|
1027
|
+
*/
|
|
1028
|
+
|
|
1029
|
+
.ExcalidrawModal__overlay {
|
|
997
1030
|
display: flex;
|
|
998
1031
|
align-items: center;
|
|
999
1032
|
position: fixed;
|
|
@@ -1007,21 +1040,18 @@
|
|
|
1007
1040
|
z-index: 100;
|
|
1008
1041
|
background-color: rgba(40, 40, 40, 0.6);
|
|
1009
1042
|
}
|
|
1010
|
-
|
|
1011
|
-
.notiq-root .ExcalidrawModal__actions {
|
|
1043
|
+
.ExcalidrawModal__actions {
|
|
1012
1044
|
text-align: end;
|
|
1013
1045
|
position: absolute;
|
|
1014
1046
|
right: 5px;
|
|
1015
1047
|
top: 5px;
|
|
1016
1048
|
z-index: 1;
|
|
1017
1049
|
}
|
|
1018
|
-
|
|
1019
|
-
.notiq-root .ExcalidrawModal__actions button {
|
|
1050
|
+
.ExcalidrawModal__actions button {
|
|
1020
1051
|
background-color: #fff;
|
|
1021
1052
|
border-radius: 5px;
|
|
1022
1053
|
}
|
|
1023
|
-
|
|
1024
|
-
.notiq-root .ExcalidrawModal__row {
|
|
1054
|
+
.ExcalidrawModal__row {
|
|
1025
1055
|
position: relative;
|
|
1026
1056
|
padding: 40px 5px 5px;
|
|
1027
1057
|
width: 70vw;
|
|
@@ -1032,12 +1062,10 @@
|
|
|
1032
1062
|
0 2px 4px 0 rgba(0, 0, 0, 0.1),
|
|
1033
1063
|
inset 0 0 0 1px rgba(255, 255, 255, 0.5);
|
|
1034
1064
|
}
|
|
1035
|
-
|
|
1036
|
-
.notiq-root .ExcalidrawModal__row > div {
|
|
1065
|
+
.ExcalidrawModal__row > div {
|
|
1037
1066
|
border-radius: 5px;
|
|
1038
1067
|
}
|
|
1039
|
-
|
|
1040
|
-
.notiq-root .ExcalidrawModal__modal {
|
|
1068
|
+
.ExcalidrawModal__modal {
|
|
1041
1069
|
position: relative;
|
|
1042
1070
|
z-index: 10;
|
|
1043
1071
|
top: 50px;
|
|
@@ -1049,9 +1077,74 @@
|
|
|
1049
1077
|
border-radius: 8px;
|
|
1050
1078
|
background-color: #eee;
|
|
1051
1079
|
}
|
|
1052
|
-
|
|
1053
|
-
.notiq-root .ExcalidrawModal__discardModal {
|
|
1080
|
+
.ExcalidrawModal__discardModal {
|
|
1054
1081
|
margin-top: 60px;
|
|
1055
1082
|
text-align: center;
|
|
1056
1083
|
}
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
/* File: C:\Users\HP\notiq\src\components\ui\excalidraw\Modal.css */
|
|
1087
|
+
/**
|
|
1088
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
1089
|
+
*
|
|
1090
|
+
* This source code is licensed under the MIT license found in the
|
|
1091
|
+
* LICENSE file in the root directory of this source tree.
|
|
1092
|
+
*
|
|
1093
|
+
*
|
|
1094
|
+
*/
|
|
1095
|
+
|
|
1096
|
+
.Modal__overlay {
|
|
1097
|
+
display: flex;
|
|
1098
|
+
justify-content: center;
|
|
1099
|
+
align-items: center;
|
|
1100
|
+
position: fixed;
|
|
1101
|
+
flex-direction: column;
|
|
1102
|
+
top: 0px;
|
|
1103
|
+
bottom: 0px;
|
|
1104
|
+
left: 0px;
|
|
1105
|
+
right: 0px;
|
|
1106
|
+
background-color: rgba(40, 40, 40, 0.6);
|
|
1107
|
+
flex-grow: 0px;
|
|
1108
|
+
flex-shrink: 1px;
|
|
1109
|
+
z-index: 100;
|
|
1110
|
+
}
|
|
1111
|
+
.Modal__modal {
|
|
1112
|
+
padding: 20px;
|
|
1113
|
+
min-height: 100px;
|
|
1114
|
+
min-width: 300px;
|
|
1115
|
+
display: flex;
|
|
1116
|
+
flex-grow: 0px;
|
|
1117
|
+
background-color: #fff;
|
|
1118
|
+
flex-direction: column;
|
|
1119
|
+
position: relative;
|
|
1120
|
+
box-shadow: 0 0 20px 0 #444;
|
|
1121
|
+
border-radius: 10px;
|
|
1122
|
+
}
|
|
1123
|
+
.Modal__title {
|
|
1124
|
+
color: #444;
|
|
1125
|
+
margin: 0px;
|
|
1126
|
+
padding-bottom: 10px;
|
|
1127
|
+
border-bottom: 1px solid #ccc;
|
|
1128
|
+
}
|
|
1129
|
+
.Modal__closeButton {
|
|
1130
|
+
border: 0px;
|
|
1131
|
+
position: absolute;
|
|
1132
|
+
right: 20px;
|
|
1133
|
+
border-radius: 20px;
|
|
1134
|
+
justify-content: center;
|
|
1135
|
+
align-items: center;
|
|
1136
|
+
display: flex;
|
|
1137
|
+
width: 30px;
|
|
1138
|
+
height: 30px;
|
|
1139
|
+
text-align: center;
|
|
1140
|
+
cursor: pointer;
|
|
1141
|
+
background-color: #eee;
|
|
1142
|
+
}
|
|
1143
|
+
.Modal__closeButton:hover {
|
|
1144
|
+
background-color: #ddd;
|
|
1145
|
+
}
|
|
1146
|
+
.Modal__content {
|
|
1147
|
+
padding-top: 20px;
|
|
1057
1148
|
}
|
|
1149
|
+
|
|
1150
|
+
|