avo 2.13.2.pre.2 → 2.13.3.pre.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile.lock +5 -3
- data/app/assets/stylesheets/avo.css +1 -1
- data/app/assets/stylesheets/css/fields/progress.css +3 -3
- data/app/assets/stylesheets/css/pagination.css +4 -0
- data/app/assets/stylesheets/css/search.css +1 -1
- data/app/assets/stylesheets/css/sidebar.css +1 -1
- data/app/assets/stylesheets/css/tags.css +0 -7
- data/app/assets/svgs/arrow-circle-right.svg +1 -1
- data/app/assets/svgs/arrow-down.svg +1 -1
- data/app/assets/svgs/arrow-up.svg +1 -1
- data/app/assets/svgs/bell.svg +1 -1
- data/app/assets/svgs/chevron-right.svg +1 -1
- data/app/assets/svgs/exclamation.svg +1 -1
- data/app/assets/svgs/failed_to_load.svg +5 -4
- data/app/assets/svgs/grid-empty-state.svg +11 -10
- data/app/assets/svgs/information-circle.svg +1 -1
- data/app/assets/svgs/logout.svg +1 -1
- data/app/assets/svgs/menu.svg +1 -1
- data/app/assets/svgs/play.svg +1 -1
- data/app/assets/svgs/switch-vertical.svg +1 -1
- data/app/assets/svgs/table-empty-state.svg +12 -11
- data/app/assets/svgs/user-circle.svg +1 -1
- data/app/assets/svgs/x.svg +1 -1
- data/app/components/avo/actions_component.html.erb +2 -2
- data/app/components/avo/actions_component.rb +1 -1
- data/app/components/avo/button_component.html.erb +1 -0
- data/app/components/avo/button_component.rb +3 -3
- data/app/components/avo/card_component.html.erb +12 -11
- data/app/components/avo/common_field_wrapper_component.html.erb +1 -1
- data/app/components/avo/fields/belongs_to_field/edit_component.rb +1 -1
- data/app/components/avo/fields/boolean_field/edit_component.html.erb +2 -2
- data/app/components/avo/fields/boolean_group_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/code_field/edit_component.html.erb +2 -2
- data/app/components/avo/fields/country_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/date_field/edit_component.html.erb +2 -2
- data/app/components/avo/fields/date_time_field/edit_component.html.erb +2 -2
- data/app/components/avo/fields/external_image_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/file_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/files_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/has_one_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/markdown_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/markdown_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/number_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/password_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/progress_bar_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/progress_bar_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/progress_bar_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/select_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/status_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/tags_field/edit_component.html.erb +3 -3
- data/app/components/avo/fields/tags_field/show_component.rb +0 -2
- data/app/components/avo/fields/text_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/textarea_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/trix_field/edit_component.html.erb +1 -1
- data/app/components/avo/profile_item_component.html.erb +1 -1
- data/app/components/avo/resource_component.rb +23 -0
- data/app/components/avo/tab_group_component.html.erb +1 -1
- data/app/components/avo/tab_switcher_component.rb +2 -2
- data/app/components/avo/views/resource_edit_component.html.erb +3 -1
- data/app/components/avo/views/resource_edit_component.rb +1 -1
- data/app/components/avo/views/resource_index_component.html.erb +2 -2
- data/app/components/avo/views/resource_index_component.rb +17 -23
- data/app/components/avo/views/resource_show_component.html.erb +7 -4
- data/app/components/avo/views/resource_show_component.rb +8 -0
- data/app/controllers/avo/base_controller.rb +87 -33
- data/app/controllers/avo/search_controller.rb +57 -20
- data/app/helpers/avo/actions_helper.rb +4 -0
- data/app/helpers/avo/application_helper.rb +36 -44
- data/app/helpers/avo/attachments_helper.rb +4 -0
- data/app/helpers/avo/resources_helper.rb +2 -2
- data/app/javascript/avo.js +1 -0
- data/app/javascript/js/controllers/fields/trix_field_controller.js +3 -4
- data/app/javascript/js/controllers/item_selector_controller.js +1 -1
- data/app/javascript/js/controllers/menu_controller.js +2 -2
- data/app/javascript/js/controllers/search_controller.js +42 -15
- data/app/views/avo/associations/new.html.erb +3 -2
- data/app/views/avo/base/_multiple_select_filter.html.erb +1 -1
- data/app/views/avo/base/_text_filter.html.erb +1 -1
- data/app/views/avo/partials/_header.html.erb +1 -1
- data/app/views/avo/partials/_logo.html.erb +2 -2
- data/app/views/avo/partials/_resource_search.html.erb +6 -0
- data/app/views/avo/private/_links_and_buttons.html.erb +1 -1
- data/app/views/avo/private/design.html.erb +3 -3
- data/app/views/kaminari/_first_page.html.erb +3 -0
- data/app/views/kaminari/_last_page.html.erb +3 -0
- data/app/views/kaminari/_next_page.html.erb +9 -0
- data/app/views/kaminari/_page.html.erb +12 -0
- data/app/views/kaminari/_prev_page.html.erb +9 -0
- data/app/views/layouts/avo/application.html.erb +1 -1
- data/avo.gemspec +1 -0
- data/lib/avo/concerns/has_editable_controls.rb +1 -1
- data/lib/avo/configuration.rb +0 -5
- data/lib/avo/dashboards/chartkick_card.rb +1 -1
- data/lib/avo/engine.rb +3 -0
- data/lib/avo/fields/base_field.rb +2 -1
- data/lib/avo/fields/concerns/is_readonly.rb +17 -0
- data/lib/avo/fields/has_base_field.rb +2 -0
- data/lib/avo/hosts/search_scope_host.rb +7 -0
- data/lib/avo/licensing/pro_license.rb +0 -1
- data/lib/avo/version.rb +1 -1
- data/lib/generators/avo/templates/field/components/edit_component.html.erb.tt +1 -1
- data/lib/generators/avo/templates/initializer/avo.tt +1 -15
- data/lib/generators/avo/templates/resource/resource.tt +1 -1
- data/public/avo-assets/avo.css +248 -286
- data/public/avo-assets/avo.js +47 -47
- data/public/avo-assets/avo.js.map +2 -2
- metadata +25 -3
- data/app/views/avo/partials/_branding.html.erb +0 -5
- data/lib/avo/configuration/branding.rb +0 -65
data/public/avo-assets/avo.css
CHANGED
@@ -3832,7 +3832,8 @@ select{
|
|
3832
3832
|
}
|
3833
3833
|
|
3834
3834
|
a{
|
3835
|
-
|
3835
|
+
--tw-text-opacity:1;
|
3836
|
+
color:rgb(8 134 222 / var(--tw-text-opacity))
|
3836
3837
|
}
|
3837
3838
|
|
3838
3839
|
*, ::before, ::after{
|
@@ -4229,6 +4230,11 @@ svg.tea #steamR {
|
|
4229
4230
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
4230
4231
|
}
|
4231
4232
|
|
4233
|
+
.pagy-nav .page a:focus,.pagy-nav .page.active:focus,.pagy-nav .page.prev.disabled:focus,.pagy-nav .page.next.disabled:focus,.pagy-nav-js .page a:focus,.pagy-combo-nav-js .page a:focus,.pagy-combo-nav-js .pagy-combo-input a:focus{
|
4234
|
+
--tw-border-opacity:1;
|
4235
|
+
border-color:rgb(107 182 235 / var(--tw-border-opacity))
|
4236
|
+
}
|
4237
|
+
|
4232
4238
|
.pagy-nav .page a:hover,.pagy-nav .page.active:hover,.pagy-nav .page.prev.disabled:hover,.pagy-nav .page.next.disabled:hover,.pagy-nav-js .page a:hover,.pagy-combo-nav-js .page a:hover,.pagy-combo-nav-js .pagy-combo-input a:hover{
|
4233
4239
|
--tw-bg-opacity:1;
|
4234
4240
|
background-color:rgb(214 216 220 / var(--tw-bg-opacity))
|
@@ -4478,7 +4484,8 @@ button.aa-DetachedCancelButton {
|
|
4478
4484
|
}
|
4479
4485
|
|
4480
4486
|
.aa-DetachedContainer .aa-Source .aa-List .aa-Item[aria-selected=true]{
|
4481
|
-
|
4487
|
+
--tw-bg-opacity:1;
|
4488
|
+
background-color:rgb(8 134 222 / var(--tw-bg-opacity))
|
4482
4489
|
}
|
4483
4490
|
|
4484
4491
|
.aa-DetachedContainer .aa-Source .aa-List .aa-Item[aria-selected=true]{
|
@@ -4569,8 +4576,10 @@ body.os-pc .mac-styled-scrollbar:hover::-webkit-scrollbar-thumb {
|
|
4569
4576
|
}
|
4570
4577
|
|
4571
4578
|
.application-sidebar .active:hover, .application-sidebar .active{
|
4572
|
-
|
4573
|
-
color:rgb(var(--
|
4579
|
+
--tw-bg-opacity:1;
|
4580
|
+
background-color:rgb(206 231 248 / var(--tw-bg-opacity));
|
4581
|
+
--tw-text-opacity:1;
|
4582
|
+
color:rgb(8 134 222 / var(--tw-text-opacity))
|
4574
4583
|
}
|
4575
4584
|
|
4576
4585
|
/* remove the left padding. */
|
@@ -4628,15 +4637,6 @@ body.os-pc .mac-styled-scrollbar:hover::-webkit-scrollbar-thumb {
|
|
4628
4637
|
|
4629
4638
|
tags.tagify {
|
4630
4639
|
--tag-inset-shadow-size: 3em;
|
4631
|
-
--tags-border-color: rgb(var(--color-primary-500));
|
4632
|
-
--tags-hover-border-color: rgb(var(--color-primary-500));
|
4633
|
-
}
|
4634
|
-
|
4635
|
-
.tagify__dropdown {
|
4636
|
-
--tagify-dd-color-primary: rgb(var(--color-primary-500));
|
4637
|
-
}
|
4638
|
-
|
4639
|
-
tags.tagify{
|
4640
4640
|
padding:0px !important;
|
4641
4641
|
}
|
4642
4642
|
|
@@ -5574,7 +5574,7 @@ progress{
|
|
5574
5574
|
border-radius:0.25rem;
|
5575
5575
|
border-width:1px;
|
5576
5576
|
--tw-border-opacity:1;
|
5577
|
-
border-color:rgb(
|
5577
|
+
border-color:rgb(145 151 161 / var(--tw-border-opacity));
|
5578
5578
|
--tw-bg-opacity:1;
|
5579
5579
|
background-color:rgb(255 255 255 / var(--tw-bg-opacity));
|
5580
5580
|
--tw-shadow:inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
@@ -5596,13 +5596,15 @@ progress[value]::-webkit-progress-bar{
|
|
5596
5596
|
|
5597
5597
|
progress[value]::-webkit-progress-value{
|
5598
5598
|
border-radius:0.25rem;
|
5599
|
-
|
5599
|
+
--tw-bg-opacity:1;
|
5600
|
+
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
5600
5601
|
}
|
5601
5602
|
|
5602
5603
|
progress[value]::-moz-progress-bar{
|
5603
5604
|
appearance:none;
|
5604
5605
|
border-radius:0.25rem;
|
5605
|
-
|
5606
|
+
--tw-bg-opacity:1;
|
5607
|
+
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
5606
5608
|
}
|
5607
5609
|
|
5608
5610
|
/*
|
@@ -6433,6 +6435,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6433
6435
|
margin-top:0.5rem
|
6434
6436
|
}
|
6435
6437
|
|
6438
|
+
.ml-3{
|
6439
|
+
margin-left:0.75rem
|
6440
|
+
}
|
6441
|
+
|
6442
|
+
.-ml-px{
|
6443
|
+
margin-left:-1px
|
6444
|
+
}
|
6445
|
+
|
6436
6446
|
.mt-4{
|
6437
6447
|
margin-top:1rem
|
6438
6448
|
}
|
@@ -6505,10 +6515,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6505
6515
|
margin-left:8.333333%
|
6506
6516
|
}
|
6507
6517
|
|
6508
|
-
.ml-3{
|
6509
|
-
margin-left:0.75rem
|
6510
|
-
}
|
6511
|
-
|
6512
6518
|
.ml-4{
|
6513
6519
|
margin-left:1rem
|
6514
6520
|
}
|
@@ -7111,6 +7117,16 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7111
7117
|
border-radius:1rem
|
7112
7118
|
}
|
7113
7119
|
|
7120
|
+
.rounded-r-md{
|
7121
|
+
border-top-right-radius:0.375rem;
|
7122
|
+
border-bottom-right-radius:0.375rem
|
7123
|
+
}
|
7124
|
+
|
7125
|
+
.rounded-l-md{
|
7126
|
+
border-top-left-radius:0.375rem;
|
7127
|
+
border-bottom-left-radius:0.375rem
|
7128
|
+
}
|
7129
|
+
|
7114
7130
|
.rounded-l{
|
7115
7131
|
border-top-left-radius:0.25rem;
|
7116
7132
|
border-bottom-left-radius:0.25rem
|
@@ -7276,7 +7292,8 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7276
7292
|
}
|
7277
7293
|
|
7278
7294
|
.border-primary-500{
|
7279
|
-
border-
|
7295
|
+
--tw-border-opacity:1;
|
7296
|
+
border-color:rgb(8 134 222 / var(--tw-border-opacity))
|
7280
7297
|
}
|
7281
7298
|
|
7282
7299
|
.border-red-600{
|
@@ -7294,6 +7311,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7294
7311
|
border-color:rgb(172 177 185 / var(--tw-border-opacity))
|
7295
7312
|
}
|
7296
7313
|
|
7314
|
+
.border-primary-300{
|
7315
|
+
--tw-border-opacity:1;
|
7316
|
+
border-color:rgb(107 182 235 / var(--tw-border-opacity))
|
7317
|
+
}
|
7318
|
+
|
7297
7319
|
.border-gray-600{
|
7298
7320
|
--tw-border-opacity:1;
|
7299
7321
|
border-color:rgb(94 100 110 / var(--tw-border-opacity))
|
@@ -7434,7 +7456,8 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7434
7456
|
}
|
7435
7457
|
|
7436
7458
|
.bg-primary-500{
|
7437
|
-
|
7459
|
+
--tw-bg-opacity:1;
|
7460
|
+
background-color:rgb(8 134 222 / var(--tw-bg-opacity))
|
7438
7461
|
}
|
7439
7462
|
|
7440
7463
|
.bg-red-600{
|
@@ -7452,14 +7475,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7452
7475
|
background-color:rgb(246 246 247 / var(--tw-bg-opacity))
|
7453
7476
|
}
|
7454
7477
|
|
7455
|
-
.bg-
|
7478
|
+
.bg-gray-100{
|
7456
7479
|
--tw-bg-opacity:1;
|
7457
|
-
background-color:rgb(
|
7480
|
+
background-color:rgb(227 229 232 / var(--tw-bg-opacity))
|
7458
7481
|
}
|
7459
7482
|
|
7460
|
-
.bg-
|
7483
|
+
.bg-orange-700{
|
7461
7484
|
--tw-bg-opacity:1;
|
7462
|
-
background-color:rgb(
|
7485
|
+
background-color:rgb(194 65 12 / var(--tw-bg-opacity))
|
7463
7486
|
}
|
7464
7487
|
|
7465
7488
|
.bg-green-700{
|
@@ -7772,6 +7795,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7772
7795
|
font-weight:600
|
7773
7796
|
}
|
7774
7797
|
|
7798
|
+
.font-medium{
|
7799
|
+
font-weight:500
|
7800
|
+
}
|
7801
|
+
|
7775
7802
|
.font-normal{
|
7776
7803
|
font-weight:400
|
7777
7804
|
}
|
@@ -7780,10 +7807,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7780
7807
|
font-weight:700
|
7781
7808
|
}
|
7782
7809
|
|
7783
|
-
.font-medium{
|
7784
|
-
font-weight:500
|
7785
|
-
}
|
7786
|
-
|
7787
7810
|
.uppercase{
|
7788
7811
|
text-transform:uppercase
|
7789
7812
|
}
|
@@ -7931,7 +7954,8 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7931
7954
|
}
|
7932
7955
|
|
7933
7956
|
.text-primary-500{
|
7934
|
-
|
7957
|
+
--tw-text-opacity:1;
|
7958
|
+
color:rgb(8 134 222 / var(--tw-text-opacity))
|
7935
7959
|
}
|
7936
7960
|
|
7937
7961
|
.text-white{
|
@@ -7974,6 +7998,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
7974
7998
|
color:rgb(0 0 0 / var(--tw-text-opacity))
|
7975
7999
|
}
|
7976
8000
|
|
8001
|
+
.\!text-blue-700{
|
8002
|
+
--tw-text-opacity:1 !important;
|
8003
|
+
color:rgb(5 80 133 / var(--tw-text-opacity)) !important
|
8004
|
+
}
|
8005
|
+
|
7977
8006
|
.text-slate-600{
|
7978
8007
|
--tw-text-opacity:1;
|
7979
8008
|
color:rgb(71 85 105 / var(--tw-text-opacity))
|
@@ -8167,7 +8196,8 @@ html, body{
|
|
8167
8196
|
}
|
8168
8197
|
|
8169
8198
|
.turbo-progress-bar{
|
8170
|
-
|
8199
|
+
--tw-bg-opacity:1;
|
8200
|
+
background-color:rgb(57 158 229 / var(--tw-bg-opacity))
|
8171
8201
|
}
|
8172
8202
|
|
8173
8203
|
body.os-mac .mac\:hidden {
|
@@ -8219,14 +8249,6 @@ trix-editor {
|
|
8219
8249
|
display:block
|
8220
8250
|
}
|
8221
8251
|
|
8222
|
-
.checked\:bg-primary-400:checked{
|
8223
|
-
background-color:rgb(var(--color-primary-400))
|
8224
|
-
}
|
8225
|
-
|
8226
|
-
.focus-within\:border-primary-500:focus-within{
|
8227
|
-
border-color:rgb(var(--color-primary-500))
|
8228
|
-
}
|
8229
|
-
|
8230
8252
|
.hover\:z-\[21\]:hover{
|
8231
8253
|
z-index:21
|
8232
8254
|
}
|
@@ -8342,7 +8364,13 @@ trix-editor {
|
|
8342
8364
|
}
|
8343
8365
|
|
8344
8366
|
.hover\:border-primary-600:hover{
|
8345
|
-
border-
|
8367
|
+
--tw-border-opacity:1;
|
8368
|
+
border-color:rgb(6 107 178 / var(--tw-border-opacity))
|
8369
|
+
}
|
8370
|
+
|
8371
|
+
.hover\:bg-slate-100:hover{
|
8372
|
+
--tw-bg-opacity:1;
|
8373
|
+
background-color:rgb(241 245 249 / var(--tw-bg-opacity))
|
8346
8374
|
}
|
8347
8375
|
|
8348
8376
|
.hover\:bg-slate-600:hover{
|
@@ -8350,9 +8378,9 @@ trix-editor {
|
|
8350
8378
|
background-color:rgb(71 85 105 / var(--tw-bg-opacity))
|
8351
8379
|
}
|
8352
8380
|
|
8353
|
-
.hover\:bg-
|
8381
|
+
.hover\:bg-gray-100:hover{
|
8354
8382
|
--tw-bg-opacity:1;
|
8355
|
-
background-color:rgb(
|
8383
|
+
background-color:rgb(227 229 232 / var(--tw-bg-opacity))
|
8356
8384
|
}
|
8357
8385
|
|
8358
8386
|
.hover\:bg-gray-600:hover{
|
@@ -8360,9 +8388,9 @@ trix-editor {
|
|
8360
8388
|
background-color:rgb(94 100 110 / var(--tw-bg-opacity))
|
8361
8389
|
}
|
8362
8390
|
|
8363
|
-
.hover\:bg-
|
8391
|
+
.hover\:bg-zinc-100:hover{
|
8364
8392
|
--tw-bg-opacity:1;
|
8365
|
-
background-color:rgb(
|
8393
|
+
background-color:rgb(244 244 245 / var(--tw-bg-opacity))
|
8366
8394
|
}
|
8367
8395
|
|
8368
8396
|
.hover\:bg-zinc-600:hover{
|
@@ -8370,9 +8398,9 @@ trix-editor {
|
|
8370
8398
|
background-color:rgb(82 82 91 / var(--tw-bg-opacity))
|
8371
8399
|
}
|
8372
8400
|
|
8373
|
-
.hover\:bg-
|
8401
|
+
.hover\:bg-neutral-100:hover{
|
8374
8402
|
--tw-bg-opacity:1;
|
8375
|
-
background-color:rgb(
|
8403
|
+
background-color:rgb(245 245 245 / var(--tw-bg-opacity))
|
8376
8404
|
}
|
8377
8405
|
|
8378
8406
|
.hover\:bg-neutral-600:hover{
|
@@ -8380,9 +8408,9 @@ trix-editor {
|
|
8380
8408
|
background-color:rgb(82 82 82 / var(--tw-bg-opacity))
|
8381
8409
|
}
|
8382
8410
|
|
8383
|
-
.hover\:bg-
|
8411
|
+
.hover\:bg-stone-100:hover{
|
8384
8412
|
--tw-bg-opacity:1;
|
8385
|
-
background-color:rgb(245 245
|
8413
|
+
background-color:rgb(245 245 244 / var(--tw-bg-opacity))
|
8386
8414
|
}
|
8387
8415
|
|
8388
8416
|
.hover\:bg-stone-600:hover{
|
@@ -8390,9 +8418,9 @@ trix-editor {
|
|
8390
8418
|
background-color:rgb(87 83 78 / var(--tw-bg-opacity))
|
8391
8419
|
}
|
8392
8420
|
|
8393
|
-
.hover\:bg-
|
8421
|
+
.hover\:bg-red-100:hover{
|
8394
8422
|
--tw-bg-opacity:1;
|
8395
|
-
background-color:rgb(
|
8423
|
+
background-color:rgb(254 226 226 / var(--tw-bg-opacity))
|
8396
8424
|
}
|
8397
8425
|
|
8398
8426
|
.hover\:bg-red-600:hover{
|
@@ -8400,9 +8428,9 @@ trix-editor {
|
|
8400
8428
|
background-color:rgb(220 38 38 / var(--tw-bg-opacity))
|
8401
8429
|
}
|
8402
8430
|
|
8403
|
-
.hover\:bg-
|
8431
|
+
.hover\:bg-orange-100:hover{
|
8404
8432
|
--tw-bg-opacity:1;
|
8405
|
-
background-color:rgb(
|
8433
|
+
background-color:rgb(255 237 213 / var(--tw-bg-opacity))
|
8406
8434
|
}
|
8407
8435
|
|
8408
8436
|
.hover\:bg-orange-600:hover{
|
@@ -8410,9 +8438,9 @@ trix-editor {
|
|
8410
8438
|
background-color:rgb(234 88 12 / var(--tw-bg-opacity))
|
8411
8439
|
}
|
8412
8440
|
|
8413
|
-
.hover\:bg-
|
8441
|
+
.hover\:bg-amber-100:hover{
|
8414
8442
|
--tw-bg-opacity:1;
|
8415
|
-
background-color:rgb(
|
8443
|
+
background-color:rgb(254 243 199 / var(--tw-bg-opacity))
|
8416
8444
|
}
|
8417
8445
|
|
8418
8446
|
.hover\:bg-amber-600:hover{
|
@@ -8420,9 +8448,9 @@ trix-editor {
|
|
8420
8448
|
background-color:rgb(217 119 6 / var(--tw-bg-opacity))
|
8421
8449
|
}
|
8422
8450
|
|
8423
|
-
.hover\:bg-
|
8451
|
+
.hover\:bg-yellow-100:hover{
|
8424
8452
|
--tw-bg-opacity:1;
|
8425
|
-
background-color:rgb(254
|
8453
|
+
background-color:rgb(254 249 195 / var(--tw-bg-opacity))
|
8426
8454
|
}
|
8427
8455
|
|
8428
8456
|
.hover\:bg-yellow-600:hover{
|
@@ -8430,9 +8458,9 @@ trix-editor {
|
|
8430
8458
|
background-color:rgb(202 138 4 / var(--tw-bg-opacity))
|
8431
8459
|
}
|
8432
8460
|
|
8433
|
-
.hover\:bg-
|
8461
|
+
.hover\:bg-lime-100:hover{
|
8434
8462
|
--tw-bg-opacity:1;
|
8435
|
-
background-color:rgb(
|
8463
|
+
background-color:rgb(236 252 203 / var(--tw-bg-opacity))
|
8436
8464
|
}
|
8437
8465
|
|
8438
8466
|
.hover\:bg-lime-600:hover{
|
@@ -8440,9 +8468,9 @@ trix-editor {
|
|
8440
8468
|
background-color:rgb(101 163 13 / var(--tw-bg-opacity))
|
8441
8469
|
}
|
8442
8470
|
|
8443
|
-
.hover\:bg-
|
8471
|
+
.hover\:bg-green-100:hover{
|
8444
8472
|
--tw-bg-opacity:1;
|
8445
|
-
background-color:rgb(
|
8473
|
+
background-color:rgb(220 252 231 / var(--tw-bg-opacity))
|
8446
8474
|
}
|
8447
8475
|
|
8448
8476
|
.hover\:bg-green-600:hover{
|
@@ -8450,9 +8478,9 @@ trix-editor {
|
|
8450
8478
|
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
8451
8479
|
}
|
8452
8480
|
|
8453
|
-
.hover\:bg-
|
8481
|
+
.hover\:bg-emerald-100:hover{
|
8454
8482
|
--tw-bg-opacity:1;
|
8455
|
-
background-color:rgb(
|
8483
|
+
background-color:rgb(209 250 229 / var(--tw-bg-opacity))
|
8456
8484
|
}
|
8457
8485
|
|
8458
8486
|
.hover\:bg-emerald-600:hover{
|
@@ -8460,9 +8488,9 @@ trix-editor {
|
|
8460
8488
|
background-color:rgb(5 150 105 / var(--tw-bg-opacity))
|
8461
8489
|
}
|
8462
8490
|
|
8463
|
-
.hover\:bg-
|
8491
|
+
.hover\:bg-teal-100:hover{
|
8464
8492
|
--tw-bg-opacity:1;
|
8465
|
-
background-color:rgb(
|
8493
|
+
background-color:rgb(204 251 241 / var(--tw-bg-opacity))
|
8466
8494
|
}
|
8467
8495
|
|
8468
8496
|
.hover\:bg-teal-600:hover{
|
@@ -8470,9 +8498,9 @@ trix-editor {
|
|
8470
8498
|
background-color:rgb(13 148 136 / var(--tw-bg-opacity))
|
8471
8499
|
}
|
8472
8500
|
|
8473
|
-
.hover\:bg-
|
8501
|
+
.hover\:bg-cyan-100:hover{
|
8474
8502
|
--tw-bg-opacity:1;
|
8475
|
-
background-color:rgb(
|
8503
|
+
background-color:rgb(207 250 254 / var(--tw-bg-opacity))
|
8476
8504
|
}
|
8477
8505
|
|
8478
8506
|
.hover\:bg-cyan-600:hover{
|
@@ -8480,9 +8508,9 @@ trix-editor {
|
|
8480
8508
|
background-color:rgb(8 145 178 / var(--tw-bg-opacity))
|
8481
8509
|
}
|
8482
8510
|
|
8483
|
-
.hover\:bg-
|
8511
|
+
.hover\:bg-sky-100:hover{
|
8484
8512
|
--tw-bg-opacity:1;
|
8485
|
-
background-color:rgb(
|
8513
|
+
background-color:rgb(224 242 254 / var(--tw-bg-opacity))
|
8486
8514
|
}
|
8487
8515
|
|
8488
8516
|
.hover\:bg-sky-600:hover{
|
@@ -8490,9 +8518,9 @@ trix-editor {
|
|
8490
8518
|
background-color:rgb(2 132 199 / var(--tw-bg-opacity))
|
8491
8519
|
}
|
8492
8520
|
|
8493
|
-
.hover\:bg-
|
8521
|
+
.hover\:bg-blue-100:hover{
|
8494
8522
|
--tw-bg-opacity:1;
|
8495
|
-
background-color:rgb(
|
8523
|
+
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
8496
8524
|
}
|
8497
8525
|
|
8498
8526
|
.hover\:bg-blue-600:hover{
|
@@ -8500,9 +8528,9 @@ trix-editor {
|
|
8500
8528
|
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
8501
8529
|
}
|
8502
8530
|
|
8503
|
-
.hover\:bg-
|
8531
|
+
.hover\:bg-indigo-100:hover{
|
8504
8532
|
--tw-bg-opacity:1;
|
8505
|
-
background-color:rgb(
|
8533
|
+
background-color:rgb(224 231 255 / var(--tw-bg-opacity))
|
8506
8534
|
}
|
8507
8535
|
|
8508
8536
|
.hover\:bg-indigo-600:hover{
|
@@ -8510,9 +8538,9 @@ trix-editor {
|
|
8510
8538
|
background-color:rgb(79 70 229 / var(--tw-bg-opacity))
|
8511
8539
|
}
|
8512
8540
|
|
8513
|
-
.hover\:bg-
|
8541
|
+
.hover\:bg-violet-100:hover{
|
8514
8542
|
--tw-bg-opacity:1;
|
8515
|
-
background-color:rgb(
|
8543
|
+
background-color:rgb(237 233 254 / var(--tw-bg-opacity))
|
8516
8544
|
}
|
8517
8545
|
|
8518
8546
|
.hover\:bg-violet-600:hover{
|
@@ -8520,9 +8548,9 @@ trix-editor {
|
|
8520
8548
|
background-color:rgb(124 58 237 / var(--tw-bg-opacity))
|
8521
8549
|
}
|
8522
8550
|
|
8523
|
-
.hover\:bg-
|
8551
|
+
.hover\:bg-purple-100:hover{
|
8524
8552
|
--tw-bg-opacity:1;
|
8525
|
-
background-color:rgb(
|
8553
|
+
background-color:rgb(243 232 255 / var(--tw-bg-opacity))
|
8526
8554
|
}
|
8527
8555
|
|
8528
8556
|
.hover\:bg-purple-600:hover{
|
@@ -8530,9 +8558,9 @@ trix-editor {
|
|
8530
8558
|
background-color:rgb(147 51 234 / var(--tw-bg-opacity))
|
8531
8559
|
}
|
8532
8560
|
|
8533
|
-
.hover\:bg-
|
8561
|
+
.hover\:bg-fuchsia-100:hover{
|
8534
8562
|
--tw-bg-opacity:1;
|
8535
|
-
background-color:rgb(
|
8563
|
+
background-color:rgb(250 232 255 / var(--tw-bg-opacity))
|
8536
8564
|
}
|
8537
8565
|
|
8538
8566
|
.hover\:bg-fuchsia-600:hover{
|
@@ -8540,9 +8568,9 @@ trix-editor {
|
|
8540
8568
|
background-color:rgb(192 38 211 / var(--tw-bg-opacity))
|
8541
8569
|
}
|
8542
8570
|
|
8543
|
-
.hover\:bg-
|
8571
|
+
.hover\:bg-pink-100:hover{
|
8544
8572
|
--tw-bg-opacity:1;
|
8545
|
-
background-color:rgb(
|
8573
|
+
background-color:rgb(252 231 243 / var(--tw-bg-opacity))
|
8546
8574
|
}
|
8547
8575
|
|
8548
8576
|
.hover\:bg-pink-600:hover{
|
@@ -8550,9 +8578,9 @@ trix-editor {
|
|
8550
8578
|
background-color:rgb(219 39 119 / var(--tw-bg-opacity))
|
8551
8579
|
}
|
8552
8580
|
|
8553
|
-
.hover\:bg-
|
8581
|
+
.hover\:bg-rose-100:hover{
|
8554
8582
|
--tw-bg-opacity:1;
|
8555
|
-
background-color:rgb(
|
8583
|
+
background-color:rgb(255 228 230 / var(--tw-bg-opacity))
|
8556
8584
|
}
|
8557
8585
|
|
8558
8586
|
.hover\:bg-rose-600:hover{
|
@@ -8560,21 +8588,19 @@ trix-editor {
|
|
8560
8588
|
background-color:rgb(225 29 72 / var(--tw-bg-opacity))
|
8561
8589
|
}
|
8562
8590
|
|
8563
|
-
.hover\:bg-
|
8591
|
+
.hover\:bg-primary-100:hover{
|
8564
8592
|
--tw-bg-opacity:1;
|
8565
|
-
background-color:rgb(
|
8593
|
+
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
8566
8594
|
}
|
8567
8595
|
|
8568
8596
|
.hover\:bg-primary-600:hover{
|
8569
|
-
|
8570
|
-
|
8571
|
-
|
8572
|
-
.hover\:bg-primary-100:hover{
|
8573
|
-
background-color:rgb(var(--color-primary-100))
|
8597
|
+
--tw-bg-opacity:1;
|
8598
|
+
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
8574
8599
|
}
|
8575
8600
|
|
8576
|
-
.hover\:bg-
|
8577
|
-
|
8601
|
+
.hover\:bg-blue-500:hover{
|
8602
|
+
--tw-bg-opacity:1;
|
8603
|
+
background-color:rgb(8 134 222 / var(--tw-bg-opacity))
|
8578
8604
|
}
|
8579
8605
|
|
8580
8606
|
.hover\:bg-gray-50:hover{
|
@@ -8587,6 +8613,11 @@ trix-editor {
|
|
8587
8613
|
color:rgb(117 125 138 / var(--tw-text-opacity))
|
8588
8614
|
}
|
8589
8615
|
|
8616
|
+
.hover\:text-gray-400:hover{
|
8617
|
+
--tw-text-opacity:1;
|
8618
|
+
color:rgb(145 151 161 / var(--tw-text-opacity))
|
8619
|
+
}
|
8620
|
+
|
8590
8621
|
.hover\:text-white:hover{
|
8591
8622
|
--tw-text-opacity:1;
|
8592
8623
|
color:rgb(255 255 255 / var(--tw-text-opacity))
|
@@ -8607,11 +8638,20 @@ trix-editor {
|
|
8607
8638
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
8608
8639
|
}
|
8609
8640
|
|
8641
|
+
.focus\:z-10:focus{
|
8642
|
+
z-index:10
|
8643
|
+
}
|
8644
|
+
|
8610
8645
|
.focus\:border-gray-600:focus{
|
8611
8646
|
--tw-border-opacity:1;
|
8612
8647
|
border-color:rgb(94 100 110 / var(--tw-border-opacity))
|
8613
8648
|
}
|
8614
8649
|
|
8650
|
+
.focus\:border-blue-300:focus{
|
8651
|
+
--tw-border-opacity:1;
|
8652
|
+
border-color:rgb(107 182 235 / var(--tw-border-opacity))
|
8653
|
+
}
|
8654
|
+
|
8615
8655
|
.focus\:border-gray-300:focus{
|
8616
8656
|
--tw-border-opacity:1;
|
8617
8657
|
border-color:rgb(172 177 185 / var(--tw-border-opacity))
|
@@ -8647,10 +8687,6 @@ trix-editor {
|
|
8647
8687
|
outline-offset:2px
|
8648
8688
|
}
|
8649
8689
|
|
8650
|
-
.focus\:checked\:\!bg-primary-400:checked:focus{
|
8651
|
-
background-color:rgb(var(--color-primary-400)) !important
|
8652
|
-
}
|
8653
|
-
|
8654
8690
|
.focus-visible\:ring-0:focus-visible{
|
8655
8691
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
8656
8692
|
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
@@ -8667,19 +8703,14 @@ trix-editor {
|
|
8667
8703
|
transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
8668
8704
|
}
|
8669
8705
|
|
8670
|
-
.active\:border-slate-600:active{
|
8671
|
-
--tw-border-opacity:1;
|
8672
|
-
border-color:rgb(71 85 105 / var(--tw-border-opacity))
|
8673
|
-
}
|
8674
|
-
|
8675
8706
|
.active\:border-slate-500:active{
|
8676
8707
|
--tw-border-opacity:1;
|
8677
8708
|
border-color:rgb(100 116 139 / var(--tw-border-opacity))
|
8678
8709
|
}
|
8679
8710
|
|
8680
|
-
.active\:border-
|
8711
|
+
.active\:border-slate-700:active{
|
8681
8712
|
--tw-border-opacity:1;
|
8682
|
-
border-color:rgb(
|
8713
|
+
border-color:rgb(51 65 85 / var(--tw-border-opacity))
|
8683
8714
|
}
|
8684
8715
|
|
8685
8716
|
.active\:border-gray-500:active{
|
@@ -8687,9 +8718,9 @@ trix-editor {
|
|
8687
8718
|
border-color:rgb(117 125 138 / var(--tw-border-opacity))
|
8688
8719
|
}
|
8689
8720
|
|
8690
|
-
.active\:border-
|
8721
|
+
.active\:border-gray-700:active{
|
8691
8722
|
--tw-border-opacity:1;
|
8692
|
-
border-color:rgb(
|
8723
|
+
border-color:rgb(70 75 83 / var(--tw-border-opacity))
|
8693
8724
|
}
|
8694
8725
|
|
8695
8726
|
.active\:border-zinc-500:active{
|
@@ -8697,9 +8728,9 @@ trix-editor {
|
|
8697
8728
|
border-color:rgb(113 113 122 / var(--tw-border-opacity))
|
8698
8729
|
}
|
8699
8730
|
|
8700
|
-
.active\:border-
|
8731
|
+
.active\:border-zinc-700:active{
|
8701
8732
|
--tw-border-opacity:1;
|
8702
|
-
border-color:rgb(
|
8733
|
+
border-color:rgb(63 63 70 / var(--tw-border-opacity))
|
8703
8734
|
}
|
8704
8735
|
|
8705
8736
|
.active\:border-neutral-500:active{
|
@@ -8707,9 +8738,9 @@ trix-editor {
|
|
8707
8738
|
border-color:rgb(115 115 115 / var(--tw-border-opacity))
|
8708
8739
|
}
|
8709
8740
|
|
8710
|
-
.active\:border-
|
8741
|
+
.active\:border-neutral-700:active{
|
8711
8742
|
--tw-border-opacity:1;
|
8712
|
-
border-color:rgb(
|
8743
|
+
border-color:rgb(64 64 64 / var(--tw-border-opacity))
|
8713
8744
|
}
|
8714
8745
|
|
8715
8746
|
.active\:border-stone-500:active{
|
@@ -8717,9 +8748,9 @@ trix-editor {
|
|
8717
8748
|
border-color:rgb(120 113 108 / var(--tw-border-opacity))
|
8718
8749
|
}
|
8719
8750
|
|
8720
|
-
.active\:border-
|
8751
|
+
.active\:border-stone-700:active{
|
8721
8752
|
--tw-border-opacity:1;
|
8722
|
-
border-color:rgb(
|
8753
|
+
border-color:rgb(68 64 60 / var(--tw-border-opacity))
|
8723
8754
|
}
|
8724
8755
|
|
8725
8756
|
.active\:border-red-500:active{
|
@@ -8727,9 +8758,9 @@ trix-editor {
|
|
8727
8758
|
border-color:rgb(239 68 68 / var(--tw-border-opacity))
|
8728
8759
|
}
|
8729
8760
|
|
8730
|
-
.active\:border-
|
8761
|
+
.active\:border-red-700:active{
|
8731
8762
|
--tw-border-opacity:1;
|
8732
|
-
border-color:rgb(
|
8763
|
+
border-color:rgb(185 28 28 / var(--tw-border-opacity))
|
8733
8764
|
}
|
8734
8765
|
|
8735
8766
|
.active\:border-orange-500:active{
|
@@ -8737,9 +8768,9 @@ trix-editor {
|
|
8737
8768
|
border-color:rgb(249 115 22 / var(--tw-border-opacity))
|
8738
8769
|
}
|
8739
8770
|
|
8740
|
-
.active\:border-
|
8771
|
+
.active\:border-orange-700:active{
|
8741
8772
|
--tw-border-opacity:1;
|
8742
|
-
border-color:rgb(
|
8773
|
+
border-color:rgb(194 65 12 / var(--tw-border-opacity))
|
8743
8774
|
}
|
8744
8775
|
|
8745
8776
|
.active\:border-amber-500:active{
|
@@ -8747,9 +8778,9 @@ trix-editor {
|
|
8747
8778
|
border-color:rgb(245 158 11 / var(--tw-border-opacity))
|
8748
8779
|
}
|
8749
8780
|
|
8750
|
-
.active\:border-
|
8781
|
+
.active\:border-amber-700:active{
|
8751
8782
|
--tw-border-opacity:1;
|
8752
|
-
border-color:rgb(
|
8783
|
+
border-color:rgb(180 83 9 / var(--tw-border-opacity))
|
8753
8784
|
}
|
8754
8785
|
|
8755
8786
|
.active\:border-yellow-500:active{
|
@@ -8757,9 +8788,9 @@ trix-editor {
|
|
8757
8788
|
border-color:rgb(234 179 8 / var(--tw-border-opacity))
|
8758
8789
|
}
|
8759
8790
|
|
8760
|
-
.active\:border-
|
8791
|
+
.active\:border-yellow-700:active{
|
8761
8792
|
--tw-border-opacity:1;
|
8762
|
-
border-color:rgb(
|
8793
|
+
border-color:rgb(161 98 7 / var(--tw-border-opacity))
|
8763
8794
|
}
|
8764
8795
|
|
8765
8796
|
.active\:border-lime-500:active{
|
@@ -8767,9 +8798,9 @@ trix-editor {
|
|
8767
8798
|
border-color:rgb(132 204 22 / var(--tw-border-opacity))
|
8768
8799
|
}
|
8769
8800
|
|
8770
|
-
.active\:border-
|
8801
|
+
.active\:border-lime-700:active{
|
8771
8802
|
--tw-border-opacity:1;
|
8772
|
-
border-color:rgb(
|
8803
|
+
border-color:rgb(77 124 15 / var(--tw-border-opacity))
|
8773
8804
|
}
|
8774
8805
|
|
8775
8806
|
.active\:border-green-500:active{
|
@@ -8777,9 +8808,9 @@ trix-editor {
|
|
8777
8808
|
border-color:rgb(34 197 94 / var(--tw-border-opacity))
|
8778
8809
|
}
|
8779
8810
|
|
8780
|
-
.active\:border-
|
8811
|
+
.active\:border-green-700:active{
|
8781
8812
|
--tw-border-opacity:1;
|
8782
|
-
border-color:rgb(
|
8813
|
+
border-color:rgb(21 128 61 / var(--tw-border-opacity))
|
8783
8814
|
}
|
8784
8815
|
|
8785
8816
|
.active\:border-emerald-500:active{
|
@@ -8787,9 +8818,9 @@ trix-editor {
|
|
8787
8818
|
border-color:rgb(16 185 129 / var(--tw-border-opacity))
|
8788
8819
|
}
|
8789
8820
|
|
8790
|
-
.active\:border-
|
8821
|
+
.active\:border-emerald-700:active{
|
8791
8822
|
--tw-border-opacity:1;
|
8792
|
-
border-color:rgb(
|
8823
|
+
border-color:rgb(4 120 87 / var(--tw-border-opacity))
|
8793
8824
|
}
|
8794
8825
|
|
8795
8826
|
.active\:border-teal-500:active{
|
@@ -8797,9 +8828,9 @@ trix-editor {
|
|
8797
8828
|
border-color:rgb(20 184 166 / var(--tw-border-opacity))
|
8798
8829
|
}
|
8799
8830
|
|
8800
|
-
.active\:border-
|
8831
|
+
.active\:border-teal-700:active{
|
8801
8832
|
--tw-border-opacity:1;
|
8802
|
-
border-color:rgb(
|
8833
|
+
border-color:rgb(15 118 110 / var(--tw-border-opacity))
|
8803
8834
|
}
|
8804
8835
|
|
8805
8836
|
.active\:border-cyan-500:active{
|
@@ -8807,9 +8838,9 @@ trix-editor {
|
|
8807
8838
|
border-color:rgb(6 182 212 / var(--tw-border-opacity))
|
8808
8839
|
}
|
8809
8840
|
|
8810
|
-
.active\:border-
|
8841
|
+
.active\:border-cyan-700:active{
|
8811
8842
|
--tw-border-opacity:1;
|
8812
|
-
border-color:rgb(
|
8843
|
+
border-color:rgb(14 116 144 / var(--tw-border-opacity))
|
8813
8844
|
}
|
8814
8845
|
|
8815
8846
|
.active\:border-sky-500:active{
|
@@ -8817,9 +8848,9 @@ trix-editor {
|
|
8817
8848
|
border-color:rgb(14 165 233 / var(--tw-border-opacity))
|
8818
8849
|
}
|
8819
8850
|
|
8820
|
-
.active\:border-
|
8851
|
+
.active\:border-sky-700:active{
|
8821
8852
|
--tw-border-opacity:1;
|
8822
|
-
border-color:rgb(
|
8853
|
+
border-color:rgb(3 105 161 / var(--tw-border-opacity))
|
8823
8854
|
}
|
8824
8855
|
|
8825
8856
|
.active\:border-blue-500:active{
|
@@ -8827,9 +8858,9 @@ trix-editor {
|
|
8827
8858
|
border-color:rgb(8 134 222 / var(--tw-border-opacity))
|
8828
8859
|
}
|
8829
8860
|
|
8830
|
-
.active\:border-
|
8861
|
+
.active\:border-blue-700:active{
|
8831
8862
|
--tw-border-opacity:1;
|
8832
|
-
border-color:rgb(
|
8863
|
+
border-color:rgb(5 80 133 / var(--tw-border-opacity))
|
8833
8864
|
}
|
8834
8865
|
|
8835
8866
|
.active\:border-indigo-500:active{
|
@@ -8837,9 +8868,9 @@ trix-editor {
|
|
8837
8868
|
border-color:rgb(99 102 241 / var(--tw-border-opacity))
|
8838
8869
|
}
|
8839
8870
|
|
8840
|
-
.active\:border-
|
8871
|
+
.active\:border-indigo-700:active{
|
8841
8872
|
--tw-border-opacity:1;
|
8842
|
-
border-color:rgb(
|
8873
|
+
border-color:rgb(67 56 202 / var(--tw-border-opacity))
|
8843
8874
|
}
|
8844
8875
|
|
8845
8876
|
.active\:border-violet-500:active{
|
@@ -8847,9 +8878,9 @@ trix-editor {
|
|
8847
8878
|
border-color:rgb(139 92 246 / var(--tw-border-opacity))
|
8848
8879
|
}
|
8849
8880
|
|
8850
|
-
.active\:border-
|
8881
|
+
.active\:border-violet-700:active{
|
8851
8882
|
--tw-border-opacity:1;
|
8852
|
-
border-color:rgb(
|
8883
|
+
border-color:rgb(109 40 217 / var(--tw-border-opacity))
|
8853
8884
|
}
|
8854
8885
|
|
8855
8886
|
.active\:border-purple-500:active{
|
@@ -8857,9 +8888,9 @@ trix-editor {
|
|
8857
8888
|
border-color:rgb(168 85 247 / var(--tw-border-opacity))
|
8858
8889
|
}
|
8859
8890
|
|
8860
|
-
.active\:border-
|
8891
|
+
.active\:border-purple-700:active{
|
8861
8892
|
--tw-border-opacity:1;
|
8862
|
-
border-color:rgb(
|
8893
|
+
border-color:rgb(126 34 206 / var(--tw-border-opacity))
|
8863
8894
|
}
|
8864
8895
|
|
8865
8896
|
.active\:border-fuchsia-500:active{
|
@@ -8867,9 +8898,9 @@ trix-editor {
|
|
8867
8898
|
border-color:rgb(217 70 239 / var(--tw-border-opacity))
|
8868
8899
|
}
|
8869
8900
|
|
8870
|
-
.active\:border-
|
8901
|
+
.active\:border-fuchsia-700:active{
|
8871
8902
|
--tw-border-opacity:1;
|
8872
|
-
border-color:rgb(
|
8903
|
+
border-color:rgb(162 28 175 / var(--tw-border-opacity))
|
8873
8904
|
}
|
8874
8905
|
|
8875
8906
|
.active\:border-pink-500:active{
|
@@ -8877,9 +8908,9 @@ trix-editor {
|
|
8877
8908
|
border-color:rgb(236 72 153 / var(--tw-border-opacity))
|
8878
8909
|
}
|
8879
8910
|
|
8880
|
-
.active\:border-
|
8911
|
+
.active\:border-pink-700:active{
|
8881
8912
|
--tw-border-opacity:1;
|
8882
|
-
border-color:rgb(
|
8913
|
+
border-color:rgb(190 24 93 / var(--tw-border-opacity))
|
8883
8914
|
}
|
8884
8915
|
|
8885
8916
|
.active\:border-rose-500:active{
|
@@ -8887,12 +8918,24 @@ trix-editor {
|
|
8887
8918
|
border-color:rgb(244 63 94 / var(--tw-border-opacity))
|
8888
8919
|
}
|
8889
8920
|
|
8890
|
-
.active\:border-
|
8891
|
-
border-
|
8921
|
+
.active\:border-rose-700:active{
|
8922
|
+
--tw-border-opacity:1;
|
8923
|
+
border-color:rgb(190 18 60 / var(--tw-border-opacity))
|
8892
8924
|
}
|
8893
8925
|
|
8894
8926
|
.active\:border-primary-500:active{
|
8895
|
-
border-
|
8927
|
+
--tw-border-opacity:1;
|
8928
|
+
border-color:rgb(8 134 222 / var(--tw-border-opacity))
|
8929
|
+
}
|
8930
|
+
|
8931
|
+
.active\:border-primary-700:active{
|
8932
|
+
--tw-border-opacity:1;
|
8933
|
+
border-color:rgb(5 80 133 / var(--tw-border-opacity))
|
8934
|
+
}
|
8935
|
+
|
8936
|
+
.active\:bg-slate-100:active{
|
8937
|
+
--tw-bg-opacity:1;
|
8938
|
+
background-color:rgb(241 245 249 / var(--tw-bg-opacity))
|
8896
8939
|
}
|
8897
8940
|
|
8898
8941
|
.active\:bg-slate-600:active{
|
@@ -8900,9 +8943,9 @@ trix-editor {
|
|
8900
8943
|
background-color:rgb(71 85 105 / var(--tw-bg-opacity))
|
8901
8944
|
}
|
8902
8945
|
|
8903
|
-
.active\:bg-
|
8946
|
+
.active\:bg-gray-100:active{
|
8904
8947
|
--tw-bg-opacity:1;
|
8905
|
-
background-color:rgb(
|
8948
|
+
background-color:rgb(227 229 232 / var(--tw-bg-opacity))
|
8906
8949
|
}
|
8907
8950
|
|
8908
8951
|
.active\:bg-gray-600:active{
|
@@ -8910,9 +8953,9 @@ trix-editor {
|
|
8910
8953
|
background-color:rgb(94 100 110 / var(--tw-bg-opacity))
|
8911
8954
|
}
|
8912
8955
|
|
8913
|
-
.active\:bg-
|
8956
|
+
.active\:bg-zinc-100:active{
|
8914
8957
|
--tw-bg-opacity:1;
|
8915
|
-
background-color:rgb(
|
8958
|
+
background-color:rgb(244 244 245 / var(--tw-bg-opacity))
|
8916
8959
|
}
|
8917
8960
|
|
8918
8961
|
.active\:bg-zinc-600:active{
|
@@ -8920,9 +8963,9 @@ trix-editor {
|
|
8920
8963
|
background-color:rgb(82 82 91 / var(--tw-bg-opacity))
|
8921
8964
|
}
|
8922
8965
|
|
8923
|
-
.active\:bg-
|
8966
|
+
.active\:bg-neutral-100:active{
|
8924
8967
|
--tw-bg-opacity:1;
|
8925
|
-
background-color:rgb(
|
8968
|
+
background-color:rgb(245 245 245 / var(--tw-bg-opacity))
|
8926
8969
|
}
|
8927
8970
|
|
8928
8971
|
.active\:bg-neutral-600:active{
|
@@ -8930,9 +8973,9 @@ trix-editor {
|
|
8930
8973
|
background-color:rgb(82 82 82 / var(--tw-bg-opacity))
|
8931
8974
|
}
|
8932
8975
|
|
8933
|
-
.active\:bg-
|
8976
|
+
.active\:bg-stone-100:active{
|
8934
8977
|
--tw-bg-opacity:1;
|
8935
|
-
background-color:rgb(245 245
|
8978
|
+
background-color:rgb(245 245 244 / var(--tw-bg-opacity))
|
8936
8979
|
}
|
8937
8980
|
|
8938
8981
|
.active\:bg-stone-600:active{
|
@@ -8940,9 +8983,9 @@ trix-editor {
|
|
8940
8983
|
background-color:rgb(87 83 78 / var(--tw-bg-opacity))
|
8941
8984
|
}
|
8942
8985
|
|
8943
|
-
.active\:bg-
|
8986
|
+
.active\:bg-red-100:active{
|
8944
8987
|
--tw-bg-opacity:1;
|
8945
|
-
background-color:rgb(
|
8988
|
+
background-color:rgb(254 226 226 / var(--tw-bg-opacity))
|
8946
8989
|
}
|
8947
8990
|
|
8948
8991
|
.active\:bg-red-600:active{
|
@@ -8950,9 +8993,9 @@ trix-editor {
|
|
8950
8993
|
background-color:rgb(220 38 38 / var(--tw-bg-opacity))
|
8951
8994
|
}
|
8952
8995
|
|
8953
|
-
.active\:bg-
|
8996
|
+
.active\:bg-orange-100:active{
|
8954
8997
|
--tw-bg-opacity:1;
|
8955
|
-
background-color:rgb(
|
8998
|
+
background-color:rgb(255 237 213 / var(--tw-bg-opacity))
|
8956
8999
|
}
|
8957
9000
|
|
8958
9001
|
.active\:bg-orange-600:active{
|
@@ -8960,9 +9003,9 @@ trix-editor {
|
|
8960
9003
|
background-color:rgb(234 88 12 / var(--tw-bg-opacity))
|
8961
9004
|
}
|
8962
9005
|
|
8963
|
-
.active\:bg-
|
9006
|
+
.active\:bg-amber-100:active{
|
8964
9007
|
--tw-bg-opacity:1;
|
8965
|
-
background-color:rgb(
|
9008
|
+
background-color:rgb(254 243 199 / var(--tw-bg-opacity))
|
8966
9009
|
}
|
8967
9010
|
|
8968
9011
|
.active\:bg-amber-600:active{
|
@@ -8970,9 +9013,9 @@ trix-editor {
|
|
8970
9013
|
background-color:rgb(217 119 6 / var(--tw-bg-opacity))
|
8971
9014
|
}
|
8972
9015
|
|
8973
|
-
.active\:bg-
|
9016
|
+
.active\:bg-yellow-100:active{
|
8974
9017
|
--tw-bg-opacity:1;
|
8975
|
-
background-color:rgb(254
|
9018
|
+
background-color:rgb(254 249 195 / var(--tw-bg-opacity))
|
8976
9019
|
}
|
8977
9020
|
|
8978
9021
|
.active\:bg-yellow-600:active{
|
@@ -8980,9 +9023,9 @@ trix-editor {
|
|
8980
9023
|
background-color:rgb(202 138 4 / var(--tw-bg-opacity))
|
8981
9024
|
}
|
8982
9025
|
|
8983
|
-
.active\:bg-
|
9026
|
+
.active\:bg-lime-100:active{
|
8984
9027
|
--tw-bg-opacity:1;
|
8985
|
-
background-color:rgb(
|
9028
|
+
background-color:rgb(236 252 203 / var(--tw-bg-opacity))
|
8986
9029
|
}
|
8987
9030
|
|
8988
9031
|
.active\:bg-lime-600:active{
|
@@ -8990,9 +9033,9 @@ trix-editor {
|
|
8990
9033
|
background-color:rgb(101 163 13 / var(--tw-bg-opacity))
|
8991
9034
|
}
|
8992
9035
|
|
8993
|
-
.active\:bg-
|
9036
|
+
.active\:bg-green-100:active{
|
8994
9037
|
--tw-bg-opacity:1;
|
8995
|
-
background-color:rgb(
|
9038
|
+
background-color:rgb(220 252 231 / var(--tw-bg-opacity))
|
8996
9039
|
}
|
8997
9040
|
|
8998
9041
|
.active\:bg-green-600:active{
|
@@ -9000,9 +9043,9 @@ trix-editor {
|
|
9000
9043
|
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
9001
9044
|
}
|
9002
9045
|
|
9003
|
-
.active\:bg-
|
9046
|
+
.active\:bg-emerald-100:active{
|
9004
9047
|
--tw-bg-opacity:1;
|
9005
|
-
background-color:rgb(
|
9048
|
+
background-color:rgb(209 250 229 / var(--tw-bg-opacity))
|
9006
9049
|
}
|
9007
9050
|
|
9008
9051
|
.active\:bg-emerald-600:active{
|
@@ -9010,9 +9053,9 @@ trix-editor {
|
|
9010
9053
|
background-color:rgb(5 150 105 / var(--tw-bg-opacity))
|
9011
9054
|
}
|
9012
9055
|
|
9013
|
-
.active\:bg-
|
9056
|
+
.active\:bg-teal-100:active{
|
9014
9057
|
--tw-bg-opacity:1;
|
9015
|
-
background-color:rgb(
|
9058
|
+
background-color:rgb(204 251 241 / var(--tw-bg-opacity))
|
9016
9059
|
}
|
9017
9060
|
|
9018
9061
|
.active\:bg-teal-600:active{
|
@@ -9020,9 +9063,9 @@ trix-editor {
|
|
9020
9063
|
background-color:rgb(13 148 136 / var(--tw-bg-opacity))
|
9021
9064
|
}
|
9022
9065
|
|
9023
|
-
.active\:bg-
|
9066
|
+
.active\:bg-cyan-100:active{
|
9024
9067
|
--tw-bg-opacity:1;
|
9025
|
-
background-color:rgb(
|
9068
|
+
background-color:rgb(207 250 254 / var(--tw-bg-opacity))
|
9026
9069
|
}
|
9027
9070
|
|
9028
9071
|
.active\:bg-cyan-600:active{
|
@@ -9030,9 +9073,9 @@ trix-editor {
|
|
9030
9073
|
background-color:rgb(8 145 178 / var(--tw-bg-opacity))
|
9031
9074
|
}
|
9032
9075
|
|
9033
|
-
.active\:bg-
|
9076
|
+
.active\:bg-sky-100:active{
|
9034
9077
|
--tw-bg-opacity:1;
|
9035
|
-
background-color:rgb(
|
9078
|
+
background-color:rgb(224 242 254 / var(--tw-bg-opacity))
|
9036
9079
|
}
|
9037
9080
|
|
9038
9081
|
.active\:bg-sky-600:active{
|
@@ -9040,9 +9083,9 @@ trix-editor {
|
|
9040
9083
|
background-color:rgb(2 132 199 / var(--tw-bg-opacity))
|
9041
9084
|
}
|
9042
9085
|
|
9043
|
-
.active\:bg-
|
9086
|
+
.active\:bg-blue-100:active{
|
9044
9087
|
--tw-bg-opacity:1;
|
9045
|
-
background-color:rgb(
|
9088
|
+
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
9046
9089
|
}
|
9047
9090
|
|
9048
9091
|
.active\:bg-blue-600:active{
|
@@ -9050,9 +9093,9 @@ trix-editor {
|
|
9050
9093
|
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
9051
9094
|
}
|
9052
9095
|
|
9053
|
-
.active\:bg-
|
9096
|
+
.active\:bg-indigo-100:active{
|
9054
9097
|
--tw-bg-opacity:1;
|
9055
|
-
background-color:rgb(
|
9098
|
+
background-color:rgb(224 231 255 / var(--tw-bg-opacity))
|
9056
9099
|
}
|
9057
9100
|
|
9058
9101
|
.active\:bg-indigo-600:active{
|
@@ -9060,9 +9103,9 @@ trix-editor {
|
|
9060
9103
|
background-color:rgb(79 70 229 / var(--tw-bg-opacity))
|
9061
9104
|
}
|
9062
9105
|
|
9063
|
-
.active\:bg-
|
9106
|
+
.active\:bg-violet-100:active{
|
9064
9107
|
--tw-bg-opacity:1;
|
9065
|
-
background-color:rgb(
|
9108
|
+
background-color:rgb(237 233 254 / var(--tw-bg-opacity))
|
9066
9109
|
}
|
9067
9110
|
|
9068
9111
|
.active\:bg-violet-600:active{
|
@@ -9070,9 +9113,9 @@ trix-editor {
|
|
9070
9113
|
background-color:rgb(124 58 237 / var(--tw-bg-opacity))
|
9071
9114
|
}
|
9072
9115
|
|
9073
|
-
.active\:bg-
|
9116
|
+
.active\:bg-purple-100:active{
|
9074
9117
|
--tw-bg-opacity:1;
|
9075
|
-
background-color:rgb(
|
9118
|
+
background-color:rgb(243 232 255 / var(--tw-bg-opacity))
|
9076
9119
|
}
|
9077
9120
|
|
9078
9121
|
.active\:bg-purple-600:active{
|
@@ -9080,9 +9123,9 @@ trix-editor {
|
|
9080
9123
|
background-color:rgb(147 51 234 / var(--tw-bg-opacity))
|
9081
9124
|
}
|
9082
9125
|
|
9083
|
-
.active\:bg-
|
9126
|
+
.active\:bg-fuchsia-100:active{
|
9084
9127
|
--tw-bg-opacity:1;
|
9085
|
-
background-color:rgb(
|
9128
|
+
background-color:rgb(250 232 255 / var(--tw-bg-opacity))
|
9086
9129
|
}
|
9087
9130
|
|
9088
9131
|
.active\:bg-fuchsia-600:active{
|
@@ -9090,9 +9133,9 @@ trix-editor {
|
|
9090
9133
|
background-color:rgb(192 38 211 / var(--tw-bg-opacity))
|
9091
9134
|
}
|
9092
9135
|
|
9093
|
-
.active\:bg-
|
9136
|
+
.active\:bg-pink-100:active{
|
9094
9137
|
--tw-bg-opacity:1;
|
9095
|
-
background-color:rgb(
|
9138
|
+
background-color:rgb(252 231 243 / var(--tw-bg-opacity))
|
9096
9139
|
}
|
9097
9140
|
|
9098
9141
|
.active\:bg-pink-600:active{
|
@@ -9100,9 +9143,9 @@ trix-editor {
|
|
9100
9143
|
background-color:rgb(219 39 119 / var(--tw-bg-opacity))
|
9101
9144
|
}
|
9102
9145
|
|
9103
|
-
.active\:bg-
|
9146
|
+
.active\:bg-rose-100:active{
|
9104
9147
|
--tw-bg-opacity:1;
|
9105
|
-
background-color:rgb(
|
9148
|
+
background-color:rgb(255 228 230 / var(--tw-bg-opacity))
|
9106
9149
|
}
|
9107
9150
|
|
9108
9151
|
.active\:bg-rose-600:active{
|
@@ -9110,17 +9153,24 @@ trix-editor {
|
|
9110
9153
|
background-color:rgb(225 29 72 / var(--tw-bg-opacity))
|
9111
9154
|
}
|
9112
9155
|
|
9113
|
-
.active\:bg-
|
9156
|
+
.active\:bg-primary-100:active{
|
9114
9157
|
--tw-bg-opacity:1;
|
9115
|
-
background-color:rgb(
|
9158
|
+
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
9116
9159
|
}
|
9117
9160
|
|
9118
9161
|
.active\:bg-primary-600:active{
|
9119
|
-
|
9162
|
+
--tw-bg-opacity:1;
|
9163
|
+
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
9120
9164
|
}
|
9121
9165
|
|
9122
|
-
.active\:
|
9123
|
-
|
9166
|
+
.active\:text-gray-700:active{
|
9167
|
+
--tw-text-opacity:1;
|
9168
|
+
color:rgb(70 75 83 / var(--tw-text-opacity))
|
9169
|
+
}
|
9170
|
+
|
9171
|
+
.active\:text-gray-500:active{
|
9172
|
+
--tw-text-opacity:1;
|
9173
|
+
color:rgb(117 125 138 / var(--tw-text-opacity))
|
9124
9174
|
}
|
9125
9175
|
|
9126
9176
|
.active\:outline:active{
|
@@ -9131,188 +9181,96 @@ trix-editor {
|
|
9131
9181
|
outline-width:1px
|
9132
9182
|
}
|
9133
9183
|
|
9134
|
-
.active\:outline-slate-600:active{
|
9135
|
-
outline-color:#475569
|
9136
|
-
}
|
9137
|
-
|
9138
9184
|
.active\:outline-slate-500:active{
|
9139
9185
|
outline-color:#64748b
|
9140
9186
|
}
|
9141
9187
|
|
9142
|
-
.active\:outline-gray-600:active{
|
9143
|
-
outline-color:#5E646E
|
9144
|
-
}
|
9145
|
-
|
9146
9188
|
.active\:outline-gray-500:active{
|
9147
9189
|
outline-color:#757D8A
|
9148
9190
|
}
|
9149
9191
|
|
9150
|
-
.active\:outline-zinc-600:active{
|
9151
|
-
outline-color:#52525b
|
9152
|
-
}
|
9153
|
-
|
9154
9192
|
.active\:outline-zinc-500:active{
|
9155
9193
|
outline-color:#71717a
|
9156
9194
|
}
|
9157
9195
|
|
9158
|
-
.active\:outline-neutral-600:active{
|
9159
|
-
outline-color:#525252
|
9160
|
-
}
|
9161
|
-
|
9162
9196
|
.active\:outline-neutral-500:active{
|
9163
9197
|
outline-color:#737373
|
9164
9198
|
}
|
9165
9199
|
|
9166
|
-
.active\:outline-stone-600:active{
|
9167
|
-
outline-color:#57534e
|
9168
|
-
}
|
9169
|
-
|
9170
9200
|
.active\:outline-stone-500:active{
|
9171
9201
|
outline-color:#78716c
|
9172
9202
|
}
|
9173
9203
|
|
9174
|
-
.active\:outline-red-600:active{
|
9175
|
-
outline-color:#dc2626
|
9176
|
-
}
|
9177
|
-
|
9178
9204
|
.active\:outline-red-500:active{
|
9179
9205
|
outline-color:#ef4444
|
9180
9206
|
}
|
9181
9207
|
|
9182
|
-
.active\:outline-orange-600:active{
|
9183
|
-
outline-color:#ea580c
|
9184
|
-
}
|
9185
|
-
|
9186
9208
|
.active\:outline-orange-500:active{
|
9187
9209
|
outline-color:#f97316
|
9188
9210
|
}
|
9189
9211
|
|
9190
|
-
.active\:outline-amber-600:active{
|
9191
|
-
outline-color:#d97706
|
9192
|
-
}
|
9193
|
-
|
9194
9212
|
.active\:outline-amber-500:active{
|
9195
9213
|
outline-color:#f59e0b
|
9196
9214
|
}
|
9197
9215
|
|
9198
|
-
.active\:outline-yellow-600:active{
|
9199
|
-
outline-color:#ca8a04
|
9200
|
-
}
|
9201
|
-
|
9202
9216
|
.active\:outline-yellow-500:active{
|
9203
9217
|
outline-color:#eab308
|
9204
9218
|
}
|
9205
9219
|
|
9206
|
-
.active\:outline-lime-600:active{
|
9207
|
-
outline-color:#65a30d
|
9208
|
-
}
|
9209
|
-
|
9210
9220
|
.active\:outline-lime-500:active{
|
9211
9221
|
outline-color:#84cc16
|
9212
9222
|
}
|
9213
9223
|
|
9214
|
-
.active\:outline-green-600:active{
|
9215
|
-
outline-color:#16a34a
|
9216
|
-
}
|
9217
|
-
|
9218
9224
|
.active\:outline-green-500:active{
|
9219
9225
|
outline-color:#22c55e
|
9220
9226
|
}
|
9221
9227
|
|
9222
|
-
.active\:outline-emerald-600:active{
|
9223
|
-
outline-color:#059669
|
9224
|
-
}
|
9225
|
-
|
9226
9228
|
.active\:outline-emerald-500:active{
|
9227
9229
|
outline-color:#10b981
|
9228
9230
|
}
|
9229
9231
|
|
9230
|
-
.active\:outline-teal-600:active{
|
9231
|
-
outline-color:#0d9488
|
9232
|
-
}
|
9233
|
-
|
9234
9232
|
.active\:outline-teal-500:active{
|
9235
9233
|
outline-color:#14b8a6
|
9236
9234
|
}
|
9237
9235
|
|
9238
|
-
.active\:outline-cyan-600:active{
|
9239
|
-
outline-color:#0891b2
|
9240
|
-
}
|
9241
|
-
|
9242
9236
|
.active\:outline-cyan-500:active{
|
9243
9237
|
outline-color:#06b6d4
|
9244
9238
|
}
|
9245
9239
|
|
9246
|
-
.active\:outline-sky-600:active{
|
9247
|
-
outline-color:#0284c7
|
9248
|
-
}
|
9249
|
-
|
9250
9240
|
.active\:outline-sky-500:active{
|
9251
9241
|
outline-color:#0ea5e9
|
9252
9242
|
}
|
9253
9243
|
|
9254
|
-
.active\:outline-blue-600:active{
|
9255
|
-
outline-color:#066BB2
|
9256
|
-
}
|
9257
|
-
|
9258
9244
|
.active\:outline-blue-500:active{
|
9259
9245
|
outline-color:#0886DE
|
9260
9246
|
}
|
9261
9247
|
|
9262
|
-
.active\:outline-indigo-600:active{
|
9263
|
-
outline-color:#4f46e5
|
9264
|
-
}
|
9265
|
-
|
9266
9248
|
.active\:outline-indigo-500:active{
|
9267
9249
|
outline-color:#6366f1
|
9268
9250
|
}
|
9269
9251
|
|
9270
|
-
.active\:outline-violet-600:active{
|
9271
|
-
outline-color:#7c3aed
|
9272
|
-
}
|
9273
|
-
|
9274
9252
|
.active\:outline-violet-500:active{
|
9275
9253
|
outline-color:#8b5cf6
|
9276
9254
|
}
|
9277
9255
|
|
9278
|
-
.active\:outline-purple-600:active{
|
9279
|
-
outline-color:#9333ea
|
9280
|
-
}
|
9281
|
-
|
9282
9256
|
.active\:outline-purple-500:active{
|
9283
9257
|
outline-color:#a855f7
|
9284
9258
|
}
|
9285
9259
|
|
9286
|
-
.active\:outline-fuchsia-600:active{
|
9287
|
-
outline-color:#c026d3
|
9288
|
-
}
|
9289
|
-
|
9290
9260
|
.active\:outline-fuchsia-500:active{
|
9291
9261
|
outline-color:#d946ef
|
9292
9262
|
}
|
9293
9263
|
|
9294
|
-
.active\:outline-pink-600:active{
|
9295
|
-
outline-color:#db2777
|
9296
|
-
}
|
9297
|
-
|
9298
9264
|
.active\:outline-pink-500:active{
|
9299
9265
|
outline-color:#ec4899
|
9300
9266
|
}
|
9301
9267
|
|
9302
|
-
.active\:outline-rose-600:active{
|
9303
|
-
outline-color:#e11d48
|
9304
|
-
}
|
9305
|
-
|
9306
9268
|
.active\:outline-rose-500:active{
|
9307
9269
|
outline-color:#f43f5e
|
9308
9270
|
}
|
9309
9271
|
|
9310
|
-
.active\:outline-primary-600:active{
|
9311
|
-
outline-color:rgb(var(--color-primary-600))
|
9312
|
-
}
|
9313
|
-
|
9314
9272
|
.active\:outline-primary-500:active{
|
9315
|
-
outline-color
|
9273
|
+
outline-color:#0886DE
|
9316
9274
|
}
|
9317
9275
|
|
9318
9276
|
.disabled\:cursor-not-allowed:disabled{
|
@@ -9510,6 +9468,10 @@ trix-editor {
|
|
9510
9468
|
}
|
9511
9469
|
|
9512
9470
|
@media (min-width: 768px){
|
9471
|
+
.md\:inline-flex{
|
9472
|
+
display:inline-flex
|
9473
|
+
}
|
9474
|
+
|
9513
9475
|
.md\:h-14{
|
9514
9476
|
height:3.5rem
|
9515
9477
|
}
|