avo-rhino_field 0.0.15 → 0.0.16.pre1
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.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/app/assets/builds/avo-rhino_field.css +212 -129
- data/app/assets/builds/avo-rhino_field.css.map +1 -1
- data/app/assets/builds/avo-rhino_field.js +1280 -28954
- data/app/assets/builds/avo-rhino_field.js.map +4 -4
- data/lib/avo/rhino_field/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7731ec499d392c6c66db8687557983666c2fa8c977d0cc6e4eed09be4ee00ed
|
4
|
+
data.tar.gz: 6c126eebf8b8c2c7cb328e667960e10ff966185988e8df3ad0becdf3c042732d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 972fb8b60269708a2adeecfcfcdd2f19f3087d1b1b6f955d8c6b21cf30c37142a92d85d7245b8fd07a677d5a5c1534eb50fd8fc796ece059bef0b829d4542dab
|
7
|
+
data.tar.gz: e4195809c7d295a1cdf6b93582e04ea3189e33bbe0b691cfd74c8a27113328a7996660faf59213dcaafabc3f4ce1660cb27661a00149bdb8d7733df7b359236c
|
data/README.md
CHANGED
@@ -4,6 +4,16 @@ A simple Rhino field for [avo-hq/avo](https://github.com/avo-hq/avo), a Rails Ad
|
|
4
4
|
|
5
5
|
Docs available at [https://docs.avohq.io/3.0/fields/rhino.html](https://docs.avohq.io/3.0/fields/rhino.html)
|
6
6
|
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add the gem to your `Gemfile`:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'avo-rhino-field'
|
13
|
+
```
|
14
|
+
|
15
|
+
Run `bundle install`.
|
16
|
+
|
7
17
|
## Usage
|
8
18
|
|
9
19
|
```ruby
|
@@ -63,7 +63,12 @@
|
|
63
63
|
background-color: rgba(255, 0, 0, 0.3);
|
64
64
|
}
|
65
65
|
|
66
|
-
.trix-content:not([readonly])
|
66
|
+
.trix-content:not([readonly]) .attachment--preview:is(:focus-within, :focus, .has-focus) :is(img) {
|
67
|
+
outline: transparent;
|
68
|
+
box-shadow: var(--rhino-focus-ring);
|
69
|
+
}
|
70
|
+
|
71
|
+
.trix-content:not([readonly]) .attachment:not(.attachment--preview):is(:focus-within, :focus, .has-focus) {
|
67
72
|
outline: transparent;
|
68
73
|
box-shadow: var(--rhino-focus-ring);
|
69
74
|
}
|
@@ -82,6 +87,7 @@
|
|
82
87
|
position: absolute;
|
83
88
|
pointer-events: none;
|
84
89
|
color: var(--rhino-placeholder-text-color);
|
90
|
+
color: light-dark(var(--rhino-placeholder-text-color), var(--rhino-dark-placeholder-text-color));
|
85
91
|
cursor: text;
|
86
92
|
content: "";
|
87
93
|
}
|
@@ -93,6 +99,7 @@
|
|
93
99
|
.trix-content p.is-editor-empty:first-child::before,
|
94
100
|
.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {
|
95
101
|
color: var(--rhino-placeholder-text-color);
|
102
|
+
color: light-dark(var(--rhino-placeholder-text-color), var(--rhino-dark-placeholder-text-color));
|
96
103
|
content: attr(data-placeholder);
|
97
104
|
pointer-events: none;
|
98
105
|
}
|
@@ -106,6 +113,10 @@
|
|
106
113
|
list-style: disc;
|
107
114
|
}
|
108
115
|
|
116
|
+
.trix-content ol {
|
117
|
+
list-style-type: decimal;
|
118
|
+
}
|
119
|
+
|
109
120
|
.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {
|
110
121
|
position: absolute;
|
111
122
|
left: 50%;
|
@@ -145,16 +156,30 @@
|
|
145
156
|
margin-inline-start: 1em;
|
146
157
|
}
|
147
158
|
|
148
|
-
.trix-content :
|
149
|
-
|
159
|
+
.trix-content :not(pre) code {
|
160
|
+
background-color: #eee;
|
161
|
+
border-radius: 2px;
|
162
|
+
padding: 2px;
|
163
|
+
margin: 0 1px;
|
164
|
+
border: 1px solid rgba(192, 192, 192, 0.5);
|
165
|
+
display: inline;
|
166
|
+
}
|
167
|
+
|
168
|
+
.trix-content code,
|
169
|
+
.trix-content pre {
|
170
|
+
-webkit-box-decoration-break: clone;
|
171
|
+
box-decoration-break: clone;
|
172
|
+
}
|
173
|
+
|
174
|
+
.trix-content pre {
|
175
|
+
display: block;
|
150
176
|
width: 100%;
|
151
|
-
vertical-align: top;
|
152
177
|
font-family: monospace;
|
153
|
-
font-size: 0.9em;
|
154
178
|
padding: 0.5em;
|
155
179
|
white-space: pre;
|
156
|
-
background-color: #eee;
|
157
180
|
overflow-x: auto;
|
181
|
+
background-color: #eee;
|
182
|
+
font-size: 0.9em;
|
158
183
|
}
|
159
184
|
|
160
185
|
.trix-content img {
|
@@ -168,14 +193,14 @@
|
|
168
193
|
max-width: 100%;
|
169
194
|
}
|
170
195
|
|
171
|
-
.trix-content .attachment a
|
172
|
-
|
173
|
-
|
196
|
+
.trix-content .attachment figcaption a,
|
197
|
+
.trix-content .attachment figcaption a:hover {
|
198
|
+
color: LinkText;
|
174
199
|
}
|
175
200
|
|
176
|
-
.trix-content .attachment a:
|
177
|
-
.trix-content .attachment a:visited
|
178
|
-
color:
|
201
|
+
.trix-content .attachment figcaption a:visited,
|
202
|
+
.trix-content .attachment figcaption a:hover:visited {
|
203
|
+
color: VisitedText;
|
179
204
|
}
|
180
205
|
|
181
206
|
.trix-content .attachment__caption {
|
@@ -264,15 +289,19 @@
|
|
264
289
|
max-width: 100%;
|
265
290
|
}
|
266
291
|
|
292
|
+
:host,
|
267
293
|
.trix-content {
|
268
|
-
--rhino-focus-ring: 0px 0px
|
294
|
+
--rhino-focus-ring: 0px 0px 1px 1px var(--rhino-button-active-border-color);
|
269
295
|
--rhino-border-radius: 4px;
|
270
296
|
--rhino-danger-border-color: red;
|
271
297
|
--rhino-danger-background-color: #ffdddd;
|
272
298
|
--rhino-text-color: #374151;
|
299
|
+
--rhino-dark-text-color: white;
|
273
300
|
--rhino-border-color: #cecece;
|
274
301
|
--rhino-placeholder-text-color: #cecece;
|
302
|
+
--rhino-dark-placeholder-text-color: gray;
|
275
303
|
--rhino-button-text-color: #889;
|
304
|
+
--rhino-button-dark-text-color: #eee;
|
276
305
|
--rhino-button-border-color: #cecece;
|
277
306
|
--rhino-button-disabled-text-color: #d1d5db;
|
278
307
|
--rhino-button-disabled-border-color: #d1d5db;
|
@@ -280,19 +309,66 @@
|
|
280
309
|
--rhino-button-active-border-color: #005a9c;
|
281
310
|
--rhino-button-active-background-color: rgb(226 239 255);
|
282
311
|
--rhino-toolbar-text-color: hsl(219, 6%, 43%);
|
283
|
-
--rhino-toolbar-icon-size:
|
312
|
+
--rhino-toolbar-icon-size: 1em;
|
284
313
|
--rhino-dialog-border-color: hsl( var(--rhino-button-focus-background-color-hsl) / 50% );
|
285
314
|
--rhino-button-focus-background-color: hsl( var(--rhino-button-focus-background-color-hsl) );
|
286
315
|
--rhino-button-focus-background-color-hsl: 219 26% 95%;
|
316
|
+
--rhino-fake-selection-color: rgb(220, 220, 220);
|
287
317
|
display: block;
|
288
318
|
color: var(--rhino-text-color);
|
319
|
+
color: light-dark(var(--rhino-text-color), var(--rhino-dark-text-color));
|
320
|
+
}
|
321
|
+
|
322
|
+
@keyframes rhino-blink {
|
323
|
+
49% {
|
324
|
+
border-color: unset;
|
325
|
+
}
|
326
|
+
|
327
|
+
50% {
|
328
|
+
border-color: Canvas;
|
329
|
+
}
|
330
|
+
|
331
|
+
99% {
|
332
|
+
border-color: Canvas;
|
333
|
+
}
|
334
|
+
}
|
335
|
+
|
336
|
+
.rhino-editor .no-cursor {
|
337
|
+
caret-color: transparent;
|
338
|
+
}
|
339
|
+
|
340
|
+
:where(.rhino-editor) .fake-cursor {
|
341
|
+
margin: 0;
|
342
|
+
padding: 0;
|
343
|
+
margin-right: -1px;
|
344
|
+
border-left-width: 1px;
|
345
|
+
border-left-style: solid;
|
346
|
+
animation: rhino-blink 1s;
|
347
|
+
animation-iteration-count: infinite;
|
348
|
+
position: relative;
|
349
|
+
z-index: 1;
|
350
|
+
}
|
351
|
+
|
352
|
+
:where(.rhino-editor .ProseMirror):not(:focus-within) .rhino-selection {
|
353
|
+
background: var(--rhino-fake-selection-color);
|
354
|
+
}
|
355
|
+
|
356
|
+
.ProseMirror-separator {
|
357
|
+
display: none !important;
|
289
358
|
}
|
290
359
|
|
291
360
|
.rhino-toolbar-button {
|
361
|
+
-moz-appearance: none;
|
362
|
+
appearance: none;
|
363
|
+
-webkit-appearance: none;
|
292
364
|
border: 1px solid var(--rhino-border-color);
|
293
365
|
border-radius: var(--rhino-border-radius);
|
294
|
-
padding: 0.
|
295
|
-
color:
|
366
|
+
padding: 0.4em;
|
367
|
+
color: var(--rhino-button-text-color);
|
368
|
+
color: light-dark(var(--rhino-button-text-color), var(--rhino-button-dark-text-color));
|
369
|
+
background: Canvas;
|
370
|
+
font-size: inherit;
|
371
|
+
display: inline-grid;
|
296
372
|
}
|
297
373
|
|
298
374
|
.rhino-toolbar-button:is([aria-disabled=true], :disabled) {
|
@@ -313,27 +389,142 @@
|
|
313
389
|
|
314
390
|
.rhino-toolbar-button:is(:focus, :hover):not([aria-disabled=true], :disabled) {
|
315
391
|
outline: transparent;
|
316
|
-
box-shadow: var(--rhino-focus-ring);
|
317
392
|
border-color: var(--rhino-button-active-border-color);
|
318
393
|
}
|
319
394
|
|
320
|
-
.rhino-toolbar-button:is(:focus
|
395
|
+
.rhino-toolbar-button:is(:focus):not([aria-disabled=true], :disabled) {
|
396
|
+
box-shadow: var(--rhino-focus-ring);
|
397
|
+
}
|
398
|
+
|
399
|
+
.rhino-toolbar-button:is(:hover):not([aria-disabled=true], :disabled, [aria-pressed=true], [part~=toolbar__button--active]) {
|
321
400
|
background-color: var(--rhino-button-focus-background-color);
|
401
|
+
background-color: light-dark(var(--rhino-button-focus-background-color), gray);
|
322
402
|
}
|
323
403
|
|
324
404
|
.rhino-toolbar-button:is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {
|
325
405
|
color: var(--rhino-button-disabled-text-color);
|
406
|
+
color: light-dark(var(--rhino-button-disabled-text-color), gray);
|
326
407
|
border-color: var(--rhino-button-disabled-border-color);
|
327
408
|
}
|
328
409
|
|
329
410
|
.rhino-toolbar-button:is(:focus, :hover):is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {
|
330
411
|
outline: transparent;
|
331
412
|
color: var(--rhino-button-disabled-text-color);
|
413
|
+
color: light-dark(var(--rhino-button-disabled-text-color), gray);
|
332
414
|
border-color: var(--rhino-button-disabled-border-color);
|
333
415
|
box-shadow: 0 0 0 1px var(--rhino-button-disabled-border-color);
|
416
|
+
box-shadow: 0 0 0 1px light-dark(var(--rhino-button-disabled-border-color), transparent);
|
334
417
|
}
|
335
418
|
|
336
|
-
|
419
|
+
*, ::before, ::after {
|
420
|
+
--tw-border-spacing-x: 0;
|
421
|
+
--tw-border-spacing-y: 0;
|
422
|
+
--tw-translate-x: 0;
|
423
|
+
--tw-translate-y: 0;
|
424
|
+
--tw-rotate: 0;
|
425
|
+
--tw-skew-x: 0;
|
426
|
+
--tw-skew-y: 0;
|
427
|
+
--tw-scale-x: 1;
|
428
|
+
--tw-scale-y: 1;
|
429
|
+
--tw-pan-x: ;
|
430
|
+
--tw-pan-y: ;
|
431
|
+
--tw-pinch-zoom: ;
|
432
|
+
--tw-scroll-snap-strictness: proximity;
|
433
|
+
--tw-gradient-from-position: ;
|
434
|
+
--tw-gradient-via-position: ;
|
435
|
+
--tw-gradient-to-position: ;
|
436
|
+
--tw-ordinal: ;
|
437
|
+
--tw-slashed-zero: ;
|
438
|
+
--tw-numeric-figure: ;
|
439
|
+
--tw-numeric-spacing: ;
|
440
|
+
--tw-numeric-fraction: ;
|
441
|
+
--tw-ring-inset: ;
|
442
|
+
--tw-ring-offset-width: 0px;
|
443
|
+
--tw-ring-offset-color: #fff;
|
444
|
+
--tw-ring-color: rgb(8 134 222 / 0.5);
|
445
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
446
|
+
--tw-ring-shadow: 0 0 #0000;
|
447
|
+
--tw-shadow: 0 0 #0000;
|
448
|
+
--tw-shadow-colored: 0 0 #0000;
|
449
|
+
--tw-blur: ;
|
450
|
+
--tw-brightness: ;
|
451
|
+
--tw-contrast: ;
|
452
|
+
--tw-grayscale: ;
|
453
|
+
--tw-hue-rotate: ;
|
454
|
+
--tw-invert: ;
|
455
|
+
--tw-saturate: ;
|
456
|
+
--tw-sepia: ;
|
457
|
+
--tw-drop-shadow: ;
|
458
|
+
--tw-backdrop-blur: ;
|
459
|
+
--tw-backdrop-brightness: ;
|
460
|
+
--tw-backdrop-contrast: ;
|
461
|
+
--tw-backdrop-grayscale: ;
|
462
|
+
--tw-backdrop-hue-rotate: ;
|
463
|
+
--tw-backdrop-invert: ;
|
464
|
+
--tw-backdrop-opacity: ;
|
465
|
+
--tw-backdrop-saturate: ;
|
466
|
+
--tw-backdrop-sepia: ;
|
467
|
+
--tw-contain-size: ;
|
468
|
+
--tw-contain-layout: ;
|
469
|
+
--tw-contain-paint: ;
|
470
|
+
--tw-contain-style: ;
|
471
|
+
}
|
472
|
+
|
473
|
+
::backdrop {
|
474
|
+
--tw-border-spacing-x: 0;
|
475
|
+
--tw-border-spacing-y: 0;
|
476
|
+
--tw-translate-x: 0;
|
477
|
+
--tw-translate-y: 0;
|
478
|
+
--tw-rotate: 0;
|
479
|
+
--tw-skew-x: 0;
|
480
|
+
--tw-skew-y: 0;
|
481
|
+
--tw-scale-x: 1;
|
482
|
+
--tw-scale-y: 1;
|
483
|
+
--tw-pan-x: ;
|
484
|
+
--tw-pan-y: ;
|
485
|
+
--tw-pinch-zoom: ;
|
486
|
+
--tw-scroll-snap-strictness: proximity;
|
487
|
+
--tw-gradient-from-position: ;
|
488
|
+
--tw-gradient-via-position: ;
|
489
|
+
--tw-gradient-to-position: ;
|
490
|
+
--tw-ordinal: ;
|
491
|
+
--tw-slashed-zero: ;
|
492
|
+
--tw-numeric-figure: ;
|
493
|
+
--tw-numeric-spacing: ;
|
494
|
+
--tw-numeric-fraction: ;
|
495
|
+
--tw-ring-inset: ;
|
496
|
+
--tw-ring-offset-width: 0px;
|
497
|
+
--tw-ring-offset-color: #fff;
|
498
|
+
--tw-ring-color: rgb(8 134 222 / 0.5);
|
499
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
500
|
+
--tw-ring-shadow: 0 0 #0000;
|
501
|
+
--tw-shadow: 0 0 #0000;
|
502
|
+
--tw-shadow-colored: 0 0 #0000;
|
503
|
+
--tw-blur: ;
|
504
|
+
--tw-brightness: ;
|
505
|
+
--tw-contrast: ;
|
506
|
+
--tw-grayscale: ;
|
507
|
+
--tw-hue-rotate: ;
|
508
|
+
--tw-invert: ;
|
509
|
+
--tw-saturate: ;
|
510
|
+
--tw-sepia: ;
|
511
|
+
--tw-drop-shadow: ;
|
512
|
+
--tw-backdrop-blur: ;
|
513
|
+
--tw-backdrop-brightness: ;
|
514
|
+
--tw-backdrop-contrast: ;
|
515
|
+
--tw-backdrop-grayscale: ;
|
516
|
+
--tw-backdrop-hue-rotate: ;
|
517
|
+
--tw-backdrop-invert: ;
|
518
|
+
--tw-backdrop-opacity: ;
|
519
|
+
--tw-backdrop-saturate: ;
|
520
|
+
--tw-backdrop-sepia: ;
|
521
|
+
--tw-contain-size: ;
|
522
|
+
--tw-contain-layout: ;
|
523
|
+
--tw-contain-paint: ;
|
524
|
+
--tw-contain-style: ;
|
525
|
+
}
|
526
|
+
|
527
|
+
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
|
337
528
|
|
338
529
|
/*
|
339
530
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
@@ -775,118 +966,10 @@ video {
|
|
775
966
|
|
776
967
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
777
968
|
|
778
|
-
[hidden] {
|
969
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
779
970
|
display: none;
|
780
971
|
}
|
781
972
|
|
782
|
-
*, ::before, ::after {
|
783
|
-
--tw-border-spacing-x: 0;
|
784
|
-
--tw-border-spacing-y: 0;
|
785
|
-
--tw-translate-x: 0;
|
786
|
-
--tw-translate-y: 0;
|
787
|
-
--tw-rotate: 0;
|
788
|
-
--tw-skew-x: 0;
|
789
|
-
--tw-skew-y: 0;
|
790
|
-
--tw-scale-x: 1;
|
791
|
-
--tw-scale-y: 1;
|
792
|
-
--tw-pan-x: ;
|
793
|
-
--tw-pan-y: ;
|
794
|
-
--tw-pinch-zoom: ;
|
795
|
-
--tw-scroll-snap-strictness: proximity;
|
796
|
-
--tw-gradient-from-position: ;
|
797
|
-
--tw-gradient-via-position: ;
|
798
|
-
--tw-gradient-to-position: ;
|
799
|
-
--tw-ordinal: ;
|
800
|
-
--tw-slashed-zero: ;
|
801
|
-
--tw-numeric-figure: ;
|
802
|
-
--tw-numeric-spacing: ;
|
803
|
-
--tw-numeric-fraction: ;
|
804
|
-
--tw-ring-inset: ;
|
805
|
-
--tw-ring-offset-width: 0px;
|
806
|
-
--tw-ring-offset-color: #fff;
|
807
|
-
--tw-ring-color: rgb(8 134 222 / 0.5);
|
808
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
809
|
-
--tw-ring-shadow: 0 0 #0000;
|
810
|
-
--tw-shadow: 0 0 #0000;
|
811
|
-
--tw-shadow-colored: 0 0 #0000;
|
812
|
-
--tw-blur: ;
|
813
|
-
--tw-brightness: ;
|
814
|
-
--tw-contrast: ;
|
815
|
-
--tw-grayscale: ;
|
816
|
-
--tw-hue-rotate: ;
|
817
|
-
--tw-invert: ;
|
818
|
-
--tw-saturate: ;
|
819
|
-
--tw-sepia: ;
|
820
|
-
--tw-drop-shadow: ;
|
821
|
-
--tw-backdrop-blur: ;
|
822
|
-
--tw-backdrop-brightness: ;
|
823
|
-
--tw-backdrop-contrast: ;
|
824
|
-
--tw-backdrop-grayscale: ;
|
825
|
-
--tw-backdrop-hue-rotate: ;
|
826
|
-
--tw-backdrop-invert: ;
|
827
|
-
--tw-backdrop-opacity: ;
|
828
|
-
--tw-backdrop-saturate: ;
|
829
|
-
--tw-backdrop-sepia: ;
|
830
|
-
--tw-contain-size: ;
|
831
|
-
--tw-contain-layout: ;
|
832
|
-
--tw-contain-paint: ;
|
833
|
-
--tw-contain-style: ;
|
834
|
-
}
|
835
|
-
|
836
|
-
::backdrop {
|
837
|
-
--tw-border-spacing-x: 0;
|
838
|
-
--tw-border-spacing-y: 0;
|
839
|
-
--tw-translate-x: 0;
|
840
|
-
--tw-translate-y: 0;
|
841
|
-
--tw-rotate: 0;
|
842
|
-
--tw-skew-x: 0;
|
843
|
-
--tw-skew-y: 0;
|
844
|
-
--tw-scale-x: 1;
|
845
|
-
--tw-scale-y: 1;
|
846
|
-
--tw-pan-x: ;
|
847
|
-
--tw-pan-y: ;
|
848
|
-
--tw-pinch-zoom: ;
|
849
|
-
--tw-scroll-snap-strictness: proximity;
|
850
|
-
--tw-gradient-from-position: ;
|
851
|
-
--tw-gradient-via-position: ;
|
852
|
-
--tw-gradient-to-position: ;
|
853
|
-
--tw-ordinal: ;
|
854
|
-
--tw-slashed-zero: ;
|
855
|
-
--tw-numeric-figure: ;
|
856
|
-
--tw-numeric-spacing: ;
|
857
|
-
--tw-numeric-fraction: ;
|
858
|
-
--tw-ring-inset: ;
|
859
|
-
--tw-ring-offset-width: 0px;
|
860
|
-
--tw-ring-offset-color: #fff;
|
861
|
-
--tw-ring-color: rgb(8 134 222 / 0.5);
|
862
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
863
|
-
--tw-ring-shadow: 0 0 #0000;
|
864
|
-
--tw-shadow: 0 0 #0000;
|
865
|
-
--tw-shadow-colored: 0 0 #0000;
|
866
|
-
--tw-blur: ;
|
867
|
-
--tw-brightness: ;
|
868
|
-
--tw-contrast: ;
|
869
|
-
--tw-grayscale: ;
|
870
|
-
--tw-hue-rotate: ;
|
871
|
-
--tw-invert: ;
|
872
|
-
--tw-saturate: ;
|
873
|
-
--tw-sepia: ;
|
874
|
-
--tw-drop-shadow: ;
|
875
|
-
--tw-backdrop-blur: ;
|
876
|
-
--tw-backdrop-brightness: ;
|
877
|
-
--tw-backdrop-contrast: ;
|
878
|
-
--tw-backdrop-grayscale: ;
|
879
|
-
--tw-backdrop-hue-rotate: ;
|
880
|
-
--tw-backdrop-invert: ;
|
881
|
-
--tw-backdrop-opacity: ;
|
882
|
-
--tw-backdrop-saturate: ;
|
883
|
-
--tw-backdrop-sepia: ;
|
884
|
-
--tw-contain-size: ;
|
885
|
-
--tw-contain-layout: ;
|
886
|
-
--tw-contain-paint: ;
|
887
|
-
--tw-contain-style: ;
|
888
|
-
}
|
889
|
-
|
890
973
|
.static {
|
891
974
|
position: static;
|
892
975
|
}
|
@@ -1001,7 +1084,7 @@ video {
|
|
1001
1084
|
|
1002
1085
|
.rhino-editor .rhino-toolbar-button:hover, .rhino-editor::part(toolbar__button):hover {
|
1003
1086
|
--tw-bg-opacity: 1;
|
1004
|
-
background-color: rgb(227 229 232 / var(--tw-bg-opacity));
|
1087
|
+
background-color: rgb(227 229 232 / var(--tw-bg-opacity, 1));
|
1005
1088
|
}
|
1006
1089
|
|
1007
1090
|
.rhino-editor .rhino-toolbar-button:hover, .rhino-editor::part(toolbar__button):hover {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../../node_modules/rhino-editor/exports/styles/trix.css","../../../node_modules/rhino-editor/src/exports/styles/trix.css","../stylesheets/avo-rhino_field.css"],"names":[],"mappings":"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","file":"avo-rhino_field.css","sourcesContent":["/* src/exports/styles/trix.css */\n.trix-content {\n border: 1px solid var(--rhino-border-color);\n border-radius: 0px 0px var(--rhino-border-radius) var(--rhino-border-radius);\n margin: 0;\n padding: 0.4em 0.6em;\n min-height: 200px;\n outline: transparent;\n overflow-wrap: break-word;\n word-break: break-word;\n}\n.trix-content[contenteditable=true] {\n white-space: pre-wrap;\n}\n.trix-content:is(:focus, :focus-within) {\n border-color: var(--rhino-button-active-border-color);\n}\n.trix-content :is(img, svg, figure) {\n width: 100%;\n max-width: 100%;\n height: auto;\n display: block;\n}\n.trix-content :is(figure, p) {\n padding: 0;\n margin: 0;\n}\n.trix-content figure {\n position: relative;\n}\n.trix-content figcaption {\n line-break: anywhere;\n display: inline-block;\n white-space: normal;\n width: 100%;\n margin: 0;\n padding: 0;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n text-align: center;\n vertical-align: top;\n border: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n.trix-content[contenteditable=true] figcaption {\n white-space: break-spaces;\n}\n.trix-content .rhino-upload-error {\n background-color: rgba(255, 0, 0, 0.3);\n}\n.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) :nth-child(2) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n}\n.rhino-attachment-editor::part(delete-button),\n.rhino-attachment-editor::part(file-metadata) {\n display: none;\n}\n.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) .rhino-attachment-editor::part(delete-button),\n.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) .rhino-attachment-editor::part(file-metadata) {\n display: flex;\n}\n.trix-content .placeholder {\n position: absolute;\n pointer-events: none;\n color: var(--rhino-placeholder-text-color);\n cursor: text;\n content: \"\";\n}\n.trix-content figure.attachment figcaption {\n position: relative;\n}\n.trix-content p.is-editor-empty:first-child::before,\n.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {\n color: var(--rhino-placeholder-text-color);\n content: attr(data-placeholder);\n pointer-events: none;\n}\n.trix-content figure[data-trix-attachment]:not(.has-focus) figcaption.is-empty::before {\n content: attr(data-default-caption);\n pointer-events: none;\n}\n.trix-content ul {\n list-style: disc;\n}\n.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {\n position: absolute;\n left: 50%;\n top: 0;\n transform: translate(-50%, 0%);\n}\n.trix-content p.is-editor-empty:first-child::before {\n float: left;\n height: 0;\n pointer-events: none;\n}\n.trix-content {\n box-sizing: border-box;\n}\n.trix-content * {\n box-sizing: inherit;\n margin: 0;\n padding: 0;\n}\n.trix-content h1 {\n font-size: 1.2em;\n line-height: 1.2;\n}\n.trix-content blockquote {\n border: 0 solid #ccc;\n border-inline-start-width: 0.3em;\n margin-inline-start: 0.3em;\n padding-inline-start: 0.6em;\n}\n.trix-content li {\n margin-inline-start: 1em;\n}\n.trix-content :where(pre) {\n display: inline-block;\n width: 100%;\n vertical-align: top;\n font-family: monospace;\n font-size: 0.9em;\n padding: 0.5em;\n white-space: pre;\n background-color: #eee;\n overflow-x: auto;\n}\n.trix-content img {\n max-width: 100%;\n height: auto;\n}\n.trix-content .attachment {\n display: block;\n position: relative;\n max-width: 100%;\n}\n.trix-content .attachment a {\n color: inherit;\n text-decoration: none;\n}\n.trix-content .attachment a:hover,\n.trix-content .attachment a:visited:hover {\n color: inherit;\n}\n.trix-content .attachment__caption {\n text-align: center;\n margin-top: 0.5em;\n}\n.trix-content .attachment__caption .attachment__name + .attachment__size::before {\n content: \" \\b7 \";\n}\n.trix-content .attachment--preview {\n width: 100%;\n text-align: center;\n margin: 0.6em 0;\n}\n.trix-content .attachment--preview .attachment__caption {\n color: #666;\n font-size: 0.9em;\n line-height: 1.2;\n}\n.trix-content .attachment.attachment--file {\n color: #333;\n line-height: 1;\n margin: 0 2px 2px 2px;\n padding: 0.4em 1em;\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n}\n.trix-content .attachment-gallery {\n display: flex;\n flex-wrap: wrap;\n position: relative;\n}\n.trix-content figure.attachment {\n display: inline-block;\n position: relative;\n white-space: normal;\n}\n.trix-content .attachment-gallery > p {\n width: 0px;\n padding: 0;\n flex-basis: 0%;\n max-width: 0%;\n flex-shrink: 1;\n flex-grow: 0;\n}\n.trix-content .attachment-gallery .attachment {\n flex: 1 0 100%;\n padding: 0 0.5em;\n max-width: 100%;\n white-space: normal;\n}\n.trix-content .attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]) {\n flex: 1 0 33%;\n padding: 0 0.5em;\n max-width: 33%;\n white-space: normal;\n}\n.trix-content .attachment-gallery > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) ~ :is(.attachment, action-text-attachment),\n.trix-content .attachment-gallery > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) {\n padding: 0;\n flex-basis: 100%;\n max-width: 100%;\n}\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(2),\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(2) ~ :is(.attachment--preview, action-text-attachment[previewable=true]),\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(4),\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(4) ~ :is(.attachment--preview, action-text-attachment[previewable=true]) {\n flex-basis: 50%;\n max-width: 50%;\n}\n.trix-content .attachment-gallery.attachment-gallery--2 action-text-attachment > .attachment,\n.trix-content .attachment-gallery.attachment-gallery--4 action-text-attachment > .attachment,\n.trix-content .attachment-gallery action-text-attachment > .attachment {\n max-width: 100%;\n}\n.trix-content {\n --rhino-focus-ring: 0px 0px 4px 1px var(--rhino-button-active-border-color);\n --rhino-border-radius: 4px;\n --rhino-danger-border-color: red;\n --rhino-danger-background-color: #ffdddd;\n --rhino-text-color: #374151;\n --rhino-border-color: #cecece;\n --rhino-placeholder-text-color: #cecece;\n --rhino-button-text-color: #889;\n --rhino-button-border-color: #cecece;\n --rhino-button-disabled-text-color: #d1d5db;\n --rhino-button-disabled-border-color: #d1d5db;\n --rhino-button-disabled-background-color: #d1d5db;\n --rhino-button-active-border-color: #005a9c;\n --rhino-button-active-background-color: rgb(226 239 255);\n --rhino-toolbar-text-color: hsl(219, 6%, 43%);\n --rhino-toolbar-icon-size: 24px;\n --rhino-dialog-border-color: hsl( var(--rhino-button-focus-background-color-hsl) / 50% );\n --rhino-button-focus-background-color: hsl( var(--rhino-button-focus-background-color-hsl) );\n --rhino-button-focus-background-color-hsl: 219 26% 95%;\n display: block;\n color: var(--rhino-text-color);\n}\n.rhino-toolbar-button {\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n padding: 0.2em 0.4em;\n color: inherit;\n}\n.rhino-toolbar-button:is([aria-disabled=true], :disabled) {\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n}\n.rhino-toolbar-button[aria-disabled=true]:focus {\n border-color: var(--rhino-button-disabled-border-color);\n}\n.rhino-toolbar-button svg {\n min-height: var(--rhino-toolbar-icon-size);\n min-width: var(--rhino-toolbar-icon-size);\n max-height: var(--rhino-toolbar-icon-size);\n max-width: var(--rhino-toolbar-icon-size);\n}\n.rhino-toolbar-button:is(:focus, :hover):not([aria-disabled=true], :disabled) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n border-color: var(--rhino-button-active-border-color);\n}\n.rhino-toolbar-button:is(:focus, :hover):not([aria-disabled=true], :disabled, [aria-pressed=true], [part~=toolbar__button--active]) {\n background-color: var(--rhino-button-focus-background-color);\n}\n.rhino-toolbar-button:is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n}\n.rhino-toolbar-button:is(:focus, :hover):is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {\n outline: transparent;\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n box-shadow: 0 0 0 1px var(--rhino-button-disabled-border-color);\n}\n/*# sourceMappingURL=trix.css.map */\n","/* THIS FILE IS AUTO-GENERATED. DO NOT EDIT BY HAND! */\n/* These all come from Trix / ActionText. This should probably be cleaned up into\n a regular .css for users to include.\n*/\n\n.trix-content {\n border: 1px solid var(--rhino-border-color);\n border-radius: 0px 0px var(--rhino-border-radius) var(--rhino-border-radius);\n margin: 0;\n padding: 0.4em 0.6em;\n min-height: 200px;\n outline: transparent;\n overflow-wrap: break-word;\n word-break: break-word;\n}\n\n.trix-content[contenteditable=\"true\"] {\n /* Required by Prosemirror / TipTap */\n white-space: pre-wrap;\n}\n\n.trix-content:is(:focus, :focus-within) {\n border-color: var(--rhino-button-active-border-color);\n}\n\n.trix-content :is(img, svg, figure) {\n width: 100%;\n max-width: 100%;\n height: auto;\n display: block;\n}\n\n.trix-content :is(figure, p) {\n padding: 0;\n margin: 0;\n}\n\n.trix-content figure {\n position: relative;\n}\n\n.trix-content figcaption {\n line-break: anywhere;\n display: inline-block;\n white-space: normal;\n width: 100%;\n margin: 0;\n padding: 0;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n text-align: center;\n vertical-align: top;\n border: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n\n/* If you use white-space: normal; in firefox you cant add blank space to the figcaption */\n.trix-content[contenteditable=\"true\"] figcaption {\n white-space: break-spaces;\n}\n\n.trix-content .rhino-upload-error {\n background-color: rgba(255, 0, 0, 0.3);\n}\n\n/* Attachments */\n.trix-content:not([readonly])\n figure:is(:focus-within, :focus, .has-focus)\n :nth-child(2) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n}\n\n.rhino-attachment-editor::part(delete-button),\n.rhino-attachment-editor::part(file-metadata) {\n display: none;\n}\n\n.trix-content:not([readonly])\n figure:is(:focus-within, :focus, .has-focus)\n .rhino-attachment-editor::part(delete-button),\n.trix-content:not([readonly])\n figure:is(:focus-within, :focus, .has-focus)\n .rhino-attachment-editor::part(file-metadata) {\n display: flex;\n}\n\n.trix-content .placeholder {\n position: absolute;\n pointer-events: none;\n color: var(--rhino-placeholder-text-color);\n cursor: text;\n content: \"\";\n}\n.trix-content figure.attachment figcaption {\n position: relative;\n}\n\n.trix-content p.is-editor-empty:first-child::before,\n.trix-content\n figure[data-trix-attachment].has-focus\n figcaption.is-empty::before {\n color: var(--rhino-placeholder-text-color);\n content: attr(data-placeholder);\n pointer-events: none;\n}\n\n.trix-content\n figure[data-trix-attachment]:not(.has-focus)\n figcaption.is-empty::before {\n content: attr(data-default-caption);\n pointer-events: none;\n}\n\n.trix-content ul {\n list-style: disc;\n}\n\n.trix-content\n figure[data-trix-attachment].has-focus\n figcaption.is-empty::before {\n position: absolute;\n left: 50%;\n top: 0;\n transform: translate(-50%, 0%);\n}\n\n.trix-content p.is-editor-empty:first-child::before {\n float: left;\n height: 0;\n pointer-events: none;\n}\n\n.trix-content {\n box-sizing: border-box;\n}\n.trix-content * {\n box-sizing: inherit;\n margin: 0;\n padding: 0;\n}\n.trix-content h1 {\n font-size: 1.2em;\n line-height: 1.2;\n}\n.trix-content blockquote {\n border: 0 solid #ccc;\n border-inline-start-width: 0.3em;\n margin-inline-start: 0.3em;\n padding-inline-start: 0.6em;\n}\n.trix-content li {\n margin-inline-start: 1em;\n}\n.trix-content :where(pre) {\n display: inline-block;\n width: 100%;\n vertical-align: top;\n font-family: monospace;\n font-size: 0.9em;\n padding: 0.5em;\n white-space: pre;\n background-color: #eee;\n overflow-x: auto;\n}\n.trix-content img {\n max-width: 100%;\n height: auto;\n}\n.trix-content .attachment {\n display: block;\n position: relative;\n max-width: 100%;\n}\n.trix-content .attachment a {\n color: inherit;\n text-decoration: none;\n}\n.trix-content .attachment a:hover,\n.trix-content .attachment a:visited:hover {\n color: inherit;\n}\n.trix-content .attachment__caption {\n text-align: center;\n margin-top: 0.5em;\n}\n.trix-content\n .attachment__caption\n .attachment__name\n + .attachment__size::before {\n content: \" · \";\n}\n.trix-content .attachment--preview {\n width: 100%;\n text-align: center;\n margin: 0.6em 0;\n}\n.trix-content .attachment--preview .attachment__caption {\n color: #666;\n font-size: 0.9em;\n line-height: 1.2;\n}\n.trix-content .attachment.attachment--file {\n color: #333;\n line-height: 1;\n margin: 0 2px 2px 2px;\n padding: 0.4em 1em;\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n}\n.trix-content .attachment-gallery {\n display: flex;\n flex-wrap: wrap;\n position: relative;\n}\n\n/* For if galleries are disabled */\n.trix-content figure.attachment {\n display: inline-block;\n position: relative;\n white-space: normal;\n}\n\n/* This is a cheap easy way to allow us to show <p> tags in galleries */\n.trix-content .attachment-gallery > p {\n width: 0px;\n padding: 0;\n flex-basis: 0%;\n max-width: 0%;\n flex-shrink: 1;\n flex-grow: 0;\n}\n\n.trix-content .attachment-gallery .attachment {\n flex: 1 0 100%;\n padding: 0 0.5em;\n max-width: 100%;\n white-space: normal;\n}\n\n.trix-content\n .attachment-gallery\n > :is(.attachment--preview, action-text-attachment[previewable=\"true\"]) {\n flex: 1 0 33%;\n padding: 0 0.5em;\n max-width: 33%;\n white-space: normal;\n}\n\n/* 1 / 3 / n item[s] */\n.trix-content\n .attachment-gallery\n > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1)\n ~ :is(.attachment, action-text-attachment),\n.trix-content\n .attachment-gallery\n > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) {\n padding: 0;\n flex-basis: 100%;\n max-width: 100%;\n}\n\n/* 2 items / 4 items */\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(2),\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(2)\n ~ :is(.attachment--preview, action-text-attachment[previewable=\"true\"]),\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(4),\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(4)\n ~ :is(.attachment--preview, action-text-attachment[previewable=\"true\"]) {\n flex-basis: 50%;\n max-width: 50%;\n}\n\n/** This carry over from Trix's gallery for backwards compat */\n.trix-content\n .attachment-gallery.attachment-gallery--2\n action-text-attachment\n > .attachment,\n.trix-content\n .attachment-gallery.attachment-gallery--4\n action-text-attachment\n > .attachment,\n.trix-content .attachment-gallery action-text-attachment > .attachment {\n max-width: 100%;\n}\n\n/* src/exports/styles/editor.js:hostStyles */\n.trix-content {\n \n /* General tokens */\n --rhino-focus-ring: 0px 0px 4px 1px var(--rhino-button-active-border-color);\n --rhino-border-radius: 4px;\n\n --rhino-danger-border-color: red;\n --rhino-danger-background-color: #ffdddd;\n\n /* Editor tokens */\n --rhino-text-color: #374151;\n --rhino-border-color: #cecece;\n --rhino-placeholder-text-color: #cecece;\n\n /* Regular buttons */\n --rhino-button-text-color: #889;\n --rhino-button-border-color: #cecece;\n\n /** Disabled Buttons */\n --rhino-button-disabled-text-color: #d1d5db;\n --rhino-button-disabled-border-color: #d1d5db;\n --rhino-button-disabled-background-color: #d1d5db;\n\n /** Active buttons */\n --rhino-button-active-border-color: #005a9c;\n --rhino-button-active-background-color: rgb(226 239 255);\n\n --rhino-toolbar-text-color: hsl(219, 6%, 43%);\n --rhino-toolbar-icon-size: 24px;\n\n --rhino-dialog-border-color: hsl(\n var(--rhino-button-focus-background-color-hsl) / 50%\n );\n\n /** Focus buttons */\n --rhino-button-focus-background-color: hsl(\n var(--rhino-button-focus-background-color-hsl)\n );\n\n --rhino-button-focus-background-color-hsl: 219 26% 95%;\n\n display: block;\n color: var(--rhino-text-color);\n\n}\n\n/* src/exports/styles/editor.js:toolbarButtonStyles */\n\n .rhino-toolbar-button {\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n padding: 0.2em 0.4em;\n color: inherit;\n }\n\n .rhino-toolbar-button:is([aria-disabled=\"true\"], :disabled) {\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n }\n\n .rhino-toolbar-button[aria-disabled=\"true\"]:focus {\n border-color: var(--rhino-button-disabled-border-color);\n }\n\n .rhino-toolbar-button svg {\n min-height: var(--rhino-toolbar-icon-size);\n min-width: var(--rhino-toolbar-icon-size);\n\n /* max-height / max-width needs to be set for safari */\n max-height: var(--rhino-toolbar-icon-size);\n max-width: var(--rhino-toolbar-icon-size);\n }\n\n .rhino-toolbar-button:is(:focus, :hover):not(\n [aria-disabled=\"true\"],\n :disabled\n ) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n border-color: var(--rhino-button-active-border-color);\n }\n\n /* Only change the background color in certain scenarios */\n .rhino-toolbar-button:is(:focus, :hover):not(\n [aria-disabled=\"true\"],\n :disabled,\n [aria-pressed=\"true\"],\n [part~=\"toolbar__button--active\"]\n ) {\n background-color: var(--rhino-button-focus-background-color);\n }\n\n .rhino-toolbar-button:is([aria-disabled=\"true\"], :disabled):not(\n [part~=\"toolbar__button--active\"]\n ) {\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n }\n\n .rhino-toolbar-button:is(:focus, :hover):is(\n [aria-disabled=\"true\"],\n :disabled\n ):not([part~=\"toolbar__button--active\"]) {\n outline: transparent;\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n box-shadow: 0 0 0 1px var(--rhino-button-disabled-border-color);\n }\n\n","@import \"./../../../node_modules/rhino-editor/exports/styles/trix.css\";\n\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\n.rhino-editor .rhino-toolbar-button,\n.rhino-editor::part(toolbar__button) {\n --rhino-toolbar-icon-size: 18px;\n @apply flex items-center justify-center border-none;\n\n &:hover {\n @apply shadow-none bg-gray-100;\n }\n}\n\n.hidden-until-rhino-boots-up {\n @apply !hidden;\n}\n"]}
|
1
|
+
{"version":3,"sources":["../../../node_modules/rhino-editor/exports/styles/trix.css","../../../node_modules/rhino-editor/src/exports/styles/trix.css","../stylesheets/avo-rhino_field.css"],"names":[],"mappings":"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","file":"avo-rhino_field.css","sourcesContent":["/* src/exports/styles/trix.css */\n.trix-content {\n border: 1px solid var(--rhino-border-color);\n border-radius: 0px 0px var(--rhino-border-radius) var(--rhino-border-radius);\n margin: 0;\n padding: 0.4em 0.6em;\n min-height: 200px;\n outline: transparent;\n overflow-wrap: break-word;\n word-break: break-word;\n}\n.trix-content[contenteditable=true] {\n white-space: pre-wrap;\n}\n.trix-content:is(:focus, :focus-within) {\n border-color: var(--rhino-button-active-border-color);\n}\n.trix-content :is(img, svg, figure) {\n width: 100%;\n max-width: 100%;\n height: auto;\n display: block;\n}\n.trix-content :is(figure, p) {\n padding: 0;\n margin: 0;\n}\n.trix-content figure {\n position: relative;\n}\n.trix-content figcaption {\n line-break: anywhere;\n display: inline-block;\n white-space: normal;\n width: 100%;\n margin: 0;\n padding: 0;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n text-align: center;\n vertical-align: top;\n border: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n.trix-content[contenteditable=true] figcaption {\n white-space: break-spaces;\n}\n.trix-content .rhino-upload-error {\n background-color: rgba(255, 0, 0, 0.3);\n}\n.trix-content:not([readonly]) .attachment--preview:is(:focus-within, :focus, .has-focus) :is(img) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n}\n.trix-content:not([readonly]) .attachment:not(.attachment--preview):is(:focus-within, :focus, .has-focus) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n}\n.rhino-attachment-editor::part(delete-button),\n.rhino-attachment-editor::part(file-metadata) {\n display: none;\n}\n.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) .rhino-attachment-editor::part(delete-button),\n.trix-content:not([readonly]) figure:is(:focus-within, :focus, .has-focus) .rhino-attachment-editor::part(file-metadata) {\n display: flex;\n}\n.trix-content .placeholder {\n position: absolute;\n pointer-events: none;\n color: var(--rhino-placeholder-text-color);\n color: light-dark(var(--rhino-placeholder-text-color), var(--rhino-dark-placeholder-text-color));\n cursor: text;\n content: \"\";\n}\n.trix-content figure.attachment figcaption {\n position: relative;\n}\n.trix-content p.is-editor-empty:first-child::before,\n.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {\n color: var(--rhino-placeholder-text-color);\n color: light-dark(var(--rhino-placeholder-text-color), var(--rhino-dark-placeholder-text-color));\n content: attr(data-placeholder);\n pointer-events: none;\n}\n.trix-content figure[data-trix-attachment]:not(.has-focus) figcaption.is-empty::before {\n content: attr(data-default-caption);\n pointer-events: none;\n}\n.trix-content ul {\n list-style: disc;\n}\n.trix-content ol {\n list-style-type: decimal;\n}\n.trix-content figure[data-trix-attachment].has-focus figcaption.is-empty::before {\n position: absolute;\n left: 50%;\n top: 0;\n transform: translate(-50%, 0%);\n}\n.trix-content p.is-editor-empty:first-child::before {\n float: left;\n height: 0;\n pointer-events: none;\n}\n.trix-content {\n box-sizing: border-box;\n}\n.trix-content * {\n box-sizing: inherit;\n margin: 0;\n padding: 0;\n}\n.trix-content h1 {\n font-size: 1.2em;\n line-height: 1.2;\n}\n.trix-content blockquote {\n border: 0 solid #ccc;\n border-inline-start-width: 0.3em;\n margin-inline-start: 0.3em;\n padding-inline-start: 0.6em;\n}\n.trix-content li {\n margin-inline-start: 1em;\n}\n.trix-content :not(pre) code {\n background-color: #eee;\n border-radius: 2px;\n padding: 2px;\n margin: 0 1px;\n border: 1px solid rgba(192, 192, 192, 0.5);\n display: inline;\n}\n.trix-content code,\n.trix-content pre {\n box-decoration-break: clone;\n}\n.trix-content pre {\n display: block;\n width: 100%;\n font-family: monospace;\n padding: 0.5em;\n white-space: pre;\n overflow-x: auto;\n background-color: #eee;\n font-size: 0.9em;\n}\n.trix-content img {\n max-width: 100%;\n height: auto;\n}\n.trix-content .attachment {\n display: block;\n position: relative;\n max-width: 100%;\n}\n.trix-content .attachment figcaption a,\n.trix-content .attachment figcaption a:hover {\n color: LinkText;\n}\n.trix-content .attachment figcaption a:visited,\n.trix-content .attachment figcaption a:hover:visited {\n color: VisitedText;\n}\n.trix-content .attachment__caption {\n text-align: center;\n margin-top: 0.5em;\n}\n.trix-content .attachment__caption .attachment__name + .attachment__size::before {\n content: \" \\b7 \";\n}\n.trix-content .attachment--preview {\n width: 100%;\n text-align: center;\n margin: 0.6em 0;\n}\n.trix-content .attachment--preview .attachment__caption {\n color: #666;\n font-size: 0.9em;\n line-height: 1.2;\n}\n.trix-content .attachment.attachment--file {\n color: #333;\n line-height: 1;\n margin: 0 2px 2px 2px;\n padding: 0.4em 1em;\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n}\n.trix-content .attachment-gallery {\n display: flex;\n flex-wrap: wrap;\n position: relative;\n}\n.trix-content figure.attachment {\n display: inline-block;\n position: relative;\n white-space: normal;\n}\n.trix-content .attachment-gallery > p {\n width: 0px;\n padding: 0;\n flex-basis: 0%;\n max-width: 0%;\n flex-shrink: 1;\n flex-grow: 0;\n}\n.trix-content .attachment-gallery .attachment {\n flex: 1 0 100%;\n padding: 0 0.5em;\n max-width: 100%;\n white-space: normal;\n}\n.trix-content .attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]) {\n flex: 1 0 33%;\n padding: 0 0.5em;\n max-width: 33%;\n white-space: normal;\n}\n.trix-content .attachment-gallery > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) ~ :is(.attachment, action-text-attachment),\n.trix-content .attachment-gallery > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) {\n padding: 0;\n flex-basis: 100%;\n max-width: 100%;\n}\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(2),\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(2) ~ :is(.attachment--preview, action-text-attachment[previewable=true]),\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(4),\n.attachment-gallery > :is(.attachment--preview, action-text-attachment[previewable=true]):first-of-type:nth-last-of-type(4) ~ :is(.attachment--preview, action-text-attachment[previewable=true]) {\n flex-basis: 50%;\n max-width: 50%;\n}\n.trix-content .attachment-gallery.attachment-gallery--2 action-text-attachment > .attachment,\n.trix-content .attachment-gallery.attachment-gallery--4 action-text-attachment > .attachment,\n.trix-content .attachment-gallery action-text-attachment > .attachment {\n max-width: 100%;\n}\n:host,\n.trix-content {\n --rhino-focus-ring: 0px 0px 1px 1px var(--rhino-button-active-border-color);\n --rhino-border-radius: 4px;\n --rhino-danger-border-color: red;\n --rhino-danger-background-color: #ffdddd;\n --rhino-text-color: #374151;\n --rhino-dark-text-color: white;\n --rhino-border-color: #cecece;\n --rhino-placeholder-text-color: #cecece;\n --rhino-dark-placeholder-text-color: gray;\n --rhino-button-text-color: #889;\n --rhino-button-dark-text-color: #eee;\n --rhino-button-border-color: #cecece;\n --rhino-button-disabled-text-color: #d1d5db;\n --rhino-button-disabled-border-color: #d1d5db;\n --rhino-button-disabled-background-color: #d1d5db;\n --rhino-button-active-border-color: #005a9c;\n --rhino-button-active-background-color: rgb(226 239 255);\n --rhino-toolbar-text-color: hsl(219, 6%, 43%);\n --rhino-toolbar-icon-size: 1em;\n --rhino-dialog-border-color: hsl( var(--rhino-button-focus-background-color-hsl) / 50% );\n --rhino-button-focus-background-color: hsl( var(--rhino-button-focus-background-color-hsl) );\n --rhino-button-focus-background-color-hsl: 219 26% 95%;\n --rhino-fake-selection-color: rgb(220, 220, 220);\n display: block;\n color: var(--rhino-text-color);\n color: light-dark(var(--rhino-text-color), var(--rhino-dark-text-color));\n}\n@keyframes rhino-blink {\n 49% {\n border-color: unset;\n }\n 50% {\n border-color: Canvas;\n }\n 99% {\n border-color: Canvas;\n }\n}\n.rhino-editor .no-cursor {\n caret-color: transparent;\n}\n:where(.rhino-editor) .fake-cursor {\n margin: 0;\n padding: 0;\n margin-right: -1px;\n border-left-width: 1px;\n border-left-style: solid;\n animation: rhino-blink 1s;\n animation-iteration-count: infinite;\n position: relative;\n z-index: 1;\n}\n:where(.rhino-editor .ProseMirror):not(:focus-within) .rhino-selection {\n background: var(--rhino-fake-selection-color);\n}\n.ProseMirror-separator {\n display: none !important;\n}\n.rhino-toolbar-button {\n appearance: none;\n -webkit-appearance: none;\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n padding: 0.4em;\n color: var(--rhino-button-text-color);\n color: light-dark(var(--rhino-button-text-color), var(--rhino-button-dark-text-color));\n background: Canvas;\n font-size: inherit;\n display: inline-grid;\n}\n.rhino-toolbar-button:is([aria-disabled=true], :disabled) {\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n}\n.rhino-toolbar-button[aria-disabled=true]:focus {\n border-color: var(--rhino-button-disabled-border-color);\n}\n.rhino-toolbar-button svg {\n min-height: var(--rhino-toolbar-icon-size);\n min-width: var(--rhino-toolbar-icon-size);\n max-height: var(--rhino-toolbar-icon-size);\n max-width: var(--rhino-toolbar-icon-size);\n}\n.rhino-toolbar-button:is(:focus, :hover):not([aria-disabled=true], :disabled) {\n outline: transparent;\n border-color: var(--rhino-button-active-border-color);\n}\n.rhino-toolbar-button:is(:focus):not([aria-disabled=true], :disabled) {\n box-shadow: var(--rhino-focus-ring);\n}\n.rhino-toolbar-button:is(:hover):not([aria-disabled=true], :disabled, [aria-pressed=true], [part~=toolbar__button--active]) {\n background-color: var(--rhino-button-focus-background-color);\n background-color: light-dark(var(--rhino-button-focus-background-color), gray);\n}\n.rhino-toolbar-button:is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {\n color: var(--rhino-button-disabled-text-color);\n color: light-dark(var(--rhino-button-disabled-text-color), gray);\n border-color: var(--rhino-button-disabled-border-color);\n}\n.rhino-toolbar-button:is(:focus, :hover):is([aria-disabled=true], :disabled):not([part~=toolbar__button--active]) {\n outline: transparent;\n color: var(--rhino-button-disabled-text-color);\n color: light-dark(var(--rhino-button-disabled-text-color), gray);\n border-color: var(--rhino-button-disabled-border-color);\n box-shadow: 0 0 0 1px var(--rhino-button-disabled-border-color);\n box-shadow: 0 0 0 1px light-dark(var(--rhino-button-disabled-border-color), transparent);\n}\n/*# sourceMappingURL=trix.css.map */\n","/* THIS FILE IS AUTO-GENERATED. DO NOT EDIT BY HAND! */\n\n/* These all come from Trix / ActionText. This should probably be cleaned up into\n a regular .css for users to include.\n*/\n\n.trix-content {\n border: 1px solid var(--rhino-border-color);\n border-radius: 0px 0px var(--rhino-border-radius) var(--rhino-border-radius);\n margin: 0;\n padding: 0.4em 0.6em;\n min-height: 200px;\n outline: transparent;\n overflow-wrap: break-word;\n word-break: break-word;\n}\n\n.trix-content[contenteditable=\"true\"] {\n /* Required by Prosemirror / TipTap */\n white-space: pre-wrap;\n}\n\n.trix-content:is(:focus, :focus-within) {\n border-color: var(--rhino-button-active-border-color);\n}\n\n.trix-content :is(img, svg, figure) {\n width: 100%;\n max-width: 100%;\n height: auto;\n display: block;\n}\n\n.trix-content :is(figure, p) {\n padding: 0;\n margin: 0;\n}\n\n.trix-content figure {\n position: relative;\n}\n\n.trix-content figcaption {\n line-break: anywhere;\n display: inline-block;\n white-space: normal;\n width: 100%;\n margin: 0;\n padding: 0;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n text-align: center;\n vertical-align: top;\n border: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n\n/* If you use white-space: normal; in firefox you cant add blank space to the figcaption */\n.trix-content[contenteditable=\"true\"] figcaption {\n white-space: break-spaces;\n}\n\n.trix-content .rhino-upload-error {\n background-color: rgba(255, 0, 0, 0.3);\n}\n\n/* Attachments */\n.trix-content:not([readonly])\n .attachment--preview:is(:focus-within, :focus, .has-focus)\n :is(img) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n}\n\n.trix-content:not([readonly])\n .attachment:not(.attachment--preview):is(:focus-within, :focus, .has-focus) {\n outline: transparent;\n box-shadow: var(--rhino-focus-ring);\n}\n\n.rhino-attachment-editor::part(delete-button),\n.rhino-attachment-editor::part(file-metadata) {\n display: none;\n}\n\n.trix-content:not([readonly])\n figure:is(:focus-within, :focus, .has-focus)\n .rhino-attachment-editor::part(delete-button),\n.trix-content:not([readonly])\n figure:is(:focus-within, :focus, .has-focus)\n .rhino-attachment-editor::part(file-metadata) {\n display: flex;\n}\n\n.trix-content .placeholder {\n position: absolute;\n pointer-events: none;\n color: var(--rhino-placeholder-text-color);\n color: light-dark(\n var(--rhino-placeholder-text-color),\n var(--rhino-dark-placeholder-text-color)\n );\n cursor: text;\n content: \"\";\n}\n.trix-content figure.attachment figcaption {\n position: relative;\n}\n\n.trix-content p.is-editor-empty:first-child::before,\n.trix-content\n figure[data-trix-attachment].has-focus\n figcaption.is-empty::before {\n color: var(--rhino-placeholder-text-color);\n color: light-dark(\n var(--rhino-placeholder-text-color),\n var(--rhino-dark-placeholder-text-color)\n );\n content: attr(data-placeholder);\n pointer-events: none;\n}\n\n.trix-content\n figure[data-trix-attachment]:not(.has-focus)\n figcaption.is-empty::before {\n content: attr(data-default-caption);\n pointer-events: none;\n}\n\n.trix-content ul {\n list-style: disc;\n}\n\n.trix-content ol {\n list-style-type: decimal;\n}\n\n.trix-content\n figure[data-trix-attachment].has-focus\n figcaption.is-empty::before {\n position: absolute;\n left: 50%;\n top: 0;\n transform: translate(-50%, 0%);\n}\n\n.trix-content p.is-editor-empty:first-child::before {\n float: left;\n height: 0;\n pointer-events: none;\n}\n\n.trix-content {\n box-sizing: border-box;\n}\n.trix-content * {\n box-sizing: inherit;\n margin: 0;\n padding: 0;\n}\n.trix-content h1 {\n font-size: 1.2em;\n line-height: 1.2;\n}\n.trix-content blockquote {\n border: 0 solid #ccc;\n border-inline-start-width: 0.3em;\n margin-inline-start: 0.3em;\n padding-inline-start: 0.6em;\n}\n.trix-content li {\n margin-inline-start: 1em;\n}\n\n/** This is for `` inline code code elements. */\n.trix-content :not(pre) code {\n background-color: #eee;\n border-radius: 2px;\n padding: 2px;\n margin: 0 1px;\n border: 1px solid rgba(192, 192, 192, 0.5);\n display: inline;\n}\n\n.trix-content code,\n.trix-content pre {\n box-decoration-break: clone;\n}\n\n.trix-content pre {\n display: block;\n width: 100%;\n font-family: monospace;\n padding: 0.5em;\n white-space: pre;\n overflow-x: auto;\n background-color: #eee;\n font-size: 0.9em;\n}\n\n.trix-content img {\n max-width: 100%;\n height: auto;\n}\n.trix-content .attachment {\n display: block;\n position: relative;\n max-width: 100%;\n}\n\n/** Overrides Trix's link CSS */\n.trix-content .attachment figcaption a,\n.trix-content .attachment figcaption a:hover {\n color: LinkText;\n}\n\n/** Overrides Trix's link CSS */\n.trix-content .attachment figcaption a:visited,\n.trix-content .attachment figcaption a:hover:visited {\n color: VisitedText;\n}\n\n.trix-content .attachment__caption {\n text-align: center;\n margin-top: 0.5em;\n}\n.trix-content\n .attachment__caption\n .attachment__name\n + .attachment__size::before {\n content: \" · \";\n}\n.trix-content .attachment--preview {\n width: 100%;\n text-align: center;\n margin: 0.6em 0;\n}\n.trix-content .attachment--preview .attachment__caption {\n color: #666;\n font-size: 0.9em;\n line-height: 1.2;\n}\n.trix-content .attachment.attachment--file {\n color: #333;\n line-height: 1;\n margin: 0 2px 2px 2px;\n padding: 0.4em 1em;\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n}\n.trix-content .attachment-gallery {\n display: flex;\n flex-wrap: wrap;\n position: relative;\n}\n\n/* For if galleries are disabled */\n.trix-content figure.attachment {\n display: inline-block;\n position: relative;\n white-space: normal;\n}\n\n/* This is a cheap easy way to allow us to show <p> tags in galleries */\n.trix-content .attachment-gallery > p {\n width: 0px;\n padding: 0;\n flex-basis: 0%;\n max-width: 0%;\n flex-shrink: 1;\n flex-grow: 0;\n}\n\n.trix-content .attachment-gallery .attachment {\n flex: 1 0 100%;\n padding: 0 0.5em;\n max-width: 100%;\n white-space: normal;\n}\n\n.trix-content\n .attachment-gallery\n > :is(.attachment--preview, action-text-attachment[previewable=\"true\"]) {\n flex: 1 0 33%;\n padding: 0 0.5em;\n max-width: 33%;\n white-space: normal;\n}\n\n/* 1 / 3 / n item[s] */\n.trix-content\n .attachment-gallery\n > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1)\n ~ :is(.attachment, action-text-attachment),\n.trix-content\n .attachment-gallery\n > :is(.attachment, action-text-attachment):first-of-type:nth-last-of-type(1) {\n padding: 0;\n flex-basis: 100%;\n max-width: 100%;\n}\n\n/* 2 items / 4 items */\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(2),\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(2)\n ~ :is(.attachment--preview, action-text-attachment[previewable=\"true\"]),\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(4),\n.attachment-gallery\n > :is(\n .attachment--preview,\n action-text-attachment[previewable=\"true\"]\n ):first-of-type:nth-last-of-type(4)\n ~ :is(.attachment--preview, action-text-attachment[previewable=\"true\"]) {\n flex-basis: 50%;\n max-width: 50%;\n}\n\n/** This carry over from Trix's gallery for backwards compat */\n.trix-content\n .attachment-gallery.attachment-gallery--2\n action-text-attachment\n > .attachment,\n.trix-content\n .attachment-gallery.attachment-gallery--4\n action-text-attachment\n > .attachment,\n.trix-content .attachment-gallery action-text-attachment > .attachment {\n max-width: 100%;\n}\n\n /* src/exports/styles/editor.js:hostStyles */\n\n :host,\n .trix-content {\n /* General tokens */\n --rhino-focus-ring: 0px 0px 1px 1px var(--rhino-button-active-border-color);\n --rhino-border-radius: 4px;\n\n --rhino-danger-border-color: red;\n --rhino-danger-background-color: #ffdddd;\n\n /* Editor tokens */\n --rhino-text-color: #374151;\n --rhino-dark-text-color: white;\n\n --rhino-border-color: #cecece;\n --rhino-placeholder-text-color: #cecece;\n --rhino-dark-placeholder-text-color: gray;\n\n /* Regular buttons */\n --rhino-button-text-color: #889;\n --rhino-button-dark-text-color: #eee;\n --rhino-button-border-color: #cecece;\n\n /** Disabled Buttons */\n --rhino-button-disabled-text-color: #d1d5db;\n --rhino-button-disabled-border-color: #d1d5db;\n --rhino-button-disabled-background-color: #d1d5db;\n\n /** Active buttons */\n --rhino-button-active-border-color: #005a9c;\n --rhino-button-active-background-color: rgb(226 239 255);\n\n --rhino-toolbar-text-color: hsl(219, 6%, 43%);\n --rhino-toolbar-icon-size: 1em;\n\n --rhino-dialog-border-color: hsl(\n var(--rhino-button-focus-background-color-hsl) / 50%\n );\n\n /** Focus buttons */\n --rhino-button-focus-background-color: hsl(\n var(--rhino-button-focus-background-color-hsl)\n );\n\n --rhino-button-focus-background-color-hsl: 219 26% 95%;\n\n /**\n * Override \"--rhino-fake-selection-color\" to change the color of .rhino-selection when the editor is not focused.\n */\n --rhino-fake-selection-color: rgb(220, 220, 220);\n\n display: block;\n\n color: var(--rhino-text-color);\n color: light-dark(var(--rhino-text-color), var(--rhino-dark-text-color));\n }\n\n\n/* src/exports/styles/editor.js:toolbarButtonStyles */\n\n /**\n * Cursor styles that are useful for providing a more \"pleasant\" editor experience.\n */\n /**\n* https://github.com/curvenote/editor/blob/main/packages/prosemirror-codemark/src/codemark.css\n*/\n @keyframes rhino-blink {\n 49% {\n border-color: unset;\n }\n 50% {\n border-color: Canvas;\n }\n 99% {\n border-color: Canvas;\n }\n }\n .rhino-editor .no-cursor {\n caret-color: transparent;\n }\n\n :where(.rhino-editor) .fake-cursor {\n margin: 0;\n padding: 0;\n margin-right: -1px;\n border-left-width: 1px;\n border-left-style: solid;\n animation: rhino-blink 1s;\n animation-iteration-count: infinite;\n position: relative;\n z-index: 1;\n }\n\n /** This is for actual \"selection\" which are highlighting more than 1 character. */\n :where(.rhino-editor .ProseMirror):not(:focus-within) .rhino-selection {\n background: var(--rhino-fake-selection-color);\n }\n\n .ProseMirror-separator {\n display: none !important;\n }\n\n\n/* src/exports/styles/editor.js:toolbarButtonStyles */\n\n .rhino-toolbar-button {\n appearance: none;\n -webkit-appearance: none;\n border: 1px solid var(--rhino-border-color);\n border-radius: var(--rhino-border-radius);\n padding: 0.4em;\n color: var(--rhino-button-text-color);\n color: light-dark(\n var(--rhino-button-text-color),\n var(--rhino-button-dark-text-color)\n );\n background: Canvas;\n font-size: inherit;\n display: inline-grid;\n }\n\n .rhino-toolbar-button:is([aria-disabled=\"true\"], :disabled) {\n color: var(--rhino-button-disabled-text-color);\n border-color: var(--rhino-button-disabled-border-color);\n }\n\n .rhino-toolbar-button[aria-disabled=\"true\"]:focus {\n border-color: var(--rhino-button-disabled-border-color);\n }\n\n .rhino-toolbar-button svg {\n min-height: var(--rhino-toolbar-icon-size);\n min-width: var(--rhino-toolbar-icon-size);\n\n /* max-height / max-width needs to be set for safari */\n max-height: var(--rhino-toolbar-icon-size);\n max-width: var(--rhino-toolbar-icon-size);\n }\n\n .rhino-toolbar-button:is(:focus, :hover):not(\n [aria-disabled=\"true\"],\n :disabled\n ) {\n outline: transparent;\n border-color: var(--rhino-button-active-border-color);\n }\n\n .rhino-toolbar-button:is(:focus):not([aria-disabled=\"true\"], :disabled) {\n box-shadow: var(--rhino-focus-ring);\n }\n\n /* Only change the background color in certain scenarios */\n .rhino-toolbar-button:is(:hover):not(\n [aria-disabled=\"true\"],\n :disabled,\n [aria-pressed=\"true\"],\n [part~=\"toolbar__button--active\"]\n ) {\n background-color: var(--rhino-button-focus-background-color);\n background-color: light-dark(\n var(--rhino-button-focus-background-color),\n gray\n );\n }\n\n .rhino-toolbar-button:is([aria-disabled=\"true\"], :disabled):not(\n [part~=\"toolbar__button--active\"]\n ) {\n color: var(--rhino-button-disabled-text-color);\n color: light-dark(var(--rhino-button-disabled-text-color), gray);\n border-color: var(--rhino-button-disabled-border-color);\n }\n\n .rhino-toolbar-button:is(:focus, :hover):is(\n [aria-disabled=\"true\"],\n :disabled\n ):not([part~=\"toolbar__button--active\"]) {\n outline: transparent;\n color: var(--rhino-button-disabled-text-color);\n color: light-dark(var(--rhino-button-disabled-text-color), gray);\n border-color: var(--rhino-button-disabled-border-color);\n box-shadow: 0 0 0 1px var(--rhino-button-disabled-border-color);\n box-shadow: 0 0 0 1px\n light-dark(var(--rhino-button-disabled-border-color), transparent);\n }","@import \"./../../../node_modules/rhino-editor/exports/styles/trix.css\";\n\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\n.rhino-editor .rhino-toolbar-button,\n.rhino-editor::part(toolbar__button) {\n --rhino-toolbar-icon-size: 18px;\n @apply flex items-center justify-center border-none;\n\n &:hover {\n @apply shadow-none bg-gray-100;\n }\n}\n\n.hidden-until-rhino-boots-up {\n @apply !hidden;\n}\n"]}
|