avo 4.0.0.beta.13 → 4.0.0.beta.15
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/Gemfile.lock +1 -1
- data/app/assets/builds/avo/application.css +30 -409
- data/app/assets/builds/avo/dependencies.css +379 -0
- data/app/assets/stylesheets/application.css +1 -1
- data/app/assets/stylesheets/css/fields/code.css +0 -2
- data/app/assets/stylesheets/dependencies.css +1 -0
- data/lib/avo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1071f00b1ea8452984cabfbefcb91e8ba3681cee0b34e5432acf2d97c7f4ab6f
|
|
4
|
+
data.tar.gz: ae20a85de18af36806433d0ba1b8be349683541df065c360d7d417550c94ab58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9841450ee5f2ea9d1d9ad95db2916dd9e08c56d6cba707188e841dc899ecacd6bcc87b1b6ace1884042cb82de7e3f819ae3b105b0e195428ff88a3b346c462de
|
|
7
|
+
data.tar.gz: 6abbe21b187ca9fa79f08edeecf5582b7f399a026d2a8ad602025ab0c63434579d235de18a82aec6807a07cddc51046317758b1de6c4e017b2112923a17700e0
|
data/Gemfile.lock
CHANGED
|
@@ -4230,6 +4230,36 @@
|
|
|
4230
4230
|
opacity: 60%;
|
|
4231
4231
|
}
|
|
4232
4232
|
}
|
|
4233
|
+
.tippy-box[data-theme~='basic'] {
|
|
4234
|
+
border-radius: var(--radius-md);
|
|
4235
|
+
border-style: var(--tw-border-style);
|
|
4236
|
+
border-width: 1px;
|
|
4237
|
+
border-color: var(--color-neutral-200);
|
|
4238
|
+
background-color: var(--color-background);
|
|
4239
|
+
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
|
|
4240
|
+
}
|
|
4241
|
+
.tippy-box[data-theme~='basic'] .tippy-content {
|
|
4242
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
4243
|
+
padding-block: calc(var(--spacing) * 1);
|
|
4244
|
+
font-family: var(--font-sans);
|
|
4245
|
+
font-size: var(--text-sm);
|
|
4246
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
4247
|
+
--tw-leading: calc(var(--spacing) * 5);
|
|
4248
|
+
line-height: calc(var(--spacing) * 5);
|
|
4249
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
4250
|
+
font-weight: var(--font-weight-normal);
|
|
4251
|
+
color: var(--color-content);
|
|
4252
|
+
}
|
|
4253
|
+
.tippy-box[data-theme~='basic'] .tippy-arrow {
|
|
4254
|
+
display: none;
|
|
4255
|
+
}
|
|
4256
|
+
.dark .tippy-box[data-theme~='basic'] {
|
|
4257
|
+
border-color: var(--color-secondary);
|
|
4258
|
+
background-color: var(--color-background);
|
|
4259
|
+
}
|
|
4260
|
+
.dark .tippy-box[data-theme~='basic'] .tippy-content {
|
|
4261
|
+
color: var(--color-content);
|
|
4262
|
+
}
|
|
4233
4263
|
@layer components {
|
|
4234
4264
|
@font-face {
|
|
4235
4265
|
font-family: 'Inter';
|
|
@@ -5368,385 +5398,6 @@
|
|
|
5368
5398
|
-webkit-transform: scale(1);
|
|
5369
5399
|
}
|
|
5370
5400
|
}
|
|
5371
|
-
.CodeMirror {
|
|
5372
|
-
font-family: monospace;
|
|
5373
|
-
height: 300px;
|
|
5374
|
-
color: black;
|
|
5375
|
-
direction: ltr;
|
|
5376
|
-
}
|
|
5377
|
-
.CodeMirror-lines {
|
|
5378
|
-
padding: 4px 0;
|
|
5379
|
-
}
|
|
5380
|
-
.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
|
|
5381
|
-
padding: 0 4px;
|
|
5382
|
-
}
|
|
5383
|
-
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
5384
|
-
background-color: white;
|
|
5385
|
-
}
|
|
5386
|
-
.CodeMirror-gutters {
|
|
5387
|
-
border-right: 1px solid #ddd;
|
|
5388
|
-
background-color: #f7f7f7;
|
|
5389
|
-
white-space: nowrap;
|
|
5390
|
-
}
|
|
5391
|
-
.CodeMirror-linenumber {
|
|
5392
|
-
padding: 0 3px 0 5px;
|
|
5393
|
-
min-width: 20px;
|
|
5394
|
-
text-align: right;
|
|
5395
|
-
color: #999;
|
|
5396
|
-
white-space: nowrap;
|
|
5397
|
-
}
|
|
5398
|
-
.CodeMirror-guttermarker {
|
|
5399
|
-
color: black;
|
|
5400
|
-
}
|
|
5401
|
-
.CodeMirror-guttermarker-subtle {
|
|
5402
|
-
color: #999;
|
|
5403
|
-
}
|
|
5404
|
-
.CodeMirror-cursor {
|
|
5405
|
-
border-left: 1px solid black;
|
|
5406
|
-
border-right: none;
|
|
5407
|
-
width: 0;
|
|
5408
|
-
}
|
|
5409
|
-
.CodeMirror div.CodeMirror-secondarycursor {
|
|
5410
|
-
border-left: 1px solid silver;
|
|
5411
|
-
}
|
|
5412
|
-
.cm-fat-cursor .CodeMirror-cursor {
|
|
5413
|
-
width: auto;
|
|
5414
|
-
border: 0 !important;
|
|
5415
|
-
background: #7e7;
|
|
5416
|
-
}
|
|
5417
|
-
.cm-fat-cursor div.CodeMirror-cursors {
|
|
5418
|
-
z-index: 1;
|
|
5419
|
-
}
|
|
5420
|
-
.cm-fat-cursor .CodeMirror-line::selection, .cm-fat-cursor .CodeMirror-line > span::selection, .cm-fat-cursor .CodeMirror-line > span > span::selection {
|
|
5421
|
-
background: transparent;
|
|
5422
|
-
}
|
|
5423
|
-
.cm-fat-cursor .CodeMirror-line::-moz-selection, .cm-fat-cursor .CodeMirror-line > span::-moz-selection, .cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
|
|
5424
|
-
background: transparent;
|
|
5425
|
-
}
|
|
5426
|
-
.cm-fat-cursor {
|
|
5427
|
-
caret-color: transparent;
|
|
5428
|
-
}
|
|
5429
|
-
@-moz-keyframes blink {
|
|
5430
|
-
50% {
|
|
5431
|
-
background-color: transparent;
|
|
5432
|
-
}
|
|
5433
|
-
}
|
|
5434
|
-
@-webkit-keyframes blink {
|
|
5435
|
-
50% {
|
|
5436
|
-
background-color: transparent;
|
|
5437
|
-
}
|
|
5438
|
-
}
|
|
5439
|
-
@keyframes blink {
|
|
5440
|
-
50% {
|
|
5441
|
-
background-color: transparent;
|
|
5442
|
-
}
|
|
5443
|
-
}
|
|
5444
|
-
.cm-tab {
|
|
5445
|
-
display: inline-block;
|
|
5446
|
-
text-decoration: inherit;
|
|
5447
|
-
}
|
|
5448
|
-
.CodeMirror-rulers {
|
|
5449
|
-
position: absolute;
|
|
5450
|
-
left: 0;
|
|
5451
|
-
right: 0;
|
|
5452
|
-
top: -50px;
|
|
5453
|
-
bottom: 0;
|
|
5454
|
-
overflow: hidden;
|
|
5455
|
-
}
|
|
5456
|
-
.CodeMirror-ruler {
|
|
5457
|
-
border-left: 1px solid #ccc;
|
|
5458
|
-
top: 0;
|
|
5459
|
-
bottom: 0;
|
|
5460
|
-
position: absolute;
|
|
5461
|
-
}
|
|
5462
|
-
.cm-s-default .cm-header {
|
|
5463
|
-
color: blue;
|
|
5464
|
-
}
|
|
5465
|
-
.cm-s-default .cm-quote {
|
|
5466
|
-
color: #090;
|
|
5467
|
-
}
|
|
5468
|
-
.cm-negative {
|
|
5469
|
-
color: #d44;
|
|
5470
|
-
}
|
|
5471
|
-
.cm-positive {
|
|
5472
|
-
color: #292;
|
|
5473
|
-
}
|
|
5474
|
-
.cm-header, .cm-strong {
|
|
5475
|
-
font-weight: bold;
|
|
5476
|
-
}
|
|
5477
|
-
.cm-em {
|
|
5478
|
-
font-style: italic;
|
|
5479
|
-
}
|
|
5480
|
-
.cm-link {
|
|
5481
|
-
text-decoration: underline;
|
|
5482
|
-
}
|
|
5483
|
-
.cm-strikethrough {
|
|
5484
|
-
text-decoration: line-through;
|
|
5485
|
-
}
|
|
5486
|
-
.cm-s-default .cm-keyword {
|
|
5487
|
-
color: #708;
|
|
5488
|
-
}
|
|
5489
|
-
.cm-s-default .cm-atom {
|
|
5490
|
-
color: #219;
|
|
5491
|
-
}
|
|
5492
|
-
.cm-s-default .cm-number {
|
|
5493
|
-
color: #164;
|
|
5494
|
-
}
|
|
5495
|
-
.cm-s-default .cm-def {
|
|
5496
|
-
color: #00f;
|
|
5497
|
-
}
|
|
5498
|
-
.cm-s-default .cm-variable-2 {
|
|
5499
|
-
color: #05a;
|
|
5500
|
-
}
|
|
5501
|
-
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {
|
|
5502
|
-
color: #085;
|
|
5503
|
-
}
|
|
5504
|
-
.cm-s-default .cm-comment {
|
|
5505
|
-
color: #a50;
|
|
5506
|
-
}
|
|
5507
|
-
.cm-s-default .cm-string {
|
|
5508
|
-
color: #a11;
|
|
5509
|
-
}
|
|
5510
|
-
.cm-s-default .cm-string-2 {
|
|
5511
|
-
color: #f50;
|
|
5512
|
-
}
|
|
5513
|
-
.cm-s-default .cm-meta {
|
|
5514
|
-
color: #555;
|
|
5515
|
-
}
|
|
5516
|
-
.cm-s-default .cm-qualifier {
|
|
5517
|
-
color: #555;
|
|
5518
|
-
}
|
|
5519
|
-
.cm-s-default .cm-builtin {
|
|
5520
|
-
color: #30a;
|
|
5521
|
-
}
|
|
5522
|
-
.cm-s-default .cm-bracket {
|
|
5523
|
-
color: #997;
|
|
5524
|
-
}
|
|
5525
|
-
.cm-s-default .cm-tag {
|
|
5526
|
-
color: #170;
|
|
5527
|
-
}
|
|
5528
|
-
.cm-s-default .cm-attribute {
|
|
5529
|
-
color: #00c;
|
|
5530
|
-
}
|
|
5531
|
-
.cm-s-default .cm-hr {
|
|
5532
|
-
color: #999;
|
|
5533
|
-
}
|
|
5534
|
-
.cm-s-default .cm-link {
|
|
5535
|
-
color: #00c;
|
|
5536
|
-
}
|
|
5537
|
-
.cm-s-default .cm-error {
|
|
5538
|
-
color: #f00;
|
|
5539
|
-
}
|
|
5540
|
-
.cm-invalidchar {
|
|
5541
|
-
color: #f00;
|
|
5542
|
-
}
|
|
5543
|
-
.CodeMirror-composing {
|
|
5544
|
-
border-bottom: 2px solid;
|
|
5545
|
-
}
|
|
5546
|
-
div.CodeMirror span.CodeMirror-matchingbracket {
|
|
5547
|
-
color: #0b0;
|
|
5548
|
-
}
|
|
5549
|
-
div.CodeMirror span.CodeMirror-nonmatchingbracket {
|
|
5550
|
-
color: #a22;
|
|
5551
|
-
}
|
|
5552
|
-
.CodeMirror-matchingtag {
|
|
5553
|
-
background: rgba(255, 150, 0, .3);
|
|
5554
|
-
}
|
|
5555
|
-
.CodeMirror-activeline-background {
|
|
5556
|
-
background: #e8f2ff;
|
|
5557
|
-
}
|
|
5558
|
-
.CodeMirror {
|
|
5559
|
-
position: relative;
|
|
5560
|
-
overflow: hidden;
|
|
5561
|
-
background: white;
|
|
5562
|
-
}
|
|
5563
|
-
.CodeMirror-scroll {
|
|
5564
|
-
overflow: scroll !important;
|
|
5565
|
-
margin-bottom: -50px;
|
|
5566
|
-
margin-right: -50px;
|
|
5567
|
-
padding-bottom: 50px;
|
|
5568
|
-
height: 100%;
|
|
5569
|
-
outline: none;
|
|
5570
|
-
position: relative;
|
|
5571
|
-
z-index: 0;
|
|
5572
|
-
}
|
|
5573
|
-
.CodeMirror-sizer {
|
|
5574
|
-
position: relative;
|
|
5575
|
-
border-right: 50px solid transparent;
|
|
5576
|
-
}
|
|
5577
|
-
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
5578
|
-
position: absolute;
|
|
5579
|
-
z-index: 6;
|
|
5580
|
-
display: none;
|
|
5581
|
-
outline: none;
|
|
5582
|
-
}
|
|
5583
|
-
.CodeMirror-vscrollbar {
|
|
5584
|
-
right: 0;
|
|
5585
|
-
top: 0;
|
|
5586
|
-
overflow-x: hidden;
|
|
5587
|
-
overflow-y: scroll;
|
|
5588
|
-
}
|
|
5589
|
-
.CodeMirror-hscrollbar {
|
|
5590
|
-
bottom: 0;
|
|
5591
|
-
left: 0;
|
|
5592
|
-
overflow-y: hidden;
|
|
5593
|
-
overflow-x: scroll;
|
|
5594
|
-
}
|
|
5595
|
-
.CodeMirror-scrollbar-filler {
|
|
5596
|
-
right: 0;
|
|
5597
|
-
bottom: 0;
|
|
5598
|
-
}
|
|
5599
|
-
.CodeMirror-gutter-filler {
|
|
5600
|
-
left: 0;
|
|
5601
|
-
bottom: 0;
|
|
5602
|
-
}
|
|
5603
|
-
.CodeMirror-gutters {
|
|
5604
|
-
position: absolute;
|
|
5605
|
-
left: 0;
|
|
5606
|
-
top: 0;
|
|
5607
|
-
min-height: 100%;
|
|
5608
|
-
z-index: 3;
|
|
5609
|
-
}
|
|
5610
|
-
.CodeMirror-gutter {
|
|
5611
|
-
white-space: normal;
|
|
5612
|
-
height: 100%;
|
|
5613
|
-
display: inline-block;
|
|
5614
|
-
vertical-align: top;
|
|
5615
|
-
margin-bottom: -50px;
|
|
5616
|
-
}
|
|
5617
|
-
.CodeMirror-gutter-wrapper {
|
|
5618
|
-
position: absolute;
|
|
5619
|
-
z-index: 4;
|
|
5620
|
-
background: none !important;
|
|
5621
|
-
border: none !important;
|
|
5622
|
-
}
|
|
5623
|
-
.CodeMirror-gutter-background {
|
|
5624
|
-
position: absolute;
|
|
5625
|
-
top: 0;
|
|
5626
|
-
bottom: 0;
|
|
5627
|
-
z-index: 4;
|
|
5628
|
-
}
|
|
5629
|
-
.CodeMirror-gutter-elt {
|
|
5630
|
-
position: absolute;
|
|
5631
|
-
cursor: default;
|
|
5632
|
-
z-index: 4;
|
|
5633
|
-
}
|
|
5634
|
-
.CodeMirror-gutter-wrapper ::selection {
|
|
5635
|
-
background-color: transparent;
|
|
5636
|
-
}
|
|
5637
|
-
.CodeMirror-gutter-wrapper ::-moz-selection {
|
|
5638
|
-
background-color: transparent;
|
|
5639
|
-
}
|
|
5640
|
-
.CodeMirror-lines {
|
|
5641
|
-
cursor: text;
|
|
5642
|
-
min-height: 1px;
|
|
5643
|
-
}
|
|
5644
|
-
.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
|
|
5645
|
-
-moz-border-radius: 0;
|
|
5646
|
-
-webkit-border-radius: 0;
|
|
5647
|
-
border-radius: 0;
|
|
5648
|
-
border-width: 0;
|
|
5649
|
-
background: transparent;
|
|
5650
|
-
font-family: inherit;
|
|
5651
|
-
font-size: inherit;
|
|
5652
|
-
margin: 0;
|
|
5653
|
-
white-space: pre;
|
|
5654
|
-
word-wrap: normal;
|
|
5655
|
-
line-height: inherit;
|
|
5656
|
-
color: inherit;
|
|
5657
|
-
z-index: 2;
|
|
5658
|
-
position: relative;
|
|
5659
|
-
overflow: visible;
|
|
5660
|
-
-webkit-tap-highlight-color: transparent;
|
|
5661
|
-
-webkit-font-variant-ligatures: contextual;
|
|
5662
|
-
font-variant-ligatures: contextual;
|
|
5663
|
-
}
|
|
5664
|
-
.CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like {
|
|
5665
|
-
word-wrap: break-word;
|
|
5666
|
-
white-space: pre-wrap;
|
|
5667
|
-
word-break: normal;
|
|
5668
|
-
}
|
|
5669
|
-
.CodeMirror-linebackground {
|
|
5670
|
-
position: absolute;
|
|
5671
|
-
left: 0;
|
|
5672
|
-
right: 0;
|
|
5673
|
-
top: 0;
|
|
5674
|
-
bottom: 0;
|
|
5675
|
-
z-index: 0;
|
|
5676
|
-
}
|
|
5677
|
-
.CodeMirror-linewidget {
|
|
5678
|
-
position: relative;
|
|
5679
|
-
z-index: 2;
|
|
5680
|
-
padding: 0.1px;
|
|
5681
|
-
}
|
|
5682
|
-
.CodeMirror-rtl pre {
|
|
5683
|
-
direction: rtl;
|
|
5684
|
-
}
|
|
5685
|
-
.CodeMirror-code {
|
|
5686
|
-
outline: none;
|
|
5687
|
-
}
|
|
5688
|
-
.CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber {
|
|
5689
|
-
-moz-box-sizing: content-box;
|
|
5690
|
-
box-sizing: content-box;
|
|
5691
|
-
}
|
|
5692
|
-
.CodeMirror-measure {
|
|
5693
|
-
position: absolute;
|
|
5694
|
-
width: 100%;
|
|
5695
|
-
height: 0;
|
|
5696
|
-
overflow: hidden;
|
|
5697
|
-
visibility: hidden;
|
|
5698
|
-
}
|
|
5699
|
-
.CodeMirror-cursor {
|
|
5700
|
-
position: absolute;
|
|
5701
|
-
pointer-events: none;
|
|
5702
|
-
}
|
|
5703
|
-
.CodeMirror-measure pre {
|
|
5704
|
-
position: static;
|
|
5705
|
-
}
|
|
5706
|
-
div.CodeMirror-cursors {
|
|
5707
|
-
visibility: hidden;
|
|
5708
|
-
position: relative;
|
|
5709
|
-
z-index: 3;
|
|
5710
|
-
}
|
|
5711
|
-
div.CodeMirror-dragcursors {
|
|
5712
|
-
visibility: visible;
|
|
5713
|
-
}
|
|
5714
|
-
.CodeMirror-focused div.CodeMirror-cursors {
|
|
5715
|
-
visibility: visible;
|
|
5716
|
-
}
|
|
5717
|
-
.CodeMirror-selected {
|
|
5718
|
-
background: #d9d9d9;
|
|
5719
|
-
}
|
|
5720
|
-
.CodeMirror-focused .CodeMirror-selected {
|
|
5721
|
-
background: #d7d4f0;
|
|
5722
|
-
}
|
|
5723
|
-
.CodeMirror-crosshair {
|
|
5724
|
-
cursor: crosshair;
|
|
5725
|
-
}
|
|
5726
|
-
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
|
|
5727
|
-
background: #d7d4f0;
|
|
5728
|
-
}
|
|
5729
|
-
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
|
|
5730
|
-
background: #d7d4f0;
|
|
5731
|
-
}
|
|
5732
|
-
.cm-searching {
|
|
5733
|
-
background-color: #ffa;
|
|
5734
|
-
background-color: rgba(255, 255, 0, .4);
|
|
5735
|
-
}
|
|
5736
|
-
.cm-force-border {
|
|
5737
|
-
padding-right: .1px;
|
|
5738
|
-
}
|
|
5739
|
-
@media print {
|
|
5740
|
-
.CodeMirror div.CodeMirror-cursors {
|
|
5741
|
-
visibility: hidden;
|
|
5742
|
-
}
|
|
5743
|
-
}
|
|
5744
|
-
.cm-tab-wrap-hack:after {
|
|
5745
|
-
content: '';
|
|
5746
|
-
}
|
|
5747
|
-
span.CodeMirror-selectedtext {
|
|
5748
|
-
background: none;
|
|
5749
|
-
}
|
|
5750
5401
|
.CodeMirror {
|
|
5751
5402
|
min-height: auto;
|
|
5752
5403
|
border-bottom-right-radius: var(--radius-lg);
|
|
@@ -9337,36 +8988,6 @@
|
|
|
9337
8988
|
font-weight: var(--font-weight-medium);
|
|
9338
8989
|
color: var(--color-content-secondary);
|
|
9339
8990
|
}
|
|
9340
|
-
.tippy-box[data-theme~='basic'] {
|
|
9341
|
-
border-radius: var(--radius-md);
|
|
9342
|
-
border-style: var(--tw-border-style);
|
|
9343
|
-
border-width: 1px;
|
|
9344
|
-
border-color: var(--color-neutral-200);
|
|
9345
|
-
background-color: var(--color-background);
|
|
9346
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
|
|
9347
|
-
}
|
|
9348
|
-
.tippy-box[data-theme~='basic'] .tippy-content {
|
|
9349
|
-
padding-inline: calc(var(--spacing) * 2);
|
|
9350
|
-
padding-block: calc(var(--spacing) * 1);
|
|
9351
|
-
font-family: var(--font-sans);
|
|
9352
|
-
font-size: var(--text-sm);
|
|
9353
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
9354
|
-
--tw-leading: calc(var(--spacing) * 5);
|
|
9355
|
-
line-height: calc(var(--spacing) * 5);
|
|
9356
|
-
--tw-font-weight: var(--font-weight-normal);
|
|
9357
|
-
font-weight: var(--font-weight-normal);
|
|
9358
|
-
color: var(--color-content);
|
|
9359
|
-
}
|
|
9360
|
-
.tippy-box[data-theme~='basic'] .tippy-arrow {
|
|
9361
|
-
display: none;
|
|
9362
|
-
}
|
|
9363
|
-
.dark .tippy-box[data-theme~='basic'] {
|
|
9364
|
-
border-color: var(--color-secondary);
|
|
9365
|
-
background-color: var(--color-background);
|
|
9366
|
-
}
|
|
9367
|
-
.dark .tippy-box[data-theme~='basic'] .tippy-content {
|
|
9368
|
-
color: var(--color-content);
|
|
9369
|
-
}
|
|
9370
8991
|
.modal {
|
|
9371
8992
|
--modal-height-sm: 24rem;
|
|
9372
8993
|
--modal-height-md: 28rem;
|
|
@@ -3513,3 +3513,382 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
3513
3513
|
flex-basis: 50%;
|
|
3514
3514
|
max-width: 50%;
|
|
3515
3515
|
}
|
|
3516
|
+
.CodeMirror {
|
|
3517
|
+
font-family: monospace;
|
|
3518
|
+
height: 300px;
|
|
3519
|
+
color: black;
|
|
3520
|
+
direction: ltr;
|
|
3521
|
+
}
|
|
3522
|
+
.CodeMirror-lines {
|
|
3523
|
+
padding: 4px 0;
|
|
3524
|
+
}
|
|
3525
|
+
.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
|
|
3526
|
+
padding: 0 4px;
|
|
3527
|
+
}
|
|
3528
|
+
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
3529
|
+
background-color: white;
|
|
3530
|
+
}
|
|
3531
|
+
.CodeMirror-gutters {
|
|
3532
|
+
border-right: 1px solid #ddd;
|
|
3533
|
+
background-color: #f7f7f7;
|
|
3534
|
+
white-space: nowrap;
|
|
3535
|
+
}
|
|
3536
|
+
.CodeMirror-linenumber {
|
|
3537
|
+
padding: 0 3px 0 5px;
|
|
3538
|
+
min-width: 20px;
|
|
3539
|
+
text-align: right;
|
|
3540
|
+
color: #999;
|
|
3541
|
+
white-space: nowrap;
|
|
3542
|
+
}
|
|
3543
|
+
.CodeMirror-guttermarker {
|
|
3544
|
+
color: black;
|
|
3545
|
+
}
|
|
3546
|
+
.CodeMirror-guttermarker-subtle {
|
|
3547
|
+
color: #999;
|
|
3548
|
+
}
|
|
3549
|
+
.CodeMirror-cursor {
|
|
3550
|
+
border-left: 1px solid black;
|
|
3551
|
+
border-right: none;
|
|
3552
|
+
width: 0;
|
|
3553
|
+
}
|
|
3554
|
+
.CodeMirror div.CodeMirror-secondarycursor {
|
|
3555
|
+
border-left: 1px solid silver;
|
|
3556
|
+
}
|
|
3557
|
+
.cm-fat-cursor .CodeMirror-cursor {
|
|
3558
|
+
width: auto;
|
|
3559
|
+
border: 0 !important;
|
|
3560
|
+
background: #7e7;
|
|
3561
|
+
}
|
|
3562
|
+
.cm-fat-cursor div.CodeMirror-cursors {
|
|
3563
|
+
z-index: 1;
|
|
3564
|
+
}
|
|
3565
|
+
.cm-fat-cursor .CodeMirror-line::selection, .cm-fat-cursor .CodeMirror-line > span::selection, .cm-fat-cursor .CodeMirror-line > span > span::selection {
|
|
3566
|
+
background: transparent;
|
|
3567
|
+
}
|
|
3568
|
+
.cm-fat-cursor .CodeMirror-line::-moz-selection, .cm-fat-cursor .CodeMirror-line > span::-moz-selection, .cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
|
|
3569
|
+
background: transparent;
|
|
3570
|
+
}
|
|
3571
|
+
.cm-fat-cursor {
|
|
3572
|
+
caret-color: transparent;
|
|
3573
|
+
}
|
|
3574
|
+
@-moz-keyframes blink {
|
|
3575
|
+
50% {
|
|
3576
|
+
background-color: transparent;
|
|
3577
|
+
}
|
|
3578
|
+
}
|
|
3579
|
+
@-webkit-keyframes blink {
|
|
3580
|
+
50% {
|
|
3581
|
+
background-color: transparent;
|
|
3582
|
+
}
|
|
3583
|
+
}
|
|
3584
|
+
@keyframes blink {
|
|
3585
|
+
50% {
|
|
3586
|
+
background-color: transparent;
|
|
3587
|
+
}
|
|
3588
|
+
}
|
|
3589
|
+
.cm-tab {
|
|
3590
|
+
display: inline-block;
|
|
3591
|
+
text-decoration: inherit;
|
|
3592
|
+
}
|
|
3593
|
+
.CodeMirror-rulers {
|
|
3594
|
+
position: absolute;
|
|
3595
|
+
left: 0;
|
|
3596
|
+
right: 0;
|
|
3597
|
+
top: -50px;
|
|
3598
|
+
bottom: 0;
|
|
3599
|
+
overflow: hidden;
|
|
3600
|
+
}
|
|
3601
|
+
.CodeMirror-ruler {
|
|
3602
|
+
border-left: 1px solid #ccc;
|
|
3603
|
+
top: 0;
|
|
3604
|
+
bottom: 0;
|
|
3605
|
+
position: absolute;
|
|
3606
|
+
}
|
|
3607
|
+
.cm-s-default .cm-header {
|
|
3608
|
+
color: blue;
|
|
3609
|
+
}
|
|
3610
|
+
.cm-s-default .cm-quote {
|
|
3611
|
+
color: #090;
|
|
3612
|
+
}
|
|
3613
|
+
.cm-negative {
|
|
3614
|
+
color: #d44;
|
|
3615
|
+
}
|
|
3616
|
+
.cm-positive {
|
|
3617
|
+
color: #292;
|
|
3618
|
+
}
|
|
3619
|
+
.cm-header, .cm-strong {
|
|
3620
|
+
font-weight: bold;
|
|
3621
|
+
}
|
|
3622
|
+
.cm-em {
|
|
3623
|
+
font-style: italic;
|
|
3624
|
+
}
|
|
3625
|
+
.cm-link {
|
|
3626
|
+
text-decoration: underline;
|
|
3627
|
+
}
|
|
3628
|
+
.cm-strikethrough {
|
|
3629
|
+
text-decoration: line-through;
|
|
3630
|
+
}
|
|
3631
|
+
.cm-s-default .cm-keyword {
|
|
3632
|
+
color: #708;
|
|
3633
|
+
}
|
|
3634
|
+
.cm-s-default .cm-atom {
|
|
3635
|
+
color: #219;
|
|
3636
|
+
}
|
|
3637
|
+
.cm-s-default .cm-number {
|
|
3638
|
+
color: #164;
|
|
3639
|
+
}
|
|
3640
|
+
.cm-s-default .cm-def {
|
|
3641
|
+
color: #00f;
|
|
3642
|
+
}
|
|
3643
|
+
.cm-s-default .cm-variable-2 {
|
|
3644
|
+
color: #05a;
|
|
3645
|
+
}
|
|
3646
|
+
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {
|
|
3647
|
+
color: #085;
|
|
3648
|
+
}
|
|
3649
|
+
.cm-s-default .cm-comment {
|
|
3650
|
+
color: #a50;
|
|
3651
|
+
}
|
|
3652
|
+
.cm-s-default .cm-string {
|
|
3653
|
+
color: #a11;
|
|
3654
|
+
}
|
|
3655
|
+
.cm-s-default .cm-string-2 {
|
|
3656
|
+
color: #f50;
|
|
3657
|
+
}
|
|
3658
|
+
.cm-s-default .cm-meta {
|
|
3659
|
+
color: #555;
|
|
3660
|
+
}
|
|
3661
|
+
.cm-s-default .cm-qualifier {
|
|
3662
|
+
color: #555;
|
|
3663
|
+
}
|
|
3664
|
+
.cm-s-default .cm-builtin {
|
|
3665
|
+
color: #30a;
|
|
3666
|
+
}
|
|
3667
|
+
.cm-s-default .cm-bracket {
|
|
3668
|
+
color: #997;
|
|
3669
|
+
}
|
|
3670
|
+
.cm-s-default .cm-tag {
|
|
3671
|
+
color: #170;
|
|
3672
|
+
}
|
|
3673
|
+
.cm-s-default .cm-attribute {
|
|
3674
|
+
color: #00c;
|
|
3675
|
+
}
|
|
3676
|
+
.cm-s-default .cm-hr {
|
|
3677
|
+
color: #999;
|
|
3678
|
+
}
|
|
3679
|
+
.cm-s-default .cm-link {
|
|
3680
|
+
color: #00c;
|
|
3681
|
+
}
|
|
3682
|
+
.cm-s-default .cm-error {
|
|
3683
|
+
color: #f00;
|
|
3684
|
+
}
|
|
3685
|
+
.cm-invalidchar {
|
|
3686
|
+
color: #f00;
|
|
3687
|
+
}
|
|
3688
|
+
.CodeMirror-composing {
|
|
3689
|
+
border-bottom: 2px solid;
|
|
3690
|
+
}
|
|
3691
|
+
div.CodeMirror span.CodeMirror-matchingbracket {
|
|
3692
|
+
color: #0b0;
|
|
3693
|
+
}
|
|
3694
|
+
div.CodeMirror span.CodeMirror-nonmatchingbracket {
|
|
3695
|
+
color: #a22;
|
|
3696
|
+
}
|
|
3697
|
+
.CodeMirror-matchingtag {
|
|
3698
|
+
background: rgba(255, 150, 0, .3);
|
|
3699
|
+
}
|
|
3700
|
+
.CodeMirror-activeline-background {
|
|
3701
|
+
background: #e8f2ff;
|
|
3702
|
+
}
|
|
3703
|
+
.CodeMirror {
|
|
3704
|
+
position: relative;
|
|
3705
|
+
overflow: hidden;
|
|
3706
|
+
background: white;
|
|
3707
|
+
}
|
|
3708
|
+
.CodeMirror-scroll {
|
|
3709
|
+
overflow: scroll !important;
|
|
3710
|
+
margin-bottom: -50px;
|
|
3711
|
+
margin-right: -50px;
|
|
3712
|
+
padding-bottom: 50px;
|
|
3713
|
+
height: 100%;
|
|
3714
|
+
outline: none;
|
|
3715
|
+
position: relative;
|
|
3716
|
+
z-index: 0;
|
|
3717
|
+
}
|
|
3718
|
+
.CodeMirror-sizer {
|
|
3719
|
+
position: relative;
|
|
3720
|
+
border-right: 50px solid transparent;
|
|
3721
|
+
}
|
|
3722
|
+
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
3723
|
+
position: absolute;
|
|
3724
|
+
z-index: 6;
|
|
3725
|
+
display: none;
|
|
3726
|
+
outline: none;
|
|
3727
|
+
}
|
|
3728
|
+
.CodeMirror-vscrollbar {
|
|
3729
|
+
right: 0;
|
|
3730
|
+
top: 0;
|
|
3731
|
+
overflow-x: hidden;
|
|
3732
|
+
overflow-y: scroll;
|
|
3733
|
+
}
|
|
3734
|
+
.CodeMirror-hscrollbar {
|
|
3735
|
+
bottom: 0;
|
|
3736
|
+
left: 0;
|
|
3737
|
+
overflow-y: hidden;
|
|
3738
|
+
overflow-x: scroll;
|
|
3739
|
+
}
|
|
3740
|
+
.CodeMirror-scrollbar-filler {
|
|
3741
|
+
right: 0;
|
|
3742
|
+
bottom: 0;
|
|
3743
|
+
}
|
|
3744
|
+
.CodeMirror-gutter-filler {
|
|
3745
|
+
left: 0;
|
|
3746
|
+
bottom: 0;
|
|
3747
|
+
}
|
|
3748
|
+
.CodeMirror-gutters {
|
|
3749
|
+
position: absolute;
|
|
3750
|
+
left: 0;
|
|
3751
|
+
top: 0;
|
|
3752
|
+
min-height: 100%;
|
|
3753
|
+
z-index: 3;
|
|
3754
|
+
}
|
|
3755
|
+
.CodeMirror-gutter {
|
|
3756
|
+
white-space: normal;
|
|
3757
|
+
height: 100%;
|
|
3758
|
+
display: inline-block;
|
|
3759
|
+
vertical-align: top;
|
|
3760
|
+
margin-bottom: -50px;
|
|
3761
|
+
}
|
|
3762
|
+
.CodeMirror-gutter-wrapper {
|
|
3763
|
+
position: absolute;
|
|
3764
|
+
z-index: 4;
|
|
3765
|
+
background: none !important;
|
|
3766
|
+
border: none !important;
|
|
3767
|
+
}
|
|
3768
|
+
.CodeMirror-gutter-background {
|
|
3769
|
+
position: absolute;
|
|
3770
|
+
top: 0;
|
|
3771
|
+
bottom: 0;
|
|
3772
|
+
z-index: 4;
|
|
3773
|
+
}
|
|
3774
|
+
.CodeMirror-gutter-elt {
|
|
3775
|
+
position: absolute;
|
|
3776
|
+
cursor: default;
|
|
3777
|
+
z-index: 4;
|
|
3778
|
+
}
|
|
3779
|
+
.CodeMirror-gutter-wrapper ::selection {
|
|
3780
|
+
background-color: transparent;
|
|
3781
|
+
}
|
|
3782
|
+
.CodeMirror-gutter-wrapper ::-moz-selection {
|
|
3783
|
+
background-color: transparent;
|
|
3784
|
+
}
|
|
3785
|
+
.CodeMirror-lines {
|
|
3786
|
+
cursor: text;
|
|
3787
|
+
min-height: 1px;
|
|
3788
|
+
}
|
|
3789
|
+
.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
|
|
3790
|
+
-moz-border-radius: 0;
|
|
3791
|
+
-webkit-border-radius: 0;
|
|
3792
|
+
border-radius: 0;
|
|
3793
|
+
border-width: 0;
|
|
3794
|
+
background: transparent;
|
|
3795
|
+
font-family: inherit;
|
|
3796
|
+
font-size: inherit;
|
|
3797
|
+
margin: 0;
|
|
3798
|
+
white-space: pre;
|
|
3799
|
+
word-wrap: normal;
|
|
3800
|
+
line-height: inherit;
|
|
3801
|
+
color: inherit;
|
|
3802
|
+
z-index: 2;
|
|
3803
|
+
position: relative;
|
|
3804
|
+
overflow: visible;
|
|
3805
|
+
-webkit-tap-highlight-color: transparent;
|
|
3806
|
+
-webkit-font-variant-ligatures: contextual;
|
|
3807
|
+
font-variant-ligatures: contextual;
|
|
3808
|
+
}
|
|
3809
|
+
.CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like {
|
|
3810
|
+
word-wrap: break-word;
|
|
3811
|
+
white-space: pre-wrap;
|
|
3812
|
+
word-break: normal;
|
|
3813
|
+
}
|
|
3814
|
+
.CodeMirror-linebackground {
|
|
3815
|
+
position: absolute;
|
|
3816
|
+
left: 0;
|
|
3817
|
+
right: 0;
|
|
3818
|
+
top: 0;
|
|
3819
|
+
bottom: 0;
|
|
3820
|
+
z-index: 0;
|
|
3821
|
+
}
|
|
3822
|
+
.CodeMirror-linewidget {
|
|
3823
|
+
position: relative;
|
|
3824
|
+
z-index: 2;
|
|
3825
|
+
padding: 0.1px;
|
|
3826
|
+
}
|
|
3827
|
+
.CodeMirror-rtl pre {
|
|
3828
|
+
direction: rtl;
|
|
3829
|
+
}
|
|
3830
|
+
.CodeMirror-code {
|
|
3831
|
+
outline: none;
|
|
3832
|
+
}
|
|
3833
|
+
.CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber {
|
|
3834
|
+
-moz-box-sizing: content-box;
|
|
3835
|
+
box-sizing: content-box;
|
|
3836
|
+
}
|
|
3837
|
+
.CodeMirror-measure {
|
|
3838
|
+
position: absolute;
|
|
3839
|
+
width: 100%;
|
|
3840
|
+
height: 0;
|
|
3841
|
+
overflow: hidden;
|
|
3842
|
+
visibility: hidden;
|
|
3843
|
+
}
|
|
3844
|
+
.CodeMirror-cursor {
|
|
3845
|
+
position: absolute;
|
|
3846
|
+
pointer-events: none;
|
|
3847
|
+
}
|
|
3848
|
+
.CodeMirror-measure pre {
|
|
3849
|
+
position: static;
|
|
3850
|
+
}
|
|
3851
|
+
div.CodeMirror-cursors {
|
|
3852
|
+
visibility: hidden;
|
|
3853
|
+
position: relative;
|
|
3854
|
+
z-index: 3;
|
|
3855
|
+
}
|
|
3856
|
+
div.CodeMirror-dragcursors {
|
|
3857
|
+
visibility: visible;
|
|
3858
|
+
}
|
|
3859
|
+
.CodeMirror-focused div.CodeMirror-cursors {
|
|
3860
|
+
visibility: visible;
|
|
3861
|
+
}
|
|
3862
|
+
.CodeMirror-selected {
|
|
3863
|
+
background: #d9d9d9;
|
|
3864
|
+
}
|
|
3865
|
+
.CodeMirror-focused .CodeMirror-selected {
|
|
3866
|
+
background: #d7d4f0;
|
|
3867
|
+
}
|
|
3868
|
+
.CodeMirror-crosshair {
|
|
3869
|
+
cursor: crosshair;
|
|
3870
|
+
}
|
|
3871
|
+
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
|
|
3872
|
+
background: #d7d4f0;
|
|
3873
|
+
}
|
|
3874
|
+
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
|
|
3875
|
+
background: #d7d4f0;
|
|
3876
|
+
}
|
|
3877
|
+
.cm-searching {
|
|
3878
|
+
background-color: #ffa;
|
|
3879
|
+
background-color: rgba(255, 255, 0, .4);
|
|
3880
|
+
}
|
|
3881
|
+
.cm-force-border {
|
|
3882
|
+
padding-right: .1px;
|
|
3883
|
+
}
|
|
3884
|
+
@media print {
|
|
3885
|
+
.CodeMirror div.CodeMirror-cursors {
|
|
3886
|
+
visibility: hidden;
|
|
3887
|
+
}
|
|
3888
|
+
}
|
|
3889
|
+
.cm-tab-wrap-hack:after {
|
|
3890
|
+
content: '';
|
|
3891
|
+
}
|
|
3892
|
+
span.CodeMirror-selectedtext {
|
|
3893
|
+
background: none;
|
|
3894
|
+
}
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
@custom-variant hover (&:hover);
|
|
85
85
|
|
|
86
86
|
@import "./css/components/ui/checkbox.css";
|
|
87
|
+
@import "./css/components/tooltip.css";
|
|
87
88
|
|
|
88
89
|
@layer components {
|
|
89
90
|
@import "./css/fonts.css";
|
|
@@ -135,7 +136,6 @@
|
|
|
135
136
|
@import "./css/components/color_scheme_switcher.css";
|
|
136
137
|
@import "./css/components/discreet_information.css";
|
|
137
138
|
@import "./css/components/hotkey.css";
|
|
138
|
-
@import "./css/components/tooltip.css";
|
|
139
139
|
@import "./css/components/modal.css";
|
|
140
140
|
@import "./css/css-animations.css";
|
|
141
141
|
@import "./css/sidebar.css";
|
|
@@ -5,4 +5,5 @@
|
|
|
5
5
|
@import "./../../../node_modules/@algolia/autocomplete-theme-classic/dist/theme.css";
|
|
6
6
|
@import "./../../../node_modules/@yaireo/tagify/dist/tagify.css";
|
|
7
7
|
@import "./../../../node_modules/trix/dist/trix.css";
|
|
8
|
+
@import "./../../../node_modules/codemirror/lib/codemirror.css";
|
|
8
9
|
|
data/lib/avo/version.rb
CHANGED