avo 2.12.1.pre.1 → 2.13.2.pre.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +2 -1
- 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 +0 -4
- 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 +7 -0
- data/app/assets/svgs/failed_to_load.svg +4 -5
- data/app/assets/svgs/grid-empty-state.svg +10 -11
- data/app/assets/svgs/table-empty-state.svg +11 -12
- data/app/components/avo/actions_component.html.erb +5 -5
- data/app/components/avo/actions_component.rb +12 -3
- data/app/components/avo/button_component.rb +3 -5
- data/app/components/avo/fields/boolean_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/common/gravatar_viewer_component.html.erb +1 -1
- data/app/components/avo/fields/date_field/edit_component.html.erb +0 -3
- data/app/components/avo/fields/date_time_field/edit_component.html.erb +0 -2
- data/app/components/avo/fields/has_one_field/show_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/tags_field/edit_component.html.erb +1 -1
- data/app/components/avo/item_switcher_component.html.erb +1 -1
- data/app/components/avo/panel_component.html.erb +1 -1
- data/app/components/avo/panel_component.rb +3 -4
- data/app/components/avo/profile_item_component.html.erb +1 -1
- data/app/components/avo/resource_component.rb +6 -4
- data/app/components/avo/sidebar_component.html.erb +1 -1
- data/app/components/avo/views/resource_edit_component.html.erb +1 -1
- data/app/components/avo/views/resource_index_component.html.erb +1 -1
- data/app/components/avo/views/resource_index_component.rb +1 -1
- data/app/components/avo/views/resource_show_component.html.erb +138 -48
- data/app/components/avo/views/resource_show_component.rb +1 -0
- data/app/helpers/avo/resources_helper.rb +2 -2
- data/app/javascript/avo.js +0 -1
- data/app/javascript/js/controllers/fields/trix_field_controller.js +4 -3
- data/app/javascript/js/controllers/item_selector_controller.js +1 -1
- data/app/views/avo/associations/new.html.erb +2 -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/dashboards/show.html.erb +1 -1
- data/app/views/avo/debug/index.html.erb +1 -1
- data/app/views/avo/debug/report.html.erb +1 -0
- data/app/views/avo/home/index.html.erb +1 -1
- data/app/views/avo/partials/_branding.html.erb +5 -0
- data/app/views/avo/partials/_header.html.erb +1 -1
- data/app/views/avo/partials/_logo.html.erb +2 -2
- data/app/views/avo/private/_links_and_buttons.html.erb +1 -1
- data/app/views/avo/private/design.html.erb +5 -5
- data/app/views/layouts/avo/application.html.erb +2 -1
- data/lib/avo/base_resource.rb +5 -1
- data/lib/avo/concerns/has_editable_controls.rb +34 -0
- data/lib/avo/configuration/branding.rb +57 -0
- data/lib/avo/configuration.rb +5 -0
- data/lib/avo/fields/date_field.rb +1 -3
- data/lib/avo/fields/field_extensions/has_include_blank.rb +1 -1
- data/lib/avo/fields/key_value_field.rb +6 -6
- data/lib/avo/licensing/h_q.rb +12 -4
- data/lib/avo/licensing/pro_license.rb +2 -0
- data/lib/avo/menu/builder.rb +2 -0
- data/lib/avo/resources/controls/action.rb +32 -0
- data/lib/avo/resources/controls/actions_list.rb +19 -0
- data/lib/avo/resources/controls/back_button.rb +13 -0
- data/lib/avo/resources/controls/base_control.rb +59 -0
- data/lib/avo/resources/controls/delete_button.rb +13 -0
- data/lib/avo/resources/controls/detach_button.rb +13 -0
- data/lib/avo/resources/controls/edit_button.rb +13 -0
- data/lib/avo/resources/controls/execution_context.rb +58 -0
- data/lib/avo/resources/controls/items_holder.rb +19 -0
- data/lib/avo/resources/controls/link_to.rb +27 -0
- data/lib/avo/version.rb +1 -1
- data/lib/generators/avo/templates/action.tt +1 -1
- data/lib/generators/avo/templates/initializer/avo.tt +14 -0
- data/lib/generators/avo/templates/resource_tools/partial.tt +1 -1
- data/lib/generators/avo/templates/standalone_action.tt +1 -1
- data/public/avo-assets/avo.css +760 -202
- data/public/avo-assets/avo.js +2 -2
- data/public/avo-assets/avo.js.map +2 -2
- metadata +15 -11
- data/app/components/avo/button_component.html.erb +0 -1
- data/app/helpers/avo/actions_helper.rb +0 -4
- data/app/helpers/avo/attachments_helper.rb +0 -4
- data/app/views/kaminari/_first_page.html.erb +0 -3
- data/app/views/kaminari/_last_page.html.erb +0 -3
- data/app/views/kaminari/_next_page.html.erb +0 -9
- data/app/views/kaminari/_page.html.erb +0 -12
- data/app/views/kaminari/_prev_page.html.erb +0 -9
- data/lib/avo/concerns/has_model.rb +0 -11
data/public/avo-assets/avo.css
CHANGED
|
@@ -3832,8 +3832,7 @@ select{
|
|
|
3832
3832
|
}
|
|
3833
3833
|
|
|
3834
3834
|
a{
|
|
3835
|
-
--
|
|
3836
|
-
color:rgb(8 134 222 / var(--tw-text-opacity))
|
|
3835
|
+
color:rgb(var(--color-primary-500))
|
|
3837
3836
|
}
|
|
3838
3837
|
|
|
3839
3838
|
*, ::before, ::after{
|
|
@@ -4230,11 +4229,6 @@ svg.tea #steamR {
|
|
|
4230
4229
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
4231
4230
|
}
|
|
4232
4231
|
|
|
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
|
-
|
|
4238
4232
|
.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{
|
|
4239
4233
|
--tw-bg-opacity:1;
|
|
4240
4234
|
background-color:rgb(214 216 220 / var(--tw-bg-opacity))
|
|
@@ -4484,8 +4478,7 @@ button.aa-DetachedCancelButton {
|
|
|
4484
4478
|
}
|
|
4485
4479
|
|
|
4486
4480
|
.aa-DetachedContainer .aa-Source .aa-List .aa-Item[aria-selected=true]{
|
|
4487
|
-
--
|
|
4488
|
-
background-color:rgb(8 134 222 / var(--tw-bg-opacity))
|
|
4481
|
+
background-color:rgb(var(--color-primary-500))
|
|
4489
4482
|
}
|
|
4490
4483
|
|
|
4491
4484
|
.aa-DetachedContainer .aa-Source .aa-List .aa-Item[aria-selected=true]{
|
|
@@ -4576,10 +4569,8 @@ body.os-pc .mac-styled-scrollbar:hover::-webkit-scrollbar-thumb {
|
|
|
4576
4569
|
}
|
|
4577
4570
|
|
|
4578
4571
|
.application-sidebar .active:hover, .application-sidebar .active{
|
|
4579
|
-
--
|
|
4580
|
-
|
|
4581
|
-
--tw-text-opacity:1;
|
|
4582
|
-
color:rgb(8 134 222 / var(--tw-text-opacity))
|
|
4572
|
+
background-color:rgb(var(--color-primary-100));
|
|
4573
|
+
color:rgb(var(--color-primary-500))
|
|
4583
4574
|
}
|
|
4584
4575
|
|
|
4585
4576
|
/* remove the left padding. */
|
|
@@ -4637,6 +4628,15 @@ body.os-pc .mac-styled-scrollbar:hover::-webkit-scrollbar-thumb {
|
|
|
4637
4628
|
|
|
4638
4629
|
tags.tagify {
|
|
4639
4630
|
--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(148 163 184 / 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,15 +5596,13 @@ progress[value]::-webkit-progress-bar{
|
|
|
5596
5596
|
|
|
5597
5597
|
progress[value]::-webkit-progress-value{
|
|
5598
5598
|
border-radius:0.25rem;
|
|
5599
|
-
--
|
|
5600
|
-
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
|
5599
|
+
background-color:rgb(var(--color-primary-500))
|
|
5601
5600
|
}
|
|
5602
5601
|
|
|
5603
5602
|
progress[value]::-moz-progress-bar{
|
|
5604
5603
|
appearance:none;
|
|
5605
5604
|
border-radius:0.25rem;
|
|
5606
|
-
--
|
|
5607
|
-
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
|
5605
|
+
background-color:rgb(var(--color-primary-500))
|
|
5608
5606
|
}
|
|
5609
5607
|
|
|
5610
5608
|
/*
|
|
@@ -6435,14 +6433,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
6435
6433
|
margin-top:0.5rem
|
|
6436
6434
|
}
|
|
6437
6435
|
|
|
6438
|
-
.ml-3{
|
|
6439
|
-
margin-left:0.75rem
|
|
6440
|
-
}
|
|
6441
|
-
|
|
6442
|
-
.-ml-px{
|
|
6443
|
-
margin-left:-1px
|
|
6444
|
-
}
|
|
6445
|
-
|
|
6446
6436
|
.mt-4{
|
|
6447
6437
|
margin-top:1rem
|
|
6448
6438
|
}
|
|
@@ -6515,6 +6505,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
6515
6505
|
margin-left:8.333333%
|
|
6516
6506
|
}
|
|
6517
6507
|
|
|
6508
|
+
.ml-3{
|
|
6509
|
+
margin-left:0.75rem
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6518
6512
|
.ml-4{
|
|
6519
6513
|
margin-left:1rem
|
|
6520
6514
|
}
|
|
@@ -6946,6 +6940,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
6946
6940
|
gap:1rem
|
|
6947
6941
|
}
|
|
6948
6942
|
|
|
6943
|
+
.gap-2{
|
|
6944
|
+
gap:0.5rem
|
|
6945
|
+
}
|
|
6946
|
+
|
|
6949
6947
|
.gap-0{
|
|
6950
6948
|
gap:0px
|
|
6951
6949
|
}
|
|
@@ -7113,16 +7111,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7113
7111
|
border-radius:1rem
|
|
7114
7112
|
}
|
|
7115
7113
|
|
|
7116
|
-
.rounded-r-md{
|
|
7117
|
-
border-top-right-radius:0.375rem;
|
|
7118
|
-
border-bottom-right-radius:0.375rem
|
|
7119
|
-
}
|
|
7120
|
-
|
|
7121
|
-
.rounded-l-md{
|
|
7122
|
-
border-top-left-radius:0.375rem;
|
|
7123
|
-
border-bottom-left-radius:0.375rem
|
|
7124
|
-
}
|
|
7125
|
-
|
|
7126
7114
|
.rounded-l{
|
|
7127
7115
|
border-top-left-radius:0.25rem;
|
|
7128
7116
|
border-bottom-left-radius:0.25rem
|
|
@@ -7288,8 +7276,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7288
7276
|
}
|
|
7289
7277
|
|
|
7290
7278
|
.border-primary-500{
|
|
7291
|
-
--
|
|
7292
|
-
border-color:rgb(8 134 222 / var(--tw-border-opacity))
|
|
7279
|
+
border-color:rgb(var(--color-primary-500))
|
|
7293
7280
|
}
|
|
7294
7281
|
|
|
7295
7282
|
.border-red-600{
|
|
@@ -7307,11 +7294,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7307
7294
|
border-color:rgb(172 177 185 / var(--tw-border-opacity))
|
|
7308
7295
|
}
|
|
7309
7296
|
|
|
7310
|
-
.border-primary-300{
|
|
7311
|
-
--tw-border-opacity:1;
|
|
7312
|
-
border-color:rgb(107 182 235 / var(--tw-border-opacity))
|
|
7313
|
-
}
|
|
7314
|
-
|
|
7315
7297
|
.border-gray-600{
|
|
7316
7298
|
--tw-border-opacity:1;
|
|
7317
7299
|
border-color:rgb(94 100 110 / var(--tw-border-opacity))
|
|
@@ -7341,44 +7323,54 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7341
7323
|
border-color:rgb(203 213 225 / var(--tw-border-opacity))
|
|
7342
7324
|
}
|
|
7343
7325
|
|
|
7344
|
-
.bg-
|
|
7326
|
+
.bg-slate-500{
|
|
7345
7327
|
--tw-bg-opacity:1;
|
|
7346
|
-
background-color:rgb(
|
|
7328
|
+
background-color:rgb(100 116 139 / var(--tw-bg-opacity))
|
|
7347
7329
|
}
|
|
7348
7330
|
|
|
7349
|
-
.bg-
|
|
7331
|
+
.bg-gray-500{
|
|
7350
7332
|
--tw-bg-opacity:1;
|
|
7351
|
-
background-color:rgb(
|
|
7333
|
+
background-color:rgb(117 125 138 / var(--tw-bg-opacity))
|
|
7352
7334
|
}
|
|
7353
7335
|
|
|
7354
|
-
.bg-
|
|
7336
|
+
.bg-zinc-500{
|
|
7355
7337
|
--tw-bg-opacity:1;
|
|
7356
|
-
background-color:rgb(
|
|
7338
|
+
background-color:rgb(113 113 122 / var(--tw-bg-opacity))
|
|
7357
7339
|
}
|
|
7358
7340
|
|
|
7359
|
-
.bg-
|
|
7341
|
+
.bg-neutral-500{
|
|
7360
7342
|
--tw-bg-opacity:1;
|
|
7361
|
-
background-color:rgb(
|
|
7343
|
+
background-color:rgb(115 115 115 / var(--tw-bg-opacity))
|
|
7362
7344
|
}
|
|
7363
7345
|
|
|
7364
|
-
.bg-
|
|
7346
|
+
.bg-stone-500{
|
|
7365
7347
|
--tw-bg-opacity:1;
|
|
7366
|
-
background-color:rgb(
|
|
7348
|
+
background-color:rgb(120 113 108 / var(--tw-bg-opacity))
|
|
7367
7349
|
}
|
|
7368
7350
|
|
|
7369
|
-
.bg-
|
|
7351
|
+
.bg-red-500{
|
|
7370
7352
|
--tw-bg-opacity:1;
|
|
7371
|
-
background-color:rgb(
|
|
7353
|
+
background-color:rgb(239 68 68 / var(--tw-bg-opacity))
|
|
7372
7354
|
}
|
|
7373
7355
|
|
|
7374
|
-
.bg-
|
|
7356
|
+
.bg-orange-500{
|
|
7375
7357
|
--tw-bg-opacity:1;
|
|
7376
|
-
background-color:rgb(
|
|
7358
|
+
background-color:rgb(249 115 22 / var(--tw-bg-opacity))
|
|
7377
7359
|
}
|
|
7378
7360
|
|
|
7379
|
-
.bg-
|
|
7361
|
+
.bg-amber-500{
|
|
7380
7362
|
--tw-bg-opacity:1;
|
|
7381
|
-
background-color:rgb(
|
|
7363
|
+
background-color:rgb(245 158 11 / var(--tw-bg-opacity))
|
|
7364
|
+
}
|
|
7365
|
+
|
|
7366
|
+
.bg-yellow-500{
|
|
7367
|
+
--tw-bg-opacity:1;
|
|
7368
|
+
background-color:rgb(234 179 8 / var(--tw-bg-opacity))
|
|
7369
|
+
}
|
|
7370
|
+
|
|
7371
|
+
.bg-lime-500{
|
|
7372
|
+
--tw-bg-opacity:1;
|
|
7373
|
+
background-color:rgb(132 204 22 / var(--tw-bg-opacity))
|
|
7382
7374
|
}
|
|
7383
7375
|
|
|
7384
7376
|
.bg-green-500{
|
|
@@ -7386,49 +7378,123 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7386
7378
|
background-color:rgb(34 197 94 / var(--tw-bg-opacity))
|
|
7387
7379
|
}
|
|
7388
7380
|
|
|
7389
|
-
.bg-
|
|
7381
|
+
.bg-emerald-500{
|
|
7390
7382
|
--tw-bg-opacity:1;
|
|
7391
|
-
background-color:rgb(
|
|
7383
|
+
background-color:rgb(16 185 129 / var(--tw-bg-opacity))
|
|
7392
7384
|
}
|
|
7393
7385
|
|
|
7394
|
-
.bg-
|
|
7386
|
+
.bg-teal-500{
|
|
7395
7387
|
--tw-bg-opacity:1;
|
|
7396
|
-
background-color:rgb(
|
|
7388
|
+
background-color:rgb(20 184 166 / var(--tw-bg-opacity))
|
|
7397
7389
|
}
|
|
7398
7390
|
|
|
7399
|
-
.bg-
|
|
7391
|
+
.bg-cyan-500{
|
|
7392
|
+
--tw-bg-opacity:1;
|
|
7393
|
+
background-color:rgb(6 182 212 / var(--tw-bg-opacity))
|
|
7394
|
+
}
|
|
7395
|
+
|
|
7396
|
+
.bg-sky-500{
|
|
7397
|
+
--tw-bg-opacity:1;
|
|
7398
|
+
background-color:rgb(14 165 233 / var(--tw-bg-opacity))
|
|
7399
|
+
}
|
|
7400
|
+
|
|
7401
|
+
.bg-blue-500{
|
|
7400
7402
|
--tw-bg-opacity:1;
|
|
7401
7403
|
background-color:rgb(8 134 222 / var(--tw-bg-opacity))
|
|
7402
7404
|
}
|
|
7403
7405
|
|
|
7404
|
-
.bg-
|
|
7406
|
+
.bg-indigo-500{
|
|
7405
7407
|
--tw-bg-opacity:1;
|
|
7406
|
-
background-color:rgb(
|
|
7408
|
+
background-color:rgb(99 102 241 / var(--tw-bg-opacity))
|
|
7409
|
+
}
|
|
7410
|
+
|
|
7411
|
+
.bg-violet-500{
|
|
7412
|
+
--tw-bg-opacity:1;
|
|
7413
|
+
background-color:rgb(139 92 246 / var(--tw-bg-opacity))
|
|
7414
|
+
}
|
|
7415
|
+
|
|
7416
|
+
.bg-purple-500{
|
|
7417
|
+
--tw-bg-opacity:1;
|
|
7418
|
+
background-color:rgb(168 85 247 / var(--tw-bg-opacity))
|
|
7419
|
+
}
|
|
7420
|
+
|
|
7421
|
+
.bg-fuchsia-500{
|
|
7422
|
+
--tw-bg-opacity:1;
|
|
7423
|
+
background-color:rgb(217 70 239 / var(--tw-bg-opacity))
|
|
7424
|
+
}
|
|
7425
|
+
|
|
7426
|
+
.bg-pink-500{
|
|
7427
|
+
--tw-bg-opacity:1;
|
|
7428
|
+
background-color:rgb(236 72 153 / var(--tw-bg-opacity))
|
|
7429
|
+
}
|
|
7430
|
+
|
|
7431
|
+
.bg-rose-500{
|
|
7432
|
+
--tw-bg-opacity:1;
|
|
7433
|
+
background-color:rgb(244 63 94 / var(--tw-bg-opacity))
|
|
7434
|
+
}
|
|
7435
|
+
|
|
7436
|
+
.bg-primary-500{
|
|
7437
|
+
background-color:rgb(var(--color-primary-500))
|
|
7438
|
+
}
|
|
7439
|
+
|
|
7440
|
+
.bg-red-600{
|
|
7441
|
+
--tw-bg-opacity:1;
|
|
7442
|
+
background-color:rgb(220 38 38 / var(--tw-bg-opacity))
|
|
7443
|
+
}
|
|
7444
|
+
|
|
7445
|
+
.bg-white{
|
|
7446
|
+
--tw-bg-opacity:1;
|
|
7447
|
+
background-color:rgb(255 255 255 / var(--tw-bg-opacity))
|
|
7448
|
+
}
|
|
7449
|
+
|
|
7450
|
+
.bg-gray-25{
|
|
7451
|
+
--tw-bg-opacity:1;
|
|
7452
|
+
background-color:rgb(246 246 247 / var(--tw-bg-opacity))
|
|
7453
|
+
}
|
|
7454
|
+
|
|
7455
|
+
.bg-orange-700{
|
|
7456
|
+
--tw-bg-opacity:1;
|
|
7457
|
+
background-color:rgb(194 65 12 / var(--tw-bg-opacity))
|
|
7458
|
+
}
|
|
7459
|
+
|
|
7460
|
+
.bg-gray-100{
|
|
7461
|
+
--tw-bg-opacity:1;
|
|
7462
|
+
background-color:rgb(227 229 232 / var(--tw-bg-opacity))
|
|
7463
|
+
}
|
|
7464
|
+
|
|
7465
|
+
.bg-green-700{
|
|
7466
|
+
--tw-bg-opacity:1;
|
|
7467
|
+
background-color:rgb(21 128 61 / var(--tw-bg-opacity))
|
|
7407
7468
|
}
|
|
7408
7469
|
|
|
7409
7470
|
.bg-application{
|
|
7410
7471
|
--tw-bg-opacity:1;
|
|
7411
|
-
background-color:rgb(
|
|
7472
|
+
background-color:rgb(246 246 247 / var(--tw-bg-opacity))
|
|
7412
7473
|
}
|
|
7413
7474
|
|
|
7414
|
-
.bg-
|
|
7475
|
+
.bg-red-400{
|
|
7415
7476
|
--tw-bg-opacity:1;
|
|
7416
|
-
background-color:rgb(
|
|
7477
|
+
background-color:rgb(248 113 113 / var(--tw-bg-opacity))
|
|
7417
7478
|
}
|
|
7418
7479
|
|
|
7419
|
-
.bg-
|
|
7480
|
+
.bg-orange-400{
|
|
7420
7481
|
--tw-bg-opacity:1;
|
|
7421
|
-
background-color:rgb(
|
|
7482
|
+
background-color:rgb(251 146 60 / var(--tw-bg-opacity))
|
|
7422
7483
|
}
|
|
7423
7484
|
|
|
7424
|
-
.bg-
|
|
7485
|
+
.bg-blue-400{
|
|
7425
7486
|
--tw-bg-opacity:1;
|
|
7426
|
-
background-color:rgb(
|
|
7487
|
+
background-color:rgb(57 158 229 / var(--tw-bg-opacity))
|
|
7427
7488
|
}
|
|
7428
7489
|
|
|
7429
|
-
.bg-
|
|
7490
|
+
.bg-gray-800{
|
|
7430
7491
|
--tw-bg-opacity:1;
|
|
7431
|
-
background-color:rgb(
|
|
7492
|
+
background-color:rgb(47 50 55 / var(--tw-bg-opacity))
|
|
7493
|
+
}
|
|
7494
|
+
|
|
7495
|
+
.bg-gray-50{
|
|
7496
|
+
--tw-bg-opacity:1;
|
|
7497
|
+
background-color:rgb(241 242 243 / var(--tw-bg-opacity))
|
|
7432
7498
|
}
|
|
7433
7499
|
|
|
7434
7500
|
.bg-gray-700{
|
|
@@ -7441,11 +7507,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7441
7507
|
background-color:rgb(94 100 110 / var(--tw-bg-opacity))
|
|
7442
7508
|
}
|
|
7443
7509
|
|
|
7444
|
-
.bg-gray-500{
|
|
7445
|
-
--tw-bg-opacity:1;
|
|
7446
|
-
background-color:rgb(117 125 138 / var(--tw-bg-opacity))
|
|
7447
|
-
}
|
|
7448
|
-
|
|
7449
7510
|
.bg-opacity-25{
|
|
7450
7511
|
--tw-bg-opacity:0.25
|
|
7451
7512
|
}
|
|
@@ -7711,10 +7772,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7711
7772
|
font-weight:600
|
|
7712
7773
|
}
|
|
7713
7774
|
|
|
7714
|
-
.font-medium{
|
|
7715
|
-
font-weight:500
|
|
7716
|
-
}
|
|
7717
|
-
|
|
7718
7775
|
.font-normal{
|
|
7719
7776
|
font-weight:400
|
|
7720
7777
|
}
|
|
@@ -7723,6 +7780,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7723
7780
|
font-weight:700
|
|
7724
7781
|
}
|
|
7725
7782
|
|
|
7783
|
+
.font-medium{
|
|
7784
|
+
font-weight:500
|
|
7785
|
+
}
|
|
7786
|
+
|
|
7726
7787
|
.uppercase{
|
|
7727
7788
|
text-transform:uppercase
|
|
7728
7789
|
}
|
|
@@ -7870,8 +7931,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7870
7931
|
}
|
|
7871
7932
|
|
|
7872
7933
|
.text-primary-500{
|
|
7873
|
-
--
|
|
7874
|
-
color:rgb(8 134 222 / var(--tw-text-opacity))
|
|
7934
|
+
color:rgb(var(--color-primary-500))
|
|
7875
7935
|
}
|
|
7876
7936
|
|
|
7877
7937
|
.text-white{
|
|
@@ -7914,11 +7974,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
|
7914
7974
|
color:rgb(0 0 0 / var(--tw-text-opacity))
|
|
7915
7975
|
}
|
|
7916
7976
|
|
|
7917
|
-
.\!text-blue-700{
|
|
7918
|
-
--tw-text-opacity:1 !important;
|
|
7919
|
-
color:rgb(5 80 133 / var(--tw-text-opacity)) !important
|
|
7920
|
-
}
|
|
7921
|
-
|
|
7922
7977
|
.text-slate-600{
|
|
7923
7978
|
--tw-text-opacity:1;
|
|
7924
7979
|
color:rgb(71 85 105 / var(--tw-text-opacity))
|
|
@@ -8112,8 +8167,7 @@ html, body{
|
|
|
8112
8167
|
}
|
|
8113
8168
|
|
|
8114
8169
|
.turbo-progress-bar{
|
|
8115
|
-
--
|
|
8116
|
-
background-color:rgb(57 158 229 / var(--tw-bg-opacity))
|
|
8170
|
+
background-color:rgb(var(--color-primary-400))
|
|
8117
8171
|
}
|
|
8118
8172
|
|
|
8119
8173
|
body.os-mac .mac\:hidden {
|
|
@@ -8165,108 +8219,325 @@ trix-editor {
|
|
|
8165
8219
|
display:block
|
|
8166
8220
|
}
|
|
8167
8221
|
|
|
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
|
+
|
|
8168
8230
|
.hover\:z-\[21\]:hover{
|
|
8169
8231
|
z-index:21
|
|
8170
8232
|
}
|
|
8171
8233
|
|
|
8172
|
-
.hover\:border-
|
|
8234
|
+
.hover\:border-slate-600:hover{
|
|
8173
8235
|
--tw-border-opacity:1;
|
|
8174
|
-
border-color:rgb(
|
|
8236
|
+
border-color:rgb(71 85 105 / var(--tw-border-opacity))
|
|
8175
8237
|
}
|
|
8176
8238
|
|
|
8177
|
-
.hover\:
|
|
8178
|
-
--tw-
|
|
8179
|
-
|
|
8239
|
+
.hover\:border-gray-600:hover{
|
|
8240
|
+
--tw-border-opacity:1;
|
|
8241
|
+
border-color:rgb(94 100 110 / var(--tw-border-opacity))
|
|
8180
8242
|
}
|
|
8181
8243
|
|
|
8182
|
-
.hover\:
|
|
8183
|
-
--tw-
|
|
8184
|
-
|
|
8244
|
+
.hover\:border-zinc-600:hover{
|
|
8245
|
+
--tw-border-opacity:1;
|
|
8246
|
+
border-color:rgb(82 82 91 / var(--tw-border-opacity))
|
|
8185
8247
|
}
|
|
8186
8248
|
|
|
8187
|
-
.hover\:
|
|
8188
|
-
--tw-
|
|
8189
|
-
|
|
8249
|
+
.hover\:border-neutral-600:hover{
|
|
8250
|
+
--tw-border-opacity:1;
|
|
8251
|
+
border-color:rgb(82 82 82 / var(--tw-border-opacity))
|
|
8190
8252
|
}
|
|
8191
8253
|
|
|
8192
|
-
.hover\:
|
|
8193
|
-
--tw-
|
|
8194
|
-
|
|
8254
|
+
.hover\:border-stone-600:hover{
|
|
8255
|
+
--tw-border-opacity:1;
|
|
8256
|
+
border-color:rgb(87 83 78 / var(--tw-border-opacity))
|
|
8195
8257
|
}
|
|
8196
8258
|
|
|
8197
|
-
.hover\:
|
|
8198
|
-
--tw-
|
|
8199
|
-
|
|
8259
|
+
.hover\:border-red-600:hover{
|
|
8260
|
+
--tw-border-opacity:1;
|
|
8261
|
+
border-color:rgb(220 38 38 / var(--tw-border-opacity))
|
|
8200
8262
|
}
|
|
8201
8263
|
|
|
8202
|
-
.hover\:
|
|
8203
|
-
--tw-
|
|
8204
|
-
|
|
8264
|
+
.hover\:border-orange-600:hover{
|
|
8265
|
+
--tw-border-opacity:1;
|
|
8266
|
+
border-color:rgb(234 88 12 / var(--tw-border-opacity))
|
|
8205
8267
|
}
|
|
8206
8268
|
|
|
8207
|
-
.hover\:
|
|
8208
|
-
--tw-
|
|
8209
|
-
|
|
8269
|
+
.hover\:border-amber-600:hover{
|
|
8270
|
+
--tw-border-opacity:1;
|
|
8271
|
+
border-color:rgb(217 119 6 / var(--tw-border-opacity))
|
|
8210
8272
|
}
|
|
8211
8273
|
|
|
8212
|
-
.hover\:
|
|
8213
|
-
--tw-
|
|
8214
|
-
|
|
8274
|
+
.hover\:border-yellow-600:hover{
|
|
8275
|
+
--tw-border-opacity:1;
|
|
8276
|
+
border-color:rgb(202 138 4 / var(--tw-border-opacity))
|
|
8215
8277
|
}
|
|
8216
8278
|
|
|
8217
|
-
.hover\:
|
|
8218
|
-
--tw-
|
|
8219
|
-
|
|
8279
|
+
.hover\:border-lime-600:hover{
|
|
8280
|
+
--tw-border-opacity:1;
|
|
8281
|
+
border-color:rgb(101 163 13 / var(--tw-border-opacity))
|
|
8220
8282
|
}
|
|
8221
8283
|
|
|
8222
|
-
.hover\:
|
|
8223
|
-
--tw-
|
|
8224
|
-
|
|
8284
|
+
.hover\:border-green-600:hover{
|
|
8285
|
+
--tw-border-opacity:1;
|
|
8286
|
+
border-color:rgb(22 163 74 / var(--tw-border-opacity))
|
|
8225
8287
|
}
|
|
8226
8288
|
|
|
8227
|
-
.hover\:
|
|
8228
|
-
--tw-
|
|
8229
|
-
|
|
8289
|
+
.hover\:border-emerald-600:hover{
|
|
8290
|
+
--tw-border-opacity:1;
|
|
8291
|
+
border-color:rgb(5 150 105 / var(--tw-border-opacity))
|
|
8230
8292
|
}
|
|
8231
8293
|
|
|
8232
|
-
.hover\:
|
|
8233
|
-
--tw-
|
|
8234
|
-
|
|
8294
|
+
.hover\:border-teal-600:hover{
|
|
8295
|
+
--tw-border-opacity:1;
|
|
8296
|
+
border-color:rgb(13 148 136 / var(--tw-border-opacity))
|
|
8235
8297
|
}
|
|
8236
8298
|
|
|
8237
|
-
.hover\:
|
|
8238
|
-
--tw-
|
|
8239
|
-
|
|
8299
|
+
.hover\:border-cyan-600:hover{
|
|
8300
|
+
--tw-border-opacity:1;
|
|
8301
|
+
border-color:rgb(8 145 178 / var(--tw-border-opacity))
|
|
8240
8302
|
}
|
|
8241
8303
|
|
|
8242
|
-
.hover\:
|
|
8243
|
-
--tw-
|
|
8244
|
-
|
|
8304
|
+
.hover\:border-sky-600:hover{
|
|
8305
|
+
--tw-border-opacity:1;
|
|
8306
|
+
border-color:rgb(2 132 199 / var(--tw-border-opacity))
|
|
8245
8307
|
}
|
|
8246
8308
|
|
|
8247
|
-
.hover\:
|
|
8248
|
-
--tw-
|
|
8249
|
-
|
|
8309
|
+
.hover\:border-blue-600:hover{
|
|
8310
|
+
--tw-border-opacity:1;
|
|
8311
|
+
border-color:rgb(6 107 178 / var(--tw-border-opacity))
|
|
8250
8312
|
}
|
|
8251
8313
|
|
|
8252
|
-
.hover\:
|
|
8253
|
-
--tw-
|
|
8254
|
-
|
|
8314
|
+
.hover\:border-indigo-600:hover{
|
|
8315
|
+
--tw-border-opacity:1;
|
|
8316
|
+
border-color:rgb(79 70 229 / var(--tw-border-opacity))
|
|
8255
8317
|
}
|
|
8256
8318
|
|
|
8257
|
-
.hover\:
|
|
8258
|
-
--tw-
|
|
8259
|
-
|
|
8319
|
+
.hover\:border-violet-600:hover{
|
|
8320
|
+
--tw-border-opacity:1;
|
|
8321
|
+
border-color:rgb(124 58 237 / var(--tw-border-opacity))
|
|
8260
8322
|
}
|
|
8261
8323
|
|
|
8262
|
-
.hover\:
|
|
8263
|
-
--tw-
|
|
8264
|
-
|
|
8324
|
+
.hover\:border-purple-600:hover{
|
|
8325
|
+
--tw-border-opacity:1;
|
|
8326
|
+
border-color:rgb(147 51 234 / var(--tw-border-opacity))
|
|
8265
8327
|
}
|
|
8266
8328
|
|
|
8267
|
-
.hover\:
|
|
8268
|
-
--tw-
|
|
8269
|
-
|
|
8329
|
+
.hover\:border-fuchsia-600:hover{
|
|
8330
|
+
--tw-border-opacity:1;
|
|
8331
|
+
border-color:rgb(192 38 211 / var(--tw-border-opacity))
|
|
8332
|
+
}
|
|
8333
|
+
|
|
8334
|
+
.hover\:border-pink-600:hover{
|
|
8335
|
+
--tw-border-opacity:1;
|
|
8336
|
+
border-color:rgb(219 39 119 / var(--tw-border-opacity))
|
|
8337
|
+
}
|
|
8338
|
+
|
|
8339
|
+
.hover\:border-rose-600:hover{
|
|
8340
|
+
--tw-border-opacity:1;
|
|
8341
|
+
border-color:rgb(225 29 72 / var(--tw-border-opacity))
|
|
8342
|
+
}
|
|
8343
|
+
|
|
8344
|
+
.hover\:border-primary-600:hover{
|
|
8345
|
+
border-color:rgb(var(--color-primary-600))
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
.hover\:bg-slate-600:hover{
|
|
8349
|
+
--tw-bg-opacity:1;
|
|
8350
|
+
background-color:rgb(71 85 105 / var(--tw-bg-opacity))
|
|
8351
|
+
}
|
|
8352
|
+
|
|
8353
|
+
.hover\:bg-slate-100:hover{
|
|
8354
|
+
--tw-bg-opacity:1;
|
|
8355
|
+
background-color:rgb(241 245 249 / var(--tw-bg-opacity))
|
|
8356
|
+
}
|
|
8357
|
+
|
|
8358
|
+
.hover\:bg-gray-600:hover{
|
|
8359
|
+
--tw-bg-opacity:1;
|
|
8360
|
+
background-color:rgb(94 100 110 / var(--tw-bg-opacity))
|
|
8361
|
+
}
|
|
8362
|
+
|
|
8363
|
+
.hover\:bg-gray-100:hover{
|
|
8364
|
+
--tw-bg-opacity:1;
|
|
8365
|
+
background-color:rgb(227 229 232 / var(--tw-bg-opacity))
|
|
8366
|
+
}
|
|
8367
|
+
|
|
8368
|
+
.hover\:bg-zinc-600:hover{
|
|
8369
|
+
--tw-bg-opacity:1;
|
|
8370
|
+
background-color:rgb(82 82 91 / var(--tw-bg-opacity))
|
|
8371
|
+
}
|
|
8372
|
+
|
|
8373
|
+
.hover\:bg-zinc-100:hover{
|
|
8374
|
+
--tw-bg-opacity:1;
|
|
8375
|
+
background-color:rgb(244 244 245 / var(--tw-bg-opacity))
|
|
8376
|
+
}
|
|
8377
|
+
|
|
8378
|
+
.hover\:bg-neutral-600:hover{
|
|
8379
|
+
--tw-bg-opacity:1;
|
|
8380
|
+
background-color:rgb(82 82 82 / var(--tw-bg-opacity))
|
|
8381
|
+
}
|
|
8382
|
+
|
|
8383
|
+
.hover\:bg-neutral-100:hover{
|
|
8384
|
+
--tw-bg-opacity:1;
|
|
8385
|
+
background-color:rgb(245 245 245 / var(--tw-bg-opacity))
|
|
8386
|
+
}
|
|
8387
|
+
|
|
8388
|
+
.hover\:bg-stone-600:hover{
|
|
8389
|
+
--tw-bg-opacity:1;
|
|
8390
|
+
background-color:rgb(87 83 78 / var(--tw-bg-opacity))
|
|
8391
|
+
}
|
|
8392
|
+
|
|
8393
|
+
.hover\:bg-stone-100:hover{
|
|
8394
|
+
--tw-bg-opacity:1;
|
|
8395
|
+
background-color:rgb(245 245 244 / var(--tw-bg-opacity))
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
.hover\:bg-red-600:hover{
|
|
8399
|
+
--tw-bg-opacity:1;
|
|
8400
|
+
background-color:rgb(220 38 38 / var(--tw-bg-opacity))
|
|
8401
|
+
}
|
|
8402
|
+
|
|
8403
|
+
.hover\:bg-red-100:hover{
|
|
8404
|
+
--tw-bg-opacity:1;
|
|
8405
|
+
background-color:rgb(254 226 226 / var(--tw-bg-opacity))
|
|
8406
|
+
}
|
|
8407
|
+
|
|
8408
|
+
.hover\:bg-orange-600:hover{
|
|
8409
|
+
--tw-bg-opacity:1;
|
|
8410
|
+
background-color:rgb(234 88 12 / var(--tw-bg-opacity))
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8413
|
+
.hover\:bg-orange-100:hover{
|
|
8414
|
+
--tw-bg-opacity:1;
|
|
8415
|
+
background-color:rgb(255 237 213 / var(--tw-bg-opacity))
|
|
8416
|
+
}
|
|
8417
|
+
|
|
8418
|
+
.hover\:bg-amber-600:hover{
|
|
8419
|
+
--tw-bg-opacity:1;
|
|
8420
|
+
background-color:rgb(217 119 6 / var(--tw-bg-opacity))
|
|
8421
|
+
}
|
|
8422
|
+
|
|
8423
|
+
.hover\:bg-amber-100:hover{
|
|
8424
|
+
--tw-bg-opacity:1;
|
|
8425
|
+
background-color:rgb(254 243 199 / var(--tw-bg-opacity))
|
|
8426
|
+
}
|
|
8427
|
+
|
|
8428
|
+
.hover\:bg-yellow-600:hover{
|
|
8429
|
+
--tw-bg-opacity:1;
|
|
8430
|
+
background-color:rgb(202 138 4 / var(--tw-bg-opacity))
|
|
8431
|
+
}
|
|
8432
|
+
|
|
8433
|
+
.hover\:bg-yellow-100:hover{
|
|
8434
|
+
--tw-bg-opacity:1;
|
|
8435
|
+
background-color:rgb(254 249 195 / var(--tw-bg-opacity))
|
|
8436
|
+
}
|
|
8437
|
+
|
|
8438
|
+
.hover\:bg-lime-600:hover{
|
|
8439
|
+
--tw-bg-opacity:1;
|
|
8440
|
+
background-color:rgb(101 163 13 / var(--tw-bg-opacity))
|
|
8441
|
+
}
|
|
8442
|
+
|
|
8443
|
+
.hover\:bg-lime-100:hover{
|
|
8444
|
+
--tw-bg-opacity:1;
|
|
8445
|
+
background-color:rgb(236 252 203 / var(--tw-bg-opacity))
|
|
8446
|
+
}
|
|
8447
|
+
|
|
8448
|
+
.hover\:bg-green-600:hover{
|
|
8449
|
+
--tw-bg-opacity:1;
|
|
8450
|
+
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
|
8451
|
+
}
|
|
8452
|
+
|
|
8453
|
+
.hover\:bg-green-100:hover{
|
|
8454
|
+
--tw-bg-opacity:1;
|
|
8455
|
+
background-color:rgb(220 252 231 / var(--tw-bg-opacity))
|
|
8456
|
+
}
|
|
8457
|
+
|
|
8458
|
+
.hover\:bg-emerald-600:hover{
|
|
8459
|
+
--tw-bg-opacity:1;
|
|
8460
|
+
background-color:rgb(5 150 105 / var(--tw-bg-opacity))
|
|
8461
|
+
}
|
|
8462
|
+
|
|
8463
|
+
.hover\:bg-emerald-100:hover{
|
|
8464
|
+
--tw-bg-opacity:1;
|
|
8465
|
+
background-color:rgb(209 250 229 / var(--tw-bg-opacity))
|
|
8466
|
+
}
|
|
8467
|
+
|
|
8468
|
+
.hover\:bg-teal-600:hover{
|
|
8469
|
+
--tw-bg-opacity:1;
|
|
8470
|
+
background-color:rgb(13 148 136 / var(--tw-bg-opacity))
|
|
8471
|
+
}
|
|
8472
|
+
|
|
8473
|
+
.hover\:bg-teal-100:hover{
|
|
8474
|
+
--tw-bg-opacity:1;
|
|
8475
|
+
background-color:rgb(204 251 241 / var(--tw-bg-opacity))
|
|
8476
|
+
}
|
|
8477
|
+
|
|
8478
|
+
.hover\:bg-cyan-600:hover{
|
|
8479
|
+
--tw-bg-opacity:1;
|
|
8480
|
+
background-color:rgb(8 145 178 / var(--tw-bg-opacity))
|
|
8481
|
+
}
|
|
8482
|
+
|
|
8483
|
+
.hover\:bg-cyan-100:hover{
|
|
8484
|
+
--tw-bg-opacity:1;
|
|
8485
|
+
background-color:rgb(207 250 254 / var(--tw-bg-opacity))
|
|
8486
|
+
}
|
|
8487
|
+
|
|
8488
|
+
.hover\:bg-sky-600:hover{
|
|
8489
|
+
--tw-bg-opacity:1;
|
|
8490
|
+
background-color:rgb(2 132 199 / var(--tw-bg-opacity))
|
|
8491
|
+
}
|
|
8492
|
+
|
|
8493
|
+
.hover\:bg-sky-100:hover{
|
|
8494
|
+
--tw-bg-opacity:1;
|
|
8495
|
+
background-color:rgb(224 242 254 / var(--tw-bg-opacity))
|
|
8496
|
+
}
|
|
8497
|
+
|
|
8498
|
+
.hover\:bg-blue-600:hover{
|
|
8499
|
+
--tw-bg-opacity:1;
|
|
8500
|
+
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
|
8501
|
+
}
|
|
8502
|
+
|
|
8503
|
+
.hover\:bg-blue-100:hover{
|
|
8504
|
+
--tw-bg-opacity:1;
|
|
8505
|
+
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
|
8506
|
+
}
|
|
8507
|
+
|
|
8508
|
+
.hover\:bg-indigo-600:hover{
|
|
8509
|
+
--tw-bg-opacity:1;
|
|
8510
|
+
background-color:rgb(79 70 229 / var(--tw-bg-opacity))
|
|
8511
|
+
}
|
|
8512
|
+
|
|
8513
|
+
.hover\:bg-indigo-100:hover{
|
|
8514
|
+
--tw-bg-opacity:1;
|
|
8515
|
+
background-color:rgb(224 231 255 / var(--tw-bg-opacity))
|
|
8516
|
+
}
|
|
8517
|
+
|
|
8518
|
+
.hover\:bg-violet-600:hover{
|
|
8519
|
+
--tw-bg-opacity:1;
|
|
8520
|
+
background-color:rgb(124 58 237 / var(--tw-bg-opacity))
|
|
8521
|
+
}
|
|
8522
|
+
|
|
8523
|
+
.hover\:bg-violet-100:hover{
|
|
8524
|
+
--tw-bg-opacity:1;
|
|
8525
|
+
background-color:rgb(237 233 254 / var(--tw-bg-opacity))
|
|
8526
|
+
}
|
|
8527
|
+
|
|
8528
|
+
.hover\:bg-purple-600:hover{
|
|
8529
|
+
--tw-bg-opacity:1;
|
|
8530
|
+
background-color:rgb(147 51 234 / var(--tw-bg-opacity))
|
|
8531
|
+
}
|
|
8532
|
+
|
|
8533
|
+
.hover\:bg-purple-100:hover{
|
|
8534
|
+
--tw-bg-opacity:1;
|
|
8535
|
+
background-color:rgb(243 232 255 / var(--tw-bg-opacity))
|
|
8536
|
+
}
|
|
8537
|
+
|
|
8538
|
+
.hover\:bg-fuchsia-600:hover{
|
|
8539
|
+
--tw-bg-opacity:1;
|
|
8540
|
+
background-color:rgb(192 38 211 / var(--tw-bg-opacity))
|
|
8270
8541
|
}
|
|
8271
8542
|
|
|
8272
8543
|
.hover\:bg-fuchsia-100:hover{
|
|
@@ -8274,29 +8545,36 @@ trix-editor {
|
|
|
8274
8545
|
background-color:rgb(250 232 255 / var(--tw-bg-opacity))
|
|
8275
8546
|
}
|
|
8276
8547
|
|
|
8548
|
+
.hover\:bg-pink-600:hover{
|
|
8549
|
+
--tw-bg-opacity:1;
|
|
8550
|
+
background-color:rgb(219 39 119 / var(--tw-bg-opacity))
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8277
8553
|
.hover\:bg-pink-100:hover{
|
|
8278
8554
|
--tw-bg-opacity:1;
|
|
8279
8555
|
background-color:rgb(252 231 243 / var(--tw-bg-opacity))
|
|
8280
8556
|
}
|
|
8281
8557
|
|
|
8558
|
+
.hover\:bg-rose-600:hover{
|
|
8559
|
+
--tw-bg-opacity:1;
|
|
8560
|
+
background-color:rgb(225 29 72 / var(--tw-bg-opacity))
|
|
8561
|
+
}
|
|
8562
|
+
|
|
8282
8563
|
.hover\:bg-rose-100:hover{
|
|
8283
8564
|
--tw-bg-opacity:1;
|
|
8284
8565
|
background-color:rgb(255 228 230 / var(--tw-bg-opacity))
|
|
8285
8566
|
}
|
|
8286
8567
|
|
|
8287
|
-
.hover\:bg-primary-
|
|
8288
|
-
--
|
|
8289
|
-
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
|
8568
|
+
.hover\:bg-primary-600:hover{
|
|
8569
|
+
background-color:rgb(var(--color-primary-600))
|
|
8290
8570
|
}
|
|
8291
8571
|
|
|
8292
|
-
.hover\:bg-
|
|
8293
|
-
--
|
|
8294
|
-
background-color:rgb(8 134 222 / var(--tw-bg-opacity))
|
|
8572
|
+
.hover\:bg-primary-100:hover{
|
|
8573
|
+
background-color:rgb(var(--color-primary-100))
|
|
8295
8574
|
}
|
|
8296
8575
|
|
|
8297
|
-
.hover\:bg-primary-
|
|
8298
|
-
--
|
|
8299
|
-
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
|
8576
|
+
.hover\:bg-primary-500:hover{
|
|
8577
|
+
background-color:rgb(var(--color-primary-500))
|
|
8300
8578
|
}
|
|
8301
8579
|
|
|
8302
8580
|
.hover\:bg-gray-50:hover{
|
|
@@ -8309,11 +8587,6 @@ trix-editor {
|
|
|
8309
8587
|
color:rgb(117 125 138 / var(--tw-text-opacity))
|
|
8310
8588
|
}
|
|
8311
8589
|
|
|
8312
|
-
.hover\:text-gray-400:hover{
|
|
8313
|
-
--tw-text-opacity:1;
|
|
8314
|
-
color:rgb(145 151 161 / var(--tw-text-opacity))
|
|
8315
|
-
}
|
|
8316
|
-
|
|
8317
8590
|
.hover\:text-white:hover{
|
|
8318
8591
|
--tw-text-opacity:1;
|
|
8319
8592
|
color:rgb(255 255 255 / var(--tw-text-opacity))
|
|
@@ -8334,20 +8607,11 @@ trix-editor {
|
|
|
8334
8607
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
8335
8608
|
}
|
|
8336
8609
|
|
|
8337
|
-
.focus\:z-10:focus{
|
|
8338
|
-
z-index:10
|
|
8339
|
-
}
|
|
8340
|
-
|
|
8341
8610
|
.focus\:border-gray-600:focus{
|
|
8342
8611
|
--tw-border-opacity:1;
|
|
8343
8612
|
border-color:rgb(94 100 110 / var(--tw-border-opacity))
|
|
8344
8613
|
}
|
|
8345
8614
|
|
|
8346
|
-
.focus\:border-blue-300:focus{
|
|
8347
|
-
--tw-border-opacity:1;
|
|
8348
|
-
border-color:rgb(107 182 235 / var(--tw-border-opacity))
|
|
8349
|
-
}
|
|
8350
|
-
|
|
8351
8615
|
.focus\:border-gray-300:focus{
|
|
8352
8616
|
--tw-border-opacity:1;
|
|
8353
8617
|
border-color:rgb(172 177 185 / var(--tw-border-opacity))
|
|
@@ -8383,6 +8647,10 @@ trix-editor {
|
|
|
8383
8647
|
outline-offset:2px
|
|
8384
8648
|
}
|
|
8385
8649
|
|
|
8650
|
+
.focus\:checked\:\!bg-primary-400:checked:focus{
|
|
8651
|
+
background-color:rgb(var(--color-primary-400)) !important
|
|
8652
|
+
}
|
|
8653
|
+
|
|
8386
8654
|
.focus-visible\:ring-0:focus-visible{
|
|
8387
8655
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
8388
8656
|
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -8399,124 +8667,237 @@ trix-editor {
|
|
|
8399
8667
|
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))
|
|
8400
8668
|
}
|
|
8401
8669
|
|
|
8670
|
+
.active\:border-slate-600:active{
|
|
8671
|
+
--tw-border-opacity:1;
|
|
8672
|
+
border-color:rgb(71 85 105 / var(--tw-border-opacity))
|
|
8673
|
+
}
|
|
8674
|
+
|
|
8402
8675
|
.active\:border-slate-500:active{
|
|
8403
8676
|
--tw-border-opacity:1;
|
|
8404
8677
|
border-color:rgb(100 116 139 / var(--tw-border-opacity))
|
|
8405
8678
|
}
|
|
8406
8679
|
|
|
8680
|
+
.active\:border-gray-600:active{
|
|
8681
|
+
--tw-border-opacity:1;
|
|
8682
|
+
border-color:rgb(94 100 110 / var(--tw-border-opacity))
|
|
8683
|
+
}
|
|
8684
|
+
|
|
8407
8685
|
.active\:border-gray-500:active{
|
|
8408
8686
|
--tw-border-opacity:1;
|
|
8409
8687
|
border-color:rgb(117 125 138 / var(--tw-border-opacity))
|
|
8410
8688
|
}
|
|
8411
8689
|
|
|
8690
|
+
.active\:border-zinc-600:active{
|
|
8691
|
+
--tw-border-opacity:1;
|
|
8692
|
+
border-color:rgb(82 82 91 / var(--tw-border-opacity))
|
|
8693
|
+
}
|
|
8694
|
+
|
|
8412
8695
|
.active\:border-zinc-500:active{
|
|
8413
8696
|
--tw-border-opacity:1;
|
|
8414
8697
|
border-color:rgb(113 113 122 / var(--tw-border-opacity))
|
|
8415
8698
|
}
|
|
8416
8699
|
|
|
8700
|
+
.active\:border-neutral-600:active{
|
|
8701
|
+
--tw-border-opacity:1;
|
|
8702
|
+
border-color:rgb(82 82 82 / var(--tw-border-opacity))
|
|
8703
|
+
}
|
|
8704
|
+
|
|
8417
8705
|
.active\:border-neutral-500:active{
|
|
8418
8706
|
--tw-border-opacity:1;
|
|
8419
8707
|
border-color:rgb(115 115 115 / var(--tw-border-opacity))
|
|
8420
8708
|
}
|
|
8421
8709
|
|
|
8710
|
+
.active\:border-stone-600:active{
|
|
8711
|
+
--tw-border-opacity:1;
|
|
8712
|
+
border-color:rgb(87 83 78 / var(--tw-border-opacity))
|
|
8713
|
+
}
|
|
8714
|
+
|
|
8422
8715
|
.active\:border-stone-500:active{
|
|
8423
8716
|
--tw-border-opacity:1;
|
|
8424
8717
|
border-color:rgb(120 113 108 / var(--tw-border-opacity))
|
|
8425
8718
|
}
|
|
8426
8719
|
|
|
8720
|
+
.active\:border-red-600:active{
|
|
8721
|
+
--tw-border-opacity:1;
|
|
8722
|
+
border-color:rgb(220 38 38 / var(--tw-border-opacity))
|
|
8723
|
+
}
|
|
8724
|
+
|
|
8427
8725
|
.active\:border-red-500:active{
|
|
8428
8726
|
--tw-border-opacity:1;
|
|
8429
8727
|
border-color:rgb(239 68 68 / var(--tw-border-opacity))
|
|
8430
8728
|
}
|
|
8431
8729
|
|
|
8730
|
+
.active\:border-orange-600:active{
|
|
8731
|
+
--tw-border-opacity:1;
|
|
8732
|
+
border-color:rgb(234 88 12 / var(--tw-border-opacity))
|
|
8733
|
+
}
|
|
8734
|
+
|
|
8432
8735
|
.active\:border-orange-500:active{
|
|
8433
8736
|
--tw-border-opacity:1;
|
|
8434
8737
|
border-color:rgb(249 115 22 / var(--tw-border-opacity))
|
|
8435
8738
|
}
|
|
8436
8739
|
|
|
8740
|
+
.active\:border-amber-600:active{
|
|
8741
|
+
--tw-border-opacity:1;
|
|
8742
|
+
border-color:rgb(217 119 6 / var(--tw-border-opacity))
|
|
8743
|
+
}
|
|
8744
|
+
|
|
8437
8745
|
.active\:border-amber-500:active{
|
|
8438
8746
|
--tw-border-opacity:1;
|
|
8439
8747
|
border-color:rgb(245 158 11 / var(--tw-border-opacity))
|
|
8440
8748
|
}
|
|
8441
8749
|
|
|
8750
|
+
.active\:border-yellow-600:active{
|
|
8751
|
+
--tw-border-opacity:1;
|
|
8752
|
+
border-color:rgb(202 138 4 / var(--tw-border-opacity))
|
|
8753
|
+
}
|
|
8754
|
+
|
|
8442
8755
|
.active\:border-yellow-500:active{
|
|
8443
8756
|
--tw-border-opacity:1;
|
|
8444
8757
|
border-color:rgb(234 179 8 / var(--tw-border-opacity))
|
|
8445
8758
|
}
|
|
8446
8759
|
|
|
8760
|
+
.active\:border-lime-600:active{
|
|
8761
|
+
--tw-border-opacity:1;
|
|
8762
|
+
border-color:rgb(101 163 13 / var(--tw-border-opacity))
|
|
8763
|
+
}
|
|
8764
|
+
|
|
8447
8765
|
.active\:border-lime-500:active{
|
|
8448
8766
|
--tw-border-opacity:1;
|
|
8449
8767
|
border-color:rgb(132 204 22 / var(--tw-border-opacity))
|
|
8450
8768
|
}
|
|
8451
8769
|
|
|
8770
|
+
.active\:border-green-600:active{
|
|
8771
|
+
--tw-border-opacity:1;
|
|
8772
|
+
border-color:rgb(22 163 74 / var(--tw-border-opacity))
|
|
8773
|
+
}
|
|
8774
|
+
|
|
8452
8775
|
.active\:border-green-500:active{
|
|
8453
8776
|
--tw-border-opacity:1;
|
|
8454
8777
|
border-color:rgb(34 197 94 / var(--tw-border-opacity))
|
|
8455
8778
|
}
|
|
8456
8779
|
|
|
8780
|
+
.active\:border-emerald-600:active{
|
|
8781
|
+
--tw-border-opacity:1;
|
|
8782
|
+
border-color:rgb(5 150 105 / var(--tw-border-opacity))
|
|
8783
|
+
}
|
|
8784
|
+
|
|
8457
8785
|
.active\:border-emerald-500:active{
|
|
8458
8786
|
--tw-border-opacity:1;
|
|
8459
8787
|
border-color:rgb(16 185 129 / var(--tw-border-opacity))
|
|
8460
8788
|
}
|
|
8461
8789
|
|
|
8790
|
+
.active\:border-teal-600:active{
|
|
8791
|
+
--tw-border-opacity:1;
|
|
8792
|
+
border-color:rgb(13 148 136 / var(--tw-border-opacity))
|
|
8793
|
+
}
|
|
8794
|
+
|
|
8462
8795
|
.active\:border-teal-500:active{
|
|
8463
8796
|
--tw-border-opacity:1;
|
|
8464
8797
|
border-color:rgb(20 184 166 / var(--tw-border-opacity))
|
|
8465
8798
|
}
|
|
8466
8799
|
|
|
8800
|
+
.active\:border-cyan-600:active{
|
|
8801
|
+
--tw-border-opacity:1;
|
|
8802
|
+
border-color:rgb(8 145 178 / var(--tw-border-opacity))
|
|
8803
|
+
}
|
|
8804
|
+
|
|
8467
8805
|
.active\:border-cyan-500:active{
|
|
8468
8806
|
--tw-border-opacity:1;
|
|
8469
8807
|
border-color:rgb(6 182 212 / var(--tw-border-opacity))
|
|
8470
8808
|
}
|
|
8471
8809
|
|
|
8810
|
+
.active\:border-sky-600:active{
|
|
8811
|
+
--tw-border-opacity:1;
|
|
8812
|
+
border-color:rgb(2 132 199 / var(--tw-border-opacity))
|
|
8813
|
+
}
|
|
8814
|
+
|
|
8472
8815
|
.active\:border-sky-500:active{
|
|
8473
8816
|
--tw-border-opacity:1;
|
|
8474
8817
|
border-color:rgb(14 165 233 / var(--tw-border-opacity))
|
|
8475
8818
|
}
|
|
8476
8819
|
|
|
8820
|
+
.active\:border-blue-600:active{
|
|
8821
|
+
--tw-border-opacity:1;
|
|
8822
|
+
border-color:rgb(6 107 178 / var(--tw-border-opacity))
|
|
8823
|
+
}
|
|
8824
|
+
|
|
8477
8825
|
.active\:border-blue-500:active{
|
|
8478
8826
|
--tw-border-opacity:1;
|
|
8479
8827
|
border-color:rgb(8 134 222 / var(--tw-border-opacity))
|
|
8480
8828
|
}
|
|
8481
8829
|
|
|
8830
|
+
.active\:border-indigo-600:active{
|
|
8831
|
+
--tw-border-opacity:1;
|
|
8832
|
+
border-color:rgb(79 70 229 / var(--tw-border-opacity))
|
|
8833
|
+
}
|
|
8834
|
+
|
|
8482
8835
|
.active\:border-indigo-500:active{
|
|
8483
8836
|
--tw-border-opacity:1;
|
|
8484
8837
|
border-color:rgb(99 102 241 / var(--tw-border-opacity))
|
|
8485
8838
|
}
|
|
8486
8839
|
|
|
8840
|
+
.active\:border-violet-600:active{
|
|
8841
|
+
--tw-border-opacity:1;
|
|
8842
|
+
border-color:rgb(124 58 237 / var(--tw-border-opacity))
|
|
8843
|
+
}
|
|
8844
|
+
|
|
8487
8845
|
.active\:border-violet-500:active{
|
|
8488
8846
|
--tw-border-opacity:1;
|
|
8489
8847
|
border-color:rgb(139 92 246 / var(--tw-border-opacity))
|
|
8490
8848
|
}
|
|
8491
8849
|
|
|
8850
|
+
.active\:border-purple-600:active{
|
|
8851
|
+
--tw-border-opacity:1;
|
|
8852
|
+
border-color:rgb(147 51 234 / var(--tw-border-opacity))
|
|
8853
|
+
}
|
|
8854
|
+
|
|
8492
8855
|
.active\:border-purple-500:active{
|
|
8493
8856
|
--tw-border-opacity:1;
|
|
8494
8857
|
border-color:rgb(168 85 247 / var(--tw-border-opacity))
|
|
8495
8858
|
}
|
|
8496
8859
|
|
|
8860
|
+
.active\:border-fuchsia-600:active{
|
|
8861
|
+
--tw-border-opacity:1;
|
|
8862
|
+
border-color:rgb(192 38 211 / var(--tw-border-opacity))
|
|
8863
|
+
}
|
|
8864
|
+
|
|
8497
8865
|
.active\:border-fuchsia-500:active{
|
|
8498
8866
|
--tw-border-opacity:1;
|
|
8499
8867
|
border-color:rgb(217 70 239 / var(--tw-border-opacity))
|
|
8500
8868
|
}
|
|
8501
8869
|
|
|
8870
|
+
.active\:border-pink-600:active{
|
|
8871
|
+
--tw-border-opacity:1;
|
|
8872
|
+
border-color:rgb(219 39 119 / var(--tw-border-opacity))
|
|
8873
|
+
}
|
|
8874
|
+
|
|
8502
8875
|
.active\:border-pink-500:active{
|
|
8503
8876
|
--tw-border-opacity:1;
|
|
8504
8877
|
border-color:rgb(236 72 153 / var(--tw-border-opacity))
|
|
8505
8878
|
}
|
|
8506
8879
|
|
|
8880
|
+
.active\:border-rose-600:active{
|
|
8881
|
+
--tw-border-opacity:1;
|
|
8882
|
+
border-color:rgb(225 29 72 / var(--tw-border-opacity))
|
|
8883
|
+
}
|
|
8884
|
+
|
|
8507
8885
|
.active\:border-rose-500:active{
|
|
8508
8886
|
--tw-border-opacity:1;
|
|
8509
8887
|
border-color:rgb(244 63 94 / var(--tw-border-opacity))
|
|
8510
8888
|
}
|
|
8511
8889
|
|
|
8890
|
+
.active\:border-primary-600:active{
|
|
8891
|
+
border-color:rgb(var(--color-primary-600))
|
|
8892
|
+
}
|
|
8893
|
+
|
|
8512
8894
|
.active\:border-primary-500:active{
|
|
8513
|
-
--
|
|
8514
|
-
border-color:rgb(8 134 222 / var(--tw-border-opacity))
|
|
8895
|
+
border-color:rgb(var(--color-primary-500))
|
|
8515
8896
|
}
|
|
8516
8897
|
|
|
8517
|
-
.active\:
|
|
8518
|
-
--tw-
|
|
8519
|
-
|
|
8898
|
+
.active\:bg-slate-600:active{
|
|
8899
|
+
--tw-bg-opacity:1;
|
|
8900
|
+
background-color:rgb(71 85 105 / var(--tw-bg-opacity))
|
|
8520
8901
|
}
|
|
8521
8902
|
|
|
8522
8903
|
.active\:bg-slate-100:active{
|
|
@@ -8524,129 +8905,222 @@ trix-editor {
|
|
|
8524
8905
|
background-color:rgb(241 245 249 / var(--tw-bg-opacity))
|
|
8525
8906
|
}
|
|
8526
8907
|
|
|
8908
|
+
.active\:bg-gray-600:active{
|
|
8909
|
+
--tw-bg-opacity:1;
|
|
8910
|
+
background-color:rgb(94 100 110 / var(--tw-bg-opacity))
|
|
8911
|
+
}
|
|
8912
|
+
|
|
8527
8913
|
.active\:bg-gray-100:active{
|
|
8528
8914
|
--tw-bg-opacity:1;
|
|
8529
8915
|
background-color:rgb(227 229 232 / var(--tw-bg-opacity))
|
|
8530
8916
|
}
|
|
8531
8917
|
|
|
8918
|
+
.active\:bg-zinc-600:active{
|
|
8919
|
+
--tw-bg-opacity:1;
|
|
8920
|
+
background-color:rgb(82 82 91 / var(--tw-bg-opacity))
|
|
8921
|
+
}
|
|
8922
|
+
|
|
8532
8923
|
.active\:bg-zinc-100:active{
|
|
8533
8924
|
--tw-bg-opacity:1;
|
|
8534
8925
|
background-color:rgb(244 244 245 / var(--tw-bg-opacity))
|
|
8535
8926
|
}
|
|
8536
8927
|
|
|
8928
|
+
.active\:bg-neutral-600:active{
|
|
8929
|
+
--tw-bg-opacity:1;
|
|
8930
|
+
background-color:rgb(82 82 82 / var(--tw-bg-opacity))
|
|
8931
|
+
}
|
|
8932
|
+
|
|
8537
8933
|
.active\:bg-neutral-100:active{
|
|
8538
8934
|
--tw-bg-opacity:1;
|
|
8539
8935
|
background-color:rgb(245 245 245 / var(--tw-bg-opacity))
|
|
8540
8936
|
}
|
|
8541
8937
|
|
|
8938
|
+
.active\:bg-stone-600:active{
|
|
8939
|
+
--tw-bg-opacity:1;
|
|
8940
|
+
background-color:rgb(87 83 78 / var(--tw-bg-opacity))
|
|
8941
|
+
}
|
|
8942
|
+
|
|
8542
8943
|
.active\:bg-stone-100:active{
|
|
8543
8944
|
--tw-bg-opacity:1;
|
|
8544
8945
|
background-color:rgb(245 245 244 / var(--tw-bg-opacity))
|
|
8545
8946
|
}
|
|
8546
8947
|
|
|
8948
|
+
.active\:bg-red-600:active{
|
|
8949
|
+
--tw-bg-opacity:1;
|
|
8950
|
+
background-color:rgb(220 38 38 / var(--tw-bg-opacity))
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8547
8953
|
.active\:bg-red-100:active{
|
|
8548
8954
|
--tw-bg-opacity:1;
|
|
8549
8955
|
background-color:rgb(254 226 226 / var(--tw-bg-opacity))
|
|
8550
8956
|
}
|
|
8551
8957
|
|
|
8958
|
+
.active\:bg-orange-600:active{
|
|
8959
|
+
--tw-bg-opacity:1;
|
|
8960
|
+
background-color:rgb(234 88 12 / var(--tw-bg-opacity))
|
|
8961
|
+
}
|
|
8962
|
+
|
|
8552
8963
|
.active\:bg-orange-100:active{
|
|
8553
8964
|
--tw-bg-opacity:1;
|
|
8554
8965
|
background-color:rgb(255 237 213 / var(--tw-bg-opacity))
|
|
8555
8966
|
}
|
|
8556
8967
|
|
|
8968
|
+
.active\:bg-amber-600:active{
|
|
8969
|
+
--tw-bg-opacity:1;
|
|
8970
|
+
background-color:rgb(217 119 6 / var(--tw-bg-opacity))
|
|
8971
|
+
}
|
|
8972
|
+
|
|
8557
8973
|
.active\:bg-amber-100:active{
|
|
8558
8974
|
--tw-bg-opacity:1;
|
|
8559
8975
|
background-color:rgb(254 243 199 / var(--tw-bg-opacity))
|
|
8560
8976
|
}
|
|
8561
8977
|
|
|
8978
|
+
.active\:bg-yellow-600:active{
|
|
8979
|
+
--tw-bg-opacity:1;
|
|
8980
|
+
background-color:rgb(202 138 4 / var(--tw-bg-opacity))
|
|
8981
|
+
}
|
|
8982
|
+
|
|
8562
8983
|
.active\:bg-yellow-100:active{
|
|
8563
8984
|
--tw-bg-opacity:1;
|
|
8564
8985
|
background-color:rgb(254 249 195 / var(--tw-bg-opacity))
|
|
8565
8986
|
}
|
|
8566
8987
|
|
|
8988
|
+
.active\:bg-lime-600:active{
|
|
8989
|
+
--tw-bg-opacity:1;
|
|
8990
|
+
background-color:rgb(101 163 13 / var(--tw-bg-opacity))
|
|
8991
|
+
}
|
|
8992
|
+
|
|
8567
8993
|
.active\:bg-lime-100:active{
|
|
8568
8994
|
--tw-bg-opacity:1;
|
|
8569
8995
|
background-color:rgb(236 252 203 / var(--tw-bg-opacity))
|
|
8570
8996
|
}
|
|
8571
8997
|
|
|
8998
|
+
.active\:bg-green-600:active{
|
|
8999
|
+
--tw-bg-opacity:1;
|
|
9000
|
+
background-color:rgb(22 163 74 / var(--tw-bg-opacity))
|
|
9001
|
+
}
|
|
9002
|
+
|
|
8572
9003
|
.active\:bg-green-100:active{
|
|
8573
9004
|
--tw-bg-opacity:1;
|
|
8574
9005
|
background-color:rgb(220 252 231 / var(--tw-bg-opacity))
|
|
8575
9006
|
}
|
|
8576
9007
|
|
|
9008
|
+
.active\:bg-emerald-600:active{
|
|
9009
|
+
--tw-bg-opacity:1;
|
|
9010
|
+
background-color:rgb(5 150 105 / var(--tw-bg-opacity))
|
|
9011
|
+
}
|
|
9012
|
+
|
|
8577
9013
|
.active\:bg-emerald-100:active{
|
|
8578
9014
|
--tw-bg-opacity:1;
|
|
8579
9015
|
background-color:rgb(209 250 229 / var(--tw-bg-opacity))
|
|
8580
9016
|
}
|
|
8581
9017
|
|
|
9018
|
+
.active\:bg-teal-600:active{
|
|
9019
|
+
--tw-bg-opacity:1;
|
|
9020
|
+
background-color:rgb(13 148 136 / var(--tw-bg-opacity))
|
|
9021
|
+
}
|
|
9022
|
+
|
|
8582
9023
|
.active\:bg-teal-100:active{
|
|
8583
9024
|
--tw-bg-opacity:1;
|
|
8584
9025
|
background-color:rgb(204 251 241 / var(--tw-bg-opacity))
|
|
8585
9026
|
}
|
|
8586
9027
|
|
|
9028
|
+
.active\:bg-cyan-600:active{
|
|
9029
|
+
--tw-bg-opacity:1;
|
|
9030
|
+
background-color:rgb(8 145 178 / var(--tw-bg-opacity))
|
|
9031
|
+
}
|
|
9032
|
+
|
|
8587
9033
|
.active\:bg-cyan-100:active{
|
|
8588
9034
|
--tw-bg-opacity:1;
|
|
8589
9035
|
background-color:rgb(207 250 254 / var(--tw-bg-opacity))
|
|
8590
9036
|
}
|
|
8591
9037
|
|
|
9038
|
+
.active\:bg-sky-600:active{
|
|
9039
|
+
--tw-bg-opacity:1;
|
|
9040
|
+
background-color:rgb(2 132 199 / var(--tw-bg-opacity))
|
|
9041
|
+
}
|
|
9042
|
+
|
|
8592
9043
|
.active\:bg-sky-100:active{
|
|
8593
9044
|
--tw-bg-opacity:1;
|
|
8594
9045
|
background-color:rgb(224 242 254 / var(--tw-bg-opacity))
|
|
8595
9046
|
}
|
|
8596
9047
|
|
|
9048
|
+
.active\:bg-blue-600:active{
|
|
9049
|
+
--tw-bg-opacity:1;
|
|
9050
|
+
background-color:rgb(6 107 178 / var(--tw-bg-opacity))
|
|
9051
|
+
}
|
|
9052
|
+
|
|
8597
9053
|
.active\:bg-blue-100:active{
|
|
8598
9054
|
--tw-bg-opacity:1;
|
|
8599
9055
|
background-color:rgb(206 231 248 / var(--tw-bg-opacity))
|
|
8600
9056
|
}
|
|
8601
9057
|
|
|
9058
|
+
.active\:bg-indigo-600:active{
|
|
9059
|
+
--tw-bg-opacity:1;
|
|
9060
|
+
background-color:rgb(79 70 229 / var(--tw-bg-opacity))
|
|
9061
|
+
}
|
|
9062
|
+
|
|
8602
9063
|
.active\:bg-indigo-100:active{
|
|
8603
9064
|
--tw-bg-opacity:1;
|
|
8604
9065
|
background-color:rgb(224 231 255 / var(--tw-bg-opacity))
|
|
8605
9066
|
}
|
|
8606
9067
|
|
|
9068
|
+
.active\:bg-violet-600:active{
|
|
9069
|
+
--tw-bg-opacity:1;
|
|
9070
|
+
background-color:rgb(124 58 237 / var(--tw-bg-opacity))
|
|
9071
|
+
}
|
|
9072
|
+
|
|
8607
9073
|
.active\:bg-violet-100:active{
|
|
8608
9074
|
--tw-bg-opacity:1;
|
|
8609
9075
|
background-color:rgb(237 233 254 / var(--tw-bg-opacity))
|
|
8610
9076
|
}
|
|
8611
9077
|
|
|
9078
|
+
.active\:bg-purple-600:active{
|
|
9079
|
+
--tw-bg-opacity:1;
|
|
9080
|
+
background-color:rgb(147 51 234 / var(--tw-bg-opacity))
|
|
9081
|
+
}
|
|
9082
|
+
|
|
8612
9083
|
.active\:bg-purple-100:active{
|
|
8613
9084
|
--tw-bg-opacity:1;
|
|
8614
9085
|
background-color:rgb(243 232 255 / var(--tw-bg-opacity))
|
|
8615
9086
|
}
|
|
8616
9087
|
|
|
9088
|
+
.active\:bg-fuchsia-600:active{
|
|
9089
|
+
--tw-bg-opacity:1;
|
|
9090
|
+
background-color:rgb(192 38 211 / var(--tw-bg-opacity))
|
|
9091
|
+
}
|
|
9092
|
+
|
|
8617
9093
|
.active\:bg-fuchsia-100:active{
|
|
8618
9094
|
--tw-bg-opacity:1;
|
|
8619
9095
|
background-color:rgb(250 232 255 / var(--tw-bg-opacity))
|
|
8620
9096
|
}
|
|
8621
9097
|
|
|
8622
|
-
.active\:bg-pink-
|
|
9098
|
+
.active\:bg-pink-600:active{
|
|
8623
9099
|
--tw-bg-opacity:1;
|
|
8624
|
-
background-color:rgb(
|
|
9100
|
+
background-color:rgb(219 39 119 / var(--tw-bg-opacity))
|
|
8625
9101
|
}
|
|
8626
9102
|
|
|
8627
|
-
.active\:bg-
|
|
9103
|
+
.active\:bg-pink-100:active{
|
|
8628
9104
|
--tw-bg-opacity:1;
|
|
8629
|
-
background-color:rgb(
|
|
9105
|
+
background-color:rgb(252 231 243 / var(--tw-bg-opacity))
|
|
8630
9106
|
}
|
|
8631
9107
|
|
|
8632
|
-
.active\:bg-
|
|
9108
|
+
.active\:bg-rose-600:active{
|
|
8633
9109
|
--tw-bg-opacity:1;
|
|
8634
|
-
background-color:rgb(
|
|
9110
|
+
background-color:rgb(225 29 72 / var(--tw-bg-opacity))
|
|
8635
9111
|
}
|
|
8636
9112
|
|
|
8637
|
-
.active\:bg-
|
|
9113
|
+
.active\:bg-rose-100:active{
|
|
8638
9114
|
--tw-bg-opacity:1;
|
|
8639
|
-
background-color:rgb(
|
|
9115
|
+
background-color:rgb(255 228 230 / var(--tw-bg-opacity))
|
|
8640
9116
|
}
|
|
8641
9117
|
|
|
8642
|
-
.active\:
|
|
8643
|
-
--
|
|
8644
|
-
color:rgb(70 75 83 / var(--tw-text-opacity))
|
|
9118
|
+
.active\:bg-primary-600:active{
|
|
9119
|
+
background-color:rgb(var(--color-primary-600))
|
|
8645
9120
|
}
|
|
8646
9121
|
|
|
8647
|
-
.active\:
|
|
8648
|
-
--
|
|
8649
|
-
color:rgb(117 125 138 / var(--tw-text-opacity))
|
|
9122
|
+
.active\:bg-primary-100:active{
|
|
9123
|
+
background-color:rgb(var(--color-primary-100))
|
|
8650
9124
|
}
|
|
8651
9125
|
|
|
8652
9126
|
.active\:outline:active{
|
|
@@ -8657,100 +9131,188 @@ trix-editor {
|
|
|
8657
9131
|
outline-width:1px
|
|
8658
9132
|
}
|
|
8659
9133
|
|
|
9134
|
+
.active\:outline-slate-600:active{
|
|
9135
|
+
outline-color:#475569
|
|
9136
|
+
}
|
|
9137
|
+
|
|
8660
9138
|
.active\:outline-slate-500:active{
|
|
8661
9139
|
outline-color:#64748b
|
|
8662
9140
|
}
|
|
8663
9141
|
|
|
9142
|
+
.active\:outline-gray-600:active{
|
|
9143
|
+
outline-color:#5E646E
|
|
9144
|
+
}
|
|
9145
|
+
|
|
8664
9146
|
.active\:outline-gray-500:active{
|
|
8665
9147
|
outline-color:#757D8A
|
|
8666
9148
|
}
|
|
8667
9149
|
|
|
9150
|
+
.active\:outline-zinc-600:active{
|
|
9151
|
+
outline-color:#52525b
|
|
9152
|
+
}
|
|
9153
|
+
|
|
8668
9154
|
.active\:outline-zinc-500:active{
|
|
8669
9155
|
outline-color:#71717a
|
|
8670
9156
|
}
|
|
8671
9157
|
|
|
9158
|
+
.active\:outline-neutral-600:active{
|
|
9159
|
+
outline-color:#525252
|
|
9160
|
+
}
|
|
9161
|
+
|
|
8672
9162
|
.active\:outline-neutral-500:active{
|
|
8673
9163
|
outline-color:#737373
|
|
8674
9164
|
}
|
|
8675
9165
|
|
|
9166
|
+
.active\:outline-stone-600:active{
|
|
9167
|
+
outline-color:#57534e
|
|
9168
|
+
}
|
|
9169
|
+
|
|
8676
9170
|
.active\:outline-stone-500:active{
|
|
8677
9171
|
outline-color:#78716c
|
|
8678
9172
|
}
|
|
8679
9173
|
|
|
9174
|
+
.active\:outline-red-600:active{
|
|
9175
|
+
outline-color:#dc2626
|
|
9176
|
+
}
|
|
9177
|
+
|
|
8680
9178
|
.active\:outline-red-500:active{
|
|
8681
9179
|
outline-color:#ef4444
|
|
8682
9180
|
}
|
|
8683
9181
|
|
|
9182
|
+
.active\:outline-orange-600:active{
|
|
9183
|
+
outline-color:#ea580c
|
|
9184
|
+
}
|
|
9185
|
+
|
|
8684
9186
|
.active\:outline-orange-500:active{
|
|
8685
9187
|
outline-color:#f97316
|
|
8686
9188
|
}
|
|
8687
9189
|
|
|
9190
|
+
.active\:outline-amber-600:active{
|
|
9191
|
+
outline-color:#d97706
|
|
9192
|
+
}
|
|
9193
|
+
|
|
8688
9194
|
.active\:outline-amber-500:active{
|
|
8689
9195
|
outline-color:#f59e0b
|
|
8690
9196
|
}
|
|
8691
9197
|
|
|
9198
|
+
.active\:outline-yellow-600:active{
|
|
9199
|
+
outline-color:#ca8a04
|
|
9200
|
+
}
|
|
9201
|
+
|
|
8692
9202
|
.active\:outline-yellow-500:active{
|
|
8693
9203
|
outline-color:#eab308
|
|
8694
9204
|
}
|
|
8695
9205
|
|
|
9206
|
+
.active\:outline-lime-600:active{
|
|
9207
|
+
outline-color:#65a30d
|
|
9208
|
+
}
|
|
9209
|
+
|
|
8696
9210
|
.active\:outline-lime-500:active{
|
|
8697
9211
|
outline-color:#84cc16
|
|
8698
9212
|
}
|
|
8699
9213
|
|
|
9214
|
+
.active\:outline-green-600:active{
|
|
9215
|
+
outline-color:#16a34a
|
|
9216
|
+
}
|
|
9217
|
+
|
|
8700
9218
|
.active\:outline-green-500:active{
|
|
8701
9219
|
outline-color:#22c55e
|
|
8702
9220
|
}
|
|
8703
9221
|
|
|
9222
|
+
.active\:outline-emerald-600:active{
|
|
9223
|
+
outline-color:#059669
|
|
9224
|
+
}
|
|
9225
|
+
|
|
8704
9226
|
.active\:outline-emerald-500:active{
|
|
8705
9227
|
outline-color:#10b981
|
|
8706
9228
|
}
|
|
8707
9229
|
|
|
9230
|
+
.active\:outline-teal-600:active{
|
|
9231
|
+
outline-color:#0d9488
|
|
9232
|
+
}
|
|
9233
|
+
|
|
8708
9234
|
.active\:outline-teal-500:active{
|
|
8709
9235
|
outline-color:#14b8a6
|
|
8710
9236
|
}
|
|
8711
9237
|
|
|
9238
|
+
.active\:outline-cyan-600:active{
|
|
9239
|
+
outline-color:#0891b2
|
|
9240
|
+
}
|
|
9241
|
+
|
|
8712
9242
|
.active\:outline-cyan-500:active{
|
|
8713
9243
|
outline-color:#06b6d4
|
|
8714
9244
|
}
|
|
8715
9245
|
|
|
9246
|
+
.active\:outline-sky-600:active{
|
|
9247
|
+
outline-color:#0284c7
|
|
9248
|
+
}
|
|
9249
|
+
|
|
8716
9250
|
.active\:outline-sky-500:active{
|
|
8717
9251
|
outline-color:#0ea5e9
|
|
8718
9252
|
}
|
|
8719
9253
|
|
|
9254
|
+
.active\:outline-blue-600:active{
|
|
9255
|
+
outline-color:#066BB2
|
|
9256
|
+
}
|
|
9257
|
+
|
|
8720
9258
|
.active\:outline-blue-500:active{
|
|
8721
9259
|
outline-color:#0886DE
|
|
8722
9260
|
}
|
|
8723
9261
|
|
|
9262
|
+
.active\:outline-indigo-600:active{
|
|
9263
|
+
outline-color:#4f46e5
|
|
9264
|
+
}
|
|
9265
|
+
|
|
8724
9266
|
.active\:outline-indigo-500:active{
|
|
8725
9267
|
outline-color:#6366f1
|
|
8726
9268
|
}
|
|
8727
9269
|
|
|
9270
|
+
.active\:outline-violet-600:active{
|
|
9271
|
+
outline-color:#7c3aed
|
|
9272
|
+
}
|
|
9273
|
+
|
|
8728
9274
|
.active\:outline-violet-500:active{
|
|
8729
9275
|
outline-color:#8b5cf6
|
|
8730
9276
|
}
|
|
8731
9277
|
|
|
9278
|
+
.active\:outline-purple-600:active{
|
|
9279
|
+
outline-color:#9333ea
|
|
9280
|
+
}
|
|
9281
|
+
|
|
8732
9282
|
.active\:outline-purple-500:active{
|
|
8733
9283
|
outline-color:#a855f7
|
|
8734
9284
|
}
|
|
8735
9285
|
|
|
9286
|
+
.active\:outline-fuchsia-600:active{
|
|
9287
|
+
outline-color:#c026d3
|
|
9288
|
+
}
|
|
9289
|
+
|
|
8736
9290
|
.active\:outline-fuchsia-500:active{
|
|
8737
9291
|
outline-color:#d946ef
|
|
8738
9292
|
}
|
|
8739
9293
|
|
|
9294
|
+
.active\:outline-pink-600:active{
|
|
9295
|
+
outline-color:#db2777
|
|
9296
|
+
}
|
|
9297
|
+
|
|
8740
9298
|
.active\:outline-pink-500:active{
|
|
8741
9299
|
outline-color:#ec4899
|
|
8742
9300
|
}
|
|
8743
9301
|
|
|
9302
|
+
.active\:outline-rose-600:active{
|
|
9303
|
+
outline-color:#e11d48
|
|
9304
|
+
}
|
|
9305
|
+
|
|
8744
9306
|
.active\:outline-rose-500:active{
|
|
8745
9307
|
outline-color:#f43f5e
|
|
8746
9308
|
}
|
|
8747
9309
|
|
|
8748
|
-
.active\:outline-primary-
|
|
8749
|
-
outline-color
|
|
9310
|
+
.active\:outline-primary-600:active{
|
|
9311
|
+
outline-color:rgb(var(--color-primary-600))
|
|
8750
9312
|
}
|
|
8751
9313
|
|
|
8752
|
-
.active\:outline-primary-
|
|
8753
|
-
outline-color
|
|
9314
|
+
.active\:outline-primary-500:active{
|
|
9315
|
+
outline-color:rgb(var(--color-primary-500))
|
|
8754
9316
|
}
|
|
8755
9317
|
|
|
8756
9318
|
.disabled\:cursor-not-allowed:disabled{
|
|
@@ -8948,10 +9510,6 @@ trix-editor {
|
|
|
8948
9510
|
}
|
|
8949
9511
|
|
|
8950
9512
|
@media (min-width: 768px){
|
|
8951
|
-
.md\:inline-flex{
|
|
8952
|
-
display:inline-flex
|
|
8953
|
-
}
|
|
8954
|
-
|
|
8955
9513
|
.md\:h-14{
|
|
8956
9514
|
height:3.5rem
|
|
8957
9515
|
}
|