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