uchi 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +222 -0
- data/app/assets/config/uchi_manifest.js +2 -0
- data/app/assets/javascripts/uchi/application.js +6095 -0
- data/app/assets/javascripts/uchi.js +4 -0
- data/app/assets/stylesheets/uchi/application.css +3971 -0
- data/app/assets/stylesheets/uchi/uchi.css +17 -0
- data/app/assets/tailwind/uchi.css +21 -0
- data/app/components/flowbite/breadcrumb.rb +33 -0
- data/app/components/flowbite/breadcrumb_home.rb +26 -0
- data/app/components/flowbite/breadcrumb_item/current.rb +33 -0
- data/app/components/flowbite/breadcrumb_item/first.rb +35 -0
- data/app/components/flowbite/breadcrumb_item.rb +48 -0
- data/app/components/flowbite/breadcrumb_separator.rb +30 -0
- data/app/components/flowbite/button/outline.rb +22 -0
- data/app/components/flowbite/button/pill.rb +40 -0
- data/app/components/flowbite/button.rb +92 -0
- data/app/components/flowbite/card.rb +45 -0
- data/app/components/flowbite/input/checkbox.rb +73 -0
- data/app/components/flowbite/input/date.rb +11 -0
- data/app/components/flowbite/input/date_time.rb +11 -0
- data/app/components/flowbite/input/email.rb +12 -0
- data/app/components/flowbite/input/field.rb +117 -0
- data/app/components/flowbite/input/file.rb +30 -0
- data/app/components/flowbite/input/hint.rb +57 -0
- data/app/components/flowbite/input/label.rb +82 -0
- data/app/components/flowbite/input/number.rb +11 -0
- data/app/components/flowbite/input/password.rb +11 -0
- data/app/components/flowbite/input/phone.rb +11 -0
- data/app/components/flowbite/input/radio_button.rb +50 -0
- data/app/components/flowbite/input/select.rb +49 -0
- data/app/components/flowbite/input/textarea.rb +42 -0
- data/app/components/flowbite/input/url.rb +12 -0
- data/app/components/flowbite/input/validation_error.rb +11 -0
- data/app/components/flowbite/input_field/checkbox.html.erb +14 -0
- data/app/components/flowbite/input_field/checkbox.rb +54 -0
- data/app/components/flowbite/input_field/date.rb +13 -0
- data/app/components/flowbite/input_field/date_time.rb +13 -0
- data/app/components/flowbite/input_field/email.rb +13 -0
- data/app/components/flowbite/input_field/file.rb +13 -0
- data/app/components/flowbite/input_field/input_field.html.erb +8 -0
- data/app/components/flowbite/input_field/number.rb +13 -0
- data/app/components/flowbite/input_field/password.rb +13 -0
- data/app/components/flowbite/input_field/phone.rb +13 -0
- data/app/components/flowbite/input_field/radio_button.html.erb +14 -0
- data/app/components/flowbite/input_field/radio_button.rb +86 -0
- data/app/components/flowbite/input_field/select.rb +31 -0
- data/app/components/flowbite/input_field/text.rb +8 -0
- data/app/components/flowbite/input_field/textarea.rb +13 -0
- data/app/components/flowbite/input_field/url.rb +13 -0
- data/app/components/flowbite/input_field.rb +192 -0
- data/app/components/flowbite/link.rb +21 -0
- data/app/components/flowbite/style.rb +13 -0
- data/app/components/flowbite/toast/icon.html.erb +5 -0
- data/app/components/flowbite/toast/icon.rb +57 -0
- data/app/components/flowbite/toast/toast.html.erb +11 -0
- data/app/components/flowbite/toast.rb +34 -0
- data/app/components/uchi/field/base.rb +57 -0
- data/app/components/uchi/field/belongs_to/edit.html.erb +1 -0
- data/app/components/uchi/field/belongs_to/index.html.erb +1 -0
- data/app/components/uchi/field/belongs_to/show.html.erb +3 -0
- data/app/components/uchi/field/belongs_to.rb +105 -0
- data/app/components/uchi/field/blank/edit.html.erb +1 -0
- data/app/components/uchi/field/blank/index.html.erb +1 -0
- data/app/components/uchi/field/blank/show.html.erb +1 -0
- data/app/components/uchi/field/blank.rb +16 -0
- data/app/components/uchi/field/boolean/edit.html.erb +1 -0
- data/app/components/uchi/field/boolean/index.html.erb +9 -0
- data/app/components/uchi/field/boolean/show.html.erb +9 -0
- data/app/components/uchi/field/boolean.rb +27 -0
- data/app/components/uchi/field/date/edit.html.erb +1 -0
- data/app/components/uchi/field/date/index.html.erb +1 -0
- data/app/components/uchi/field/date/show.html.erb +1 -0
- data/app/components/uchi/field/date.rb +27 -0
- data/app/components/uchi/field/date_time/edit.html.erb +1 -0
- data/app/components/uchi/field/date_time/index.html.erb +1 -0
- data/app/components/uchi/field/date_time/show.html.erb +1 -0
- data/app/components/uchi/field/date_time.rb +27 -0
- data/app/components/uchi/field/file/edit.html.erb +1 -0
- data/app/components/uchi/field/file/index.html.erb +6 -0
- data/app/components/uchi/field/file/show.html.erb +8 -0
- data/app/components/uchi/field/file.rb +37 -0
- data/app/components/uchi/field/has_and_belongs_to_many/edit.html.erb +9 -0
- data/app/components/uchi/field/has_and_belongs_to_many/index.html.erb +1 -0
- data/app/components/uchi/field/has_and_belongs_to_many/show.html.erb +28 -0
- data/app/components/uchi/field/has_and_belongs_to_many.rb +131 -0
- data/app/components/uchi/field/has_many/edit.html.erb +1 -0
- data/app/components/uchi/field/has_many/index.html.erb +1 -0
- data/app/components/uchi/field/has_many/show.html.erb +28 -0
- data/app/components/uchi/field/has_many.rb +107 -0
- data/app/components/uchi/field/id/index.html.erb +4 -0
- data/app/components/uchi/field/id/show.html.erb +4 -0
- data/app/components/uchi/field/id.rb +26 -0
- data/app/components/uchi/field/image/edit.html.erb +1 -0
- data/app/components/uchi/field/image/index.html.erb +6 -0
- data/app/components/uchi/field/image/show.html.erb +6 -0
- data/app/components/uchi/field/image.rb +38 -0
- data/app/components/uchi/field/number/edit.html.erb +1 -0
- data/app/components/uchi/field/number/index.html.erb +1 -0
- data/app/components/uchi/field/number/show.html.erb +1 -0
- data/app/components/uchi/field/number.rb +32 -0
- data/app/components/uchi/field/string/edit.html.erb +1 -0
- data/app/components/uchi/field/string/index.html.erb +1 -0
- data/app/components/uchi/field/string/show.html.erb +1 -0
- data/app/components/uchi/field/string.rb +33 -0
- data/app/components/uchi/field/text/edit.html.erb +1 -0
- data/app/components/uchi/field/text/index.html.erb +1 -0
- data/app/components/uchi/field/text/show.html.erb +1 -0
- data/app/components/uchi/field/text.rb +38 -0
- data/app/components/uchi/ui/breadcrumb/breadcrumb.html.erb +13 -0
- data/app/components/uchi/ui/breadcrumb.rb +14 -0
- data/app/components/uchi/ui/form/footer/footer.html.erb +5 -0
- data/app/components/uchi/ui/form/footer.rb +15 -0
- data/app/components/uchi/ui/form/input/collection_checkboxes.html.erb +32 -0
- data/app/components/uchi/ui/form/input/collection_checkboxes.rb +125 -0
- data/app/components/uchi/ui/frame/frame.html.erb +3 -0
- data/app/components/uchi/ui/frame.rb +10 -0
- data/app/components/uchi/ui/index/records_table/records_table.html.erb +67 -0
- data/app/components/uchi/ui/index/records_table/search_form/search_form.html.erb +21 -0
- data/app/components/uchi/ui/index/records_table/search_form.rb +49 -0
- data/app/components/uchi/ui/index/records_table.rb +29 -0
- data/app/components/uchi/ui/index/turbo_frame.rb +50 -0
- data/app/components/uchi/ui/page_header/page_header.html.erb +24 -0
- data/app/components/uchi/ui/page_header.rb +18 -0
- data/app/components/uchi/ui/pagination/current_link.html.erb +3 -0
- data/app/components/uchi/ui/pagination/current_link.rb +10 -0
- data/app/components/uchi/ui/pagination/gap.html.erb +3 -0
- data/app/components/uchi/ui/pagination/gap.rb +10 -0
- data/app/components/uchi/ui/pagination/item.rb +24 -0
- data/app/components/uchi/ui/pagination/link.html.erb +3 -0
- data/app/components/uchi/ui/pagination/link.rb +10 -0
- data/app/components/uchi/ui/pagination/next_link.html.erb +8 -0
- data/app/components/uchi/ui/pagination/next_link.rb +22 -0
- data/app/components/uchi/ui/pagination/pagination.html.erb +15 -0
- data/app/components/uchi/ui/pagination/previous_link.html.erb +8 -0
- data/app/components/uchi/ui/pagination/previous_link.rb +22 -0
- data/app/components/uchi/ui/pagination.rb +48 -0
- data/app/components/uchi/ui/show/attribute_fields/attribute_fields.html.erb +14 -0
- data/app/components/uchi/ui/show/attribute_fields.rb +18 -0
- data/app/components/uchi/ui/spinner/spinner.html.erb +7 -0
- data/app/components/uchi/ui/spinner.rb +15 -0
- data/app/controllers/uchi/application_controller.rb +4 -0
- data/app/controllers/uchi/controller.rb +13 -0
- data/app/controllers/uchi/repository_controller.rb +166 -0
- data/app/helpers/uchi/application_helper.rb +17 -0
- data/app/jobs/uchi/application_job.rb +4 -0
- data/app/mailers/uchi/application_mailer.rb +6 -0
- data/app/views/layouts/uchi/_flash_messages.html.erb +10 -0
- data/app/views/layouts/uchi/application.html.erb +33 -0
- data/app/views/uchi/repository/edit.html.erb +40 -0
- data/app/views/uchi/repository/index.html.erb +49 -0
- data/app/views/uchi/repository/new.html.erb +37 -0
- data/app/views/uchi/repository/show.html.erb +41 -0
- data/lib/generators/uchi/controller/controller_generator.rb +16 -0
- data/lib/generators/uchi/controller/templates/controller.rb.tt +11 -0
- data/lib/generators/uchi/install/install_generator.rb +13 -0
- data/lib/generators/uchi/repository/repository_generator.rb +16 -0
- data/lib/generators/uchi/repository/templates/repository.rb.tt +11 -0
- data/lib/tasks/uchi_tasks.rake +4 -0
- data/lib/uchi/application_record.rb +5 -0
- data/lib/uchi/engine.rb +24 -0
- data/lib/uchi/field/configuration.rb +142 -0
- data/lib/uchi/field.rb +80 -0
- data/lib/uchi/i18n.rb +13 -0
- data/lib/uchi/pagination/controller.rb +26 -0
- data/lib/uchi/pagination/page.rb +20 -0
- data/lib/uchi/pagy/LICENSE.txt +21 -0
- data/lib/uchi/pagy/classes/exceptions.rb +35 -0
- data/lib/uchi/pagy/classes/offset/offset.rb +56 -0
- data/lib/uchi/pagy/classes/request.rb +38 -0
- data/lib/uchi/pagy/modules/abilities/configurable.rb +38 -0
- data/lib/uchi/pagy/modules/abilities/linkable.rb +62 -0
- data/lib/uchi/pagy/modules/abilities/rangeable.rb +17 -0
- data/lib/uchi/pagy/modules/abilities/shiftable.rb +14 -0
- data/lib/uchi/pagy/modules/console.rb +40 -0
- data/lib/uchi/pagy/toolbox/helpers/loader.rb +19 -0
- data/lib/uchi/pagy/toolbox/helpers/page_url.rb +25 -0
- data/lib/uchi/pagy/toolbox/paginators/method.rb +21 -0
- data/lib/uchi/pagy/toolbox/paginators/offset.rb +35 -0
- data/lib/uchi/pagy.rb +60 -0
- data/lib/uchi/repository/routes.rb +62 -0
- data/lib/uchi/repository/translate.rb +284 -0
- data/lib/uchi/repository.rb +156 -0
- data/lib/uchi/sort_order.rb +35 -0
- data/lib/uchi/version.rb +5 -0
- data/lib/uchi.rb +18 -0
- data/uchi.gemspec +35 -0
- metadata +197 -107
- data/.github/dependabot.yml +0 -17
- data/.github/workflows/build.yml +0 -23
- data/.github/workflows/lint.yml +0 -30
- data/package.json +0 -31
- data/sig/uchi.rbs +0 -4
- data/test/components/uchi/field/belongs_to_test.rb +0 -134
- data/test/components/uchi/field/blank_test.rb +0 -119
- data/test/components/uchi/field/boolean_test.rb +0 -163
- data/test/components/uchi/field/date_test.rb +0 -163
- data/test/components/uchi/field/date_time_test.rb +0 -152
- data/test/components/uchi/field/has_many_test.rb +0 -138
- data/test/components/uchi/field/id_test.rb +0 -113
- data/test/components/uchi/field/number_test.rb +0 -163
- data/test/components/uchi/field/string_test.rb +0 -159
- data/test/controllers/uchi/authors_controller_test.rb +0 -119
- data/test/controllers/uchi/repository_controller_test.rb +0 -93
- data/test/controllers/uchi/scoped_repository_controller_test.rb +0 -73
- data/test/dummy/Rakefile +0 -6
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/stylesheets/application.css +0 -15
- data/test/dummy/app/controllers/application_controller.rb +0 -4
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/controllers/uchi/authors_controller.rb +0 -7
- data/test/dummy/app/controllers/uchi/books_controller.rb +0 -7
- data/test/dummy/app/controllers/uchi/titles_controller.rb +0 -7
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/jobs/application_job.rb +0 -7
- data/test/dummy/app/mailers/application_mailer.rb +0 -4
- data/test/dummy/app/models/application_record.rb +0 -3
- data/test/dummy/app/models/author.rb +0 -3
- data/test/dummy/app/models/book.rb +0 -3
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/models/title.rb +0 -3
- data/test/dummy/app/uchi/repositories/author.rb +0 -20
- data/test/dummy/app/uchi/repositories/book.rb +0 -16
- data/test/dummy/app/uchi/repositories/title.rb +0 -17
- data/test/dummy/app/views/layouts/application.html.erb +0 -27
- data/test/dummy/app/views/layouts/mailer.html.erb +0 -13
- data/test/dummy/app/views/layouts/mailer.text.erb +0 -1
- data/test/dummy/app/views/pwa/manifest.json.erb +0 -22
- data/test/dummy/app/views/pwa/service-worker.js +0 -26
- data/test/dummy/bin/dev +0 -2
- data/test/dummy/bin/rails +0 -4
- data/test/dummy/bin/rake +0 -4
- data/test/dummy/bin/setup +0 -34
- data/test/dummy/config/application.rb +0 -29
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/cable.yml +0 -10
- data/test/dummy/config/database.yml +0 -32
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -69
- data/test/dummy/config/environments/production.rb +0 -89
- data/test/dummy/config/environments/test.rb +0 -53
- data/test/dummy/config/initializers/content_security_policy.rb +0 -25
- data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -8
- data/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/dummy/config/locales/da.yml +0 -51
- data/test/dummy/config/locales/en.yml +0 -31
- data/test/dummy/config/puma.rb +0 -38
- data/test/dummy/config/routes.rb +0 -9
- data/test/dummy/config/storage.yml +0 -34
- data/test/dummy/config.ru +0 -6
- data/test/dummy/db/migrate/20251002183635_create_authors.rb +0 -11
- data/test/dummy/db/migrate/20251005131726_create_books.rb +0 -9
- data/test/dummy/db/migrate/20251005131811_create_titles.rb +0 -11
- data/test/dummy/db/schema.rb +0 -38
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/public/400.html +0 -114
- data/test/dummy/public/404.html +0 -114
- data/test/dummy/public/406-unsupported-browser.html +0 -114
- data/test/dummy/public/422.html +0 -114
- data/test/dummy/public/500.html +0 -114
- data/test/dummy/public/icon.png +0 -0
- data/test/dummy/public/icon.svg +0 -3
- data/test/dummy/storage/.keep +0 -0
- data/test/dummy/test/fixtures/authors.yml +0 -11
- data/test/dummy/test/models/author_test.rb +0 -7
- data/test/dummy/tmp/.keep +0 -0
- data/test/dummy/tmp/pids/.keep +0 -0
- data/test/dummy/tmp/storage/.keep +0 -0
- data/test/test_helper.rb +0 -15
- data/test/uchi/field_test.rb +0 -63
- data/test/uchi/i18n_test.rb +0 -18
- data/test/uchi/repository/routes_test.rb +0 -49
- data/test/uchi/repository/translate_test.rb +0 -263
- data/test/uchi/repository_test.rb +0 -137
- data/test/uchi/sort_order_test.rb +0 -47
- data/test/uchi_test.rb +0 -7
|
@@ -0,0 +1,3971 @@
|
|
|
1
|
+
/*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
|
+
"Courier New", monospace;
|
|
10
|
+
--color-red-50: #FEF2F2;
|
|
11
|
+
--color-red-100: #FEE2E2;
|
|
12
|
+
--color-red-200: #FECACA;
|
|
13
|
+
--color-red-300: #FCA5A5;
|
|
14
|
+
--color-red-400: #F87171;
|
|
15
|
+
--color-red-500: #EF4444;
|
|
16
|
+
--color-red-600: #DC2626;
|
|
17
|
+
--color-red-700: #B91C1C;
|
|
18
|
+
--color-red-800: #991B1B;
|
|
19
|
+
--color-red-900: #7F1D1D;
|
|
20
|
+
--color-orange-50: #FFFAF0;
|
|
21
|
+
--color-orange-100: #FEEBC8;
|
|
22
|
+
--color-orange-200: #FBD38D;
|
|
23
|
+
--color-orange-300: #F6AD55;
|
|
24
|
+
--color-orange-400: #ED8936;
|
|
25
|
+
--color-orange-500: #DD6B20;
|
|
26
|
+
--color-orange-600: #C05621;
|
|
27
|
+
--color-orange-700: #9C4221;
|
|
28
|
+
--color-orange-800: #7B341E;
|
|
29
|
+
--color-orange-900: #652B19;
|
|
30
|
+
--color-yellow-50: #FFFBEB;
|
|
31
|
+
--color-yellow-100: #FEF3C7;
|
|
32
|
+
--color-yellow-200: #FDE68A;
|
|
33
|
+
--color-yellow-300: #FCD34D;
|
|
34
|
+
--color-yellow-400: #FBBF24;
|
|
35
|
+
--color-yellow-500: #F59E0B;
|
|
36
|
+
--color-yellow-600: #D97706;
|
|
37
|
+
--color-yellow-700: #B45309;
|
|
38
|
+
--color-yellow-800: #92400E;
|
|
39
|
+
--color-yellow-900: #78350F;
|
|
40
|
+
--color-lime-200: oklch(93.8% 0.127 124.321);
|
|
41
|
+
--color-lime-300: oklch(89.7% 0.196 126.665);
|
|
42
|
+
--color-lime-400: oklch(84.1% 0.238 128.85);
|
|
43
|
+
--color-lime-500: oklch(76.8% 0.233 130.85);
|
|
44
|
+
--color-lime-800: oklch(45.3% 0.124 130.933);
|
|
45
|
+
--color-green-50: #ECFDF5;
|
|
46
|
+
--color-green-100: #D1FAE5;
|
|
47
|
+
--color-green-200: #A7F3D0;
|
|
48
|
+
--color-green-300: #6EE7B7;
|
|
49
|
+
--color-green-400: #34D399;
|
|
50
|
+
--color-green-500: #10B981;
|
|
51
|
+
--color-green-600: #059669;
|
|
52
|
+
--color-green-700: #047857;
|
|
53
|
+
--color-green-800: #065F46;
|
|
54
|
+
--color-green-900: #064E3B;
|
|
55
|
+
--color-emerald-600: oklch(59.6% 0.145 163.225);
|
|
56
|
+
--color-teal-50: #F0FDFA;
|
|
57
|
+
--color-teal-100: #CCFBF1;
|
|
58
|
+
--color-teal-200: #99F6E4;
|
|
59
|
+
--color-teal-300: #5EEAD4;
|
|
60
|
+
--color-teal-400: #2DD4BF;
|
|
61
|
+
--color-teal-500: #14B8A6;
|
|
62
|
+
--color-teal-600: #0D9488;
|
|
63
|
+
--color-teal-700: #0F766E;
|
|
64
|
+
--color-teal-800: #115E59;
|
|
65
|
+
--color-cyan-200: #A5F3FC;
|
|
66
|
+
--color-cyan-300: #67E8F9;
|
|
67
|
+
--color-cyan-400: #22D3EE;
|
|
68
|
+
--color-cyan-500: #06B6D4;
|
|
69
|
+
--color-cyan-600: #0891B2;
|
|
70
|
+
--color-cyan-800: #155E75;
|
|
71
|
+
--color-sky-400: oklch(74.6% 0.16 232.661);
|
|
72
|
+
--color-sky-500: oklch(68.5% 0.169 237.323);
|
|
73
|
+
--color-blue-50: #EFF6FF;
|
|
74
|
+
--color-blue-100: #DBEAFE;
|
|
75
|
+
--color-blue-200: #BFDBFE;
|
|
76
|
+
--color-blue-300: #93C5FD;
|
|
77
|
+
--color-blue-400: #60A5FA;
|
|
78
|
+
--color-blue-500: #3B82F6;
|
|
79
|
+
--color-blue-600: #2563EB;
|
|
80
|
+
--color-blue-700: #1D4ED8;
|
|
81
|
+
--color-blue-800: #1E40AF;
|
|
82
|
+
--color-blue-900: #1E3A8A;
|
|
83
|
+
--color-indigo-50: #EEF2FF;
|
|
84
|
+
--color-indigo-100: #E0E7FF;
|
|
85
|
+
--color-indigo-200: #C7D2FE;
|
|
86
|
+
--color-indigo-300: #A5B4FC;
|
|
87
|
+
--color-indigo-400: #818CF8;
|
|
88
|
+
--color-indigo-500: #6366F1;
|
|
89
|
+
--color-indigo-600: #4F46E5;
|
|
90
|
+
--color-indigo-700: #4338CA;
|
|
91
|
+
--color-indigo-800: #3730A3;
|
|
92
|
+
--color-indigo-900: #312E81;
|
|
93
|
+
--color-purple-50: #F5F3FF;
|
|
94
|
+
--color-purple-100: #EDE9FE;
|
|
95
|
+
--color-purple-200: #DDD6FE;
|
|
96
|
+
--color-purple-300: #C4B5FD;
|
|
97
|
+
--color-purple-400: #A78BFA;
|
|
98
|
+
--color-purple-500: #8B5CF6;
|
|
99
|
+
--color-purple-600: #7C3AED;
|
|
100
|
+
--color-purple-700: #6D28D9;
|
|
101
|
+
--color-purple-800: #5B21B6;
|
|
102
|
+
--color-purple-900: #4C1D95;
|
|
103
|
+
--color-pink-50: #FDF2F8;
|
|
104
|
+
--color-pink-100: #FCE7F3;
|
|
105
|
+
--color-pink-200: #FBCFE8;
|
|
106
|
+
--color-pink-300: #F9A8D4;
|
|
107
|
+
--color-pink-400: #F472B6;
|
|
108
|
+
--color-pink-500: #EC4899;
|
|
109
|
+
--color-pink-600: #DB2777;
|
|
110
|
+
--color-pink-700: #BE185D;
|
|
111
|
+
--color-pink-800: #9D174D;
|
|
112
|
+
--color-pink-900: #831843;
|
|
113
|
+
--color-gray-50: #F9FAFB;
|
|
114
|
+
--color-gray-100: #F3F4F6;
|
|
115
|
+
--color-gray-200: #E5E7EB;
|
|
116
|
+
--color-gray-300: #D1D5DB;
|
|
117
|
+
--color-gray-400: #9CA3AF;
|
|
118
|
+
--color-gray-500: #6B7280;
|
|
119
|
+
--color-gray-600: #4B5563;
|
|
120
|
+
--color-gray-700: #374151;
|
|
121
|
+
--color-gray-800: #1F2937;
|
|
122
|
+
--color-gray-900: #111827;
|
|
123
|
+
--color-white: #ffffff;
|
|
124
|
+
--spacing: 0.25rem;
|
|
125
|
+
--breakpoint-md: 48rem;
|
|
126
|
+
--breakpoint-lg: 64rem;
|
|
127
|
+
--breakpoint-xl: 80rem;
|
|
128
|
+
--container-2xs: 18rem;
|
|
129
|
+
--container-xs: 20rem;
|
|
130
|
+
--container-sm: 24rem;
|
|
131
|
+
--container-md: 28rem;
|
|
132
|
+
--container-lg: 32rem;
|
|
133
|
+
--container-xl: 36rem;
|
|
134
|
+
--container-2xl: 42rem;
|
|
135
|
+
--container-4xl: 56rem;
|
|
136
|
+
--container-7xl: 80rem;
|
|
137
|
+
--text-xs: 0.75rem;
|
|
138
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
139
|
+
--text-sm: 0.875rem;
|
|
140
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
141
|
+
--text-base: 1rem;
|
|
142
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
143
|
+
--text-lg: 1.125rem;
|
|
144
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
145
|
+
--text-xl: 1.25rem;
|
|
146
|
+
--text-xl--line-height: calc(1.75 / 1.25);
|
|
147
|
+
--text-2xl: 1.5rem;
|
|
148
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
149
|
+
--text-3xl: 1.875rem;
|
|
150
|
+
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
151
|
+
--text-4xl: 2.25rem;
|
|
152
|
+
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
153
|
+
--text-5xl: 3rem;
|
|
154
|
+
--text-5xl--line-height: 1;
|
|
155
|
+
--text-6xl: 3.75rem;
|
|
156
|
+
--text-6xl--line-height: 1;
|
|
157
|
+
--text-7xl: 4.5rem;
|
|
158
|
+
--text-7xl--line-height: 1;
|
|
159
|
+
--text-8xl: 6rem;
|
|
160
|
+
--text-8xl--line-height: 1;
|
|
161
|
+
--text-9xl: 8rem;
|
|
162
|
+
--text-9xl--line-height: 1;
|
|
163
|
+
--font-weight-thin: 100;
|
|
164
|
+
--font-weight-extralight: 200;
|
|
165
|
+
--font-weight-light: 300;
|
|
166
|
+
--font-weight-normal: 400;
|
|
167
|
+
--font-weight-medium: 500;
|
|
168
|
+
--font-weight-semibold: 600;
|
|
169
|
+
--font-weight-bold: 700;
|
|
170
|
+
--font-weight-extrabold: 800;
|
|
171
|
+
--font-weight-black: 900;
|
|
172
|
+
--tracking-tighter: -0.05em;
|
|
173
|
+
--tracking-tight: -0.025em;
|
|
174
|
+
--tracking-normal: 0em;
|
|
175
|
+
--tracking-wide: 0.025em;
|
|
176
|
+
--tracking-wider: 0.05em;
|
|
177
|
+
--tracking-widest: 0.1em;
|
|
178
|
+
--leading-tight: 1.25;
|
|
179
|
+
--leading-normal: 1.5;
|
|
180
|
+
--leading-relaxed: 1.625;
|
|
181
|
+
--leading-loose: 2;
|
|
182
|
+
--radius-xs: 0.125rem;
|
|
183
|
+
--radius-sm: 0.25rem;
|
|
184
|
+
--radius-md: 0.375rem;
|
|
185
|
+
--radius-lg: 0.5rem;
|
|
186
|
+
--radius-xl: 0.75rem;
|
|
187
|
+
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
|
188
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
189
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
190
|
+
--animate-spin: spin 1s linear infinite;
|
|
191
|
+
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
192
|
+
--blur-xs: 4px;
|
|
193
|
+
--default-transition-duration: 150ms;
|
|
194
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
195
|
+
--default-font-family: var(--font-sans);
|
|
196
|
+
--default-mono-font-family: var(--font-mono);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
@layer base {
|
|
200
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
201
|
+
box-sizing: border-box;
|
|
202
|
+
margin: 0;
|
|
203
|
+
padding: 0;
|
|
204
|
+
border: 0 solid;
|
|
205
|
+
}
|
|
206
|
+
html, :host {
|
|
207
|
+
line-height: 1.5;
|
|
208
|
+
-webkit-text-size-adjust: 100%;
|
|
209
|
+
tab-size: 4;
|
|
210
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
211
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
212
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
213
|
+
-webkit-tap-highlight-color: transparent;
|
|
214
|
+
}
|
|
215
|
+
hr {
|
|
216
|
+
height: 0;
|
|
217
|
+
color: inherit;
|
|
218
|
+
border-top-width: 1px;
|
|
219
|
+
}
|
|
220
|
+
abbr:where([title]) {
|
|
221
|
+
-webkit-text-decoration: underline dotted;
|
|
222
|
+
text-decoration: underline dotted;
|
|
223
|
+
}
|
|
224
|
+
h1, h2, h3, h4, h5, h6 {
|
|
225
|
+
font-size: inherit;
|
|
226
|
+
font-weight: inherit;
|
|
227
|
+
}
|
|
228
|
+
a {
|
|
229
|
+
color: inherit;
|
|
230
|
+
-webkit-text-decoration: inherit;
|
|
231
|
+
text-decoration: inherit;
|
|
232
|
+
}
|
|
233
|
+
b, strong {
|
|
234
|
+
font-weight: bolder;
|
|
235
|
+
}
|
|
236
|
+
code, kbd, samp, pre {
|
|
237
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
238
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
239
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
240
|
+
font-size: 1em;
|
|
241
|
+
}
|
|
242
|
+
small {
|
|
243
|
+
font-size: 80%;
|
|
244
|
+
}
|
|
245
|
+
sub, sup {
|
|
246
|
+
font-size: 75%;
|
|
247
|
+
line-height: 0;
|
|
248
|
+
position: relative;
|
|
249
|
+
vertical-align: baseline;
|
|
250
|
+
}
|
|
251
|
+
sub {
|
|
252
|
+
bottom: -0.25em;
|
|
253
|
+
}
|
|
254
|
+
sup {
|
|
255
|
+
top: -0.5em;
|
|
256
|
+
}
|
|
257
|
+
table {
|
|
258
|
+
text-indent: 0;
|
|
259
|
+
border-color: inherit;
|
|
260
|
+
border-collapse: collapse;
|
|
261
|
+
}
|
|
262
|
+
:-moz-focusring {
|
|
263
|
+
outline: auto;
|
|
264
|
+
}
|
|
265
|
+
progress {
|
|
266
|
+
vertical-align: baseline;
|
|
267
|
+
}
|
|
268
|
+
summary {
|
|
269
|
+
display: list-item;
|
|
270
|
+
}
|
|
271
|
+
ol, ul, menu {
|
|
272
|
+
list-style: none;
|
|
273
|
+
}
|
|
274
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
275
|
+
display: block;
|
|
276
|
+
vertical-align: middle;
|
|
277
|
+
}
|
|
278
|
+
img, video {
|
|
279
|
+
max-width: 100%;
|
|
280
|
+
height: auto;
|
|
281
|
+
}
|
|
282
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
283
|
+
font: inherit;
|
|
284
|
+
font-feature-settings: inherit;
|
|
285
|
+
font-variation-settings: inherit;
|
|
286
|
+
letter-spacing: inherit;
|
|
287
|
+
color: inherit;
|
|
288
|
+
border-radius: 0;
|
|
289
|
+
background-color: transparent;
|
|
290
|
+
opacity: 1;
|
|
291
|
+
}
|
|
292
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
293
|
+
font-weight: bolder;
|
|
294
|
+
}
|
|
295
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
296
|
+
padding-inline-start: 20px;
|
|
297
|
+
}
|
|
298
|
+
::file-selector-button {
|
|
299
|
+
margin-inline-end: 4px;
|
|
300
|
+
}
|
|
301
|
+
::placeholder {
|
|
302
|
+
opacity: 1;
|
|
303
|
+
}
|
|
304
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
305
|
+
::placeholder {
|
|
306
|
+
color: currentcolor;
|
|
307
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
308
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
textarea {
|
|
313
|
+
resize: vertical;
|
|
314
|
+
}
|
|
315
|
+
::-webkit-search-decoration {
|
|
316
|
+
-webkit-appearance: none;
|
|
317
|
+
}
|
|
318
|
+
::-webkit-date-and-time-value {
|
|
319
|
+
min-height: 1lh;
|
|
320
|
+
text-align: inherit;
|
|
321
|
+
}
|
|
322
|
+
::-webkit-datetime-edit {
|
|
323
|
+
display: inline-flex;
|
|
324
|
+
}
|
|
325
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
326
|
+
padding: 0;
|
|
327
|
+
}
|
|
328
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
329
|
+
padding-block: 0;
|
|
330
|
+
}
|
|
331
|
+
::-webkit-calendar-picker-indicator {
|
|
332
|
+
line-height: 1;
|
|
333
|
+
}
|
|
334
|
+
:-moz-ui-invalid {
|
|
335
|
+
box-shadow: none;
|
|
336
|
+
}
|
|
337
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
338
|
+
appearance: button;
|
|
339
|
+
}
|
|
340
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
341
|
+
height: auto;
|
|
342
|
+
}
|
|
343
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
344
|
+
display: none !important;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
@layer utilities {
|
|
348
|
+
.collapse {
|
|
349
|
+
visibility: collapse;
|
|
350
|
+
}
|
|
351
|
+
.invisible {
|
|
352
|
+
visibility: hidden;
|
|
353
|
+
}
|
|
354
|
+
.visible {
|
|
355
|
+
visibility: visible;
|
|
356
|
+
}
|
|
357
|
+
.datatable-wrapper {
|
|
358
|
+
width: 100%;
|
|
359
|
+
& .datatable-top {
|
|
360
|
+
display: flex;
|
|
361
|
+
justify-content: space-between;
|
|
362
|
+
flex-direction: column-reverse;
|
|
363
|
+
align-items: start;
|
|
364
|
+
gap: 1rem;
|
|
365
|
+
margin-bottom: 1rem;
|
|
366
|
+
@media (min-width: 640px) {
|
|
367
|
+
flex-direction: row-reverse;
|
|
368
|
+
align-items: center;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
& .datatable-search .datatable-input {
|
|
372
|
+
color: var(--color-gray-900);
|
|
373
|
+
font-size: 0.875rem;
|
|
374
|
+
border: 1px solid var(--color-gray-300);
|
|
375
|
+
border-radius: 0.5rem;
|
|
376
|
+
background-color: var(--color-gray-50);
|
|
377
|
+
min-width: 16rem;
|
|
378
|
+
}
|
|
379
|
+
& .datatable-input {
|
|
380
|
+
color: var(--color-gray-900);
|
|
381
|
+
font-size: 0.875rem;
|
|
382
|
+
border: 1px solid var(--color-gray-300);
|
|
383
|
+
border-radius: 0.5rem;
|
|
384
|
+
background-color: var(--color-gray-50);
|
|
385
|
+
min-width: 16rem;
|
|
386
|
+
}
|
|
387
|
+
.dark & .datatable-search .datatable-input {
|
|
388
|
+
color: white;
|
|
389
|
+
background-color: var(--color-gray-800);
|
|
390
|
+
border: 1px solid var(--color-gray-700);
|
|
391
|
+
}
|
|
392
|
+
.dark & .datatable-input {
|
|
393
|
+
color: white;
|
|
394
|
+
background-color: var(--color-gray-800);
|
|
395
|
+
border: 1px solid var(--color-gray-700);
|
|
396
|
+
}
|
|
397
|
+
& thead th .datatable-input {
|
|
398
|
+
background-color: white;
|
|
399
|
+
font-weight: 400;
|
|
400
|
+
color: var(--color-gray-900);
|
|
401
|
+
padding-top: .35rem;
|
|
402
|
+
padding-bottom: .35rem;
|
|
403
|
+
min-width: 0;
|
|
404
|
+
}
|
|
405
|
+
.dark & thead th .datatable-input {
|
|
406
|
+
background-color: var(--color-gray-700);
|
|
407
|
+
border-color: var(--color-gray-600);
|
|
408
|
+
color: white;
|
|
409
|
+
}
|
|
410
|
+
& .datatable-top .datatable-dropdown {
|
|
411
|
+
color: var(--color-gray-500);
|
|
412
|
+
font-size: 0.875rem;
|
|
413
|
+
}
|
|
414
|
+
.dark & .datatable-top .datatable-dropdown {
|
|
415
|
+
color: var(--color-gray-400);
|
|
416
|
+
}
|
|
417
|
+
& .datatable-top .datatable-dropdown .datatable-selector {
|
|
418
|
+
background-color: var(--color-gray-50);
|
|
419
|
+
color: var(--color-gray-900);
|
|
420
|
+
font-size: 0.875rem;
|
|
421
|
+
border: 1px solid var(--color-gray-300);
|
|
422
|
+
border-radius: 0.5rem;
|
|
423
|
+
margin-right: 0.25rem;
|
|
424
|
+
min-width: 4rem;
|
|
425
|
+
}
|
|
426
|
+
.dark & .datatable-top .datatable-dropdown .datatable-selector {
|
|
427
|
+
background-color: var(--color-gray-800);
|
|
428
|
+
border: 1px solid var(--color-gray-700);
|
|
429
|
+
color: white;
|
|
430
|
+
}
|
|
431
|
+
& .datatable-container thead tr.search-filtering-row th {
|
|
432
|
+
padding-top: 0;
|
|
433
|
+
}
|
|
434
|
+
& .datatable-search .datatable-input:focus {
|
|
435
|
+
border-color: var(--color-blue-600);
|
|
436
|
+
}
|
|
437
|
+
& .datatable-container {
|
|
438
|
+
overflow-x: auto;
|
|
439
|
+
}
|
|
440
|
+
& .datatable-table {
|
|
441
|
+
width: 100%;
|
|
442
|
+
font-size: 0.875rem;
|
|
443
|
+
color: var(--color-gray-500);
|
|
444
|
+
text-align: left;
|
|
445
|
+
}
|
|
446
|
+
.dark & .datatable-table {
|
|
447
|
+
color: var(--color-gray-400);
|
|
448
|
+
}
|
|
449
|
+
& .datatable-table thead {
|
|
450
|
+
font-size: 0.75rem;
|
|
451
|
+
color: var(--color-gray-500);
|
|
452
|
+
background-color: var(--color-gray-50);
|
|
453
|
+
}
|
|
454
|
+
.dark & .datatable-table thead {
|
|
455
|
+
color: var(--color-gray-400);
|
|
456
|
+
background-color: var(--color-gray-800);
|
|
457
|
+
}
|
|
458
|
+
& .datatable-table thead th {
|
|
459
|
+
white-space: nowrap;
|
|
460
|
+
}
|
|
461
|
+
& .datatable-table thead th {
|
|
462
|
+
width: auto !important;
|
|
463
|
+
padding-top: 0.75rem;
|
|
464
|
+
padding-bottom: 0.75rem;
|
|
465
|
+
padding-left: 1.5rem;
|
|
466
|
+
padding-right: 1.5rem;
|
|
467
|
+
}
|
|
468
|
+
& .datatable-table tbody th {
|
|
469
|
+
width: auto !important;
|
|
470
|
+
padding-top: 0.75rem;
|
|
471
|
+
padding-bottom: 0.75rem;
|
|
472
|
+
padding-left: 1.5rem;
|
|
473
|
+
padding-right: 1.5rem;
|
|
474
|
+
}
|
|
475
|
+
& .datatable-table tbody td {
|
|
476
|
+
width: auto !important;
|
|
477
|
+
padding-top: 0.75rem;
|
|
478
|
+
padding-bottom: 0.75rem;
|
|
479
|
+
padding-left: 1.5rem;
|
|
480
|
+
padding-right: 1.5rem;
|
|
481
|
+
}
|
|
482
|
+
& .datatable-table thead th .datatable-sorter {
|
|
483
|
+
text-transform: uppercase;
|
|
484
|
+
}
|
|
485
|
+
& .datatable-table thead th {
|
|
486
|
+
text-transform: uppercase;
|
|
487
|
+
}
|
|
488
|
+
& .datatable-table thead th .datatable-sorter:hover {
|
|
489
|
+
color: var(--color-gray-900);
|
|
490
|
+
}
|
|
491
|
+
& .datatable-table thead th.datatable-ascending .datatable-sorter {
|
|
492
|
+
color: var(--color-gray-900);
|
|
493
|
+
}
|
|
494
|
+
& .datatable-table thead th.datatable-descending .datatable-sorter {
|
|
495
|
+
color: var(--color-gray-900);
|
|
496
|
+
}
|
|
497
|
+
.dark & .datatable-table thead th .datatable-sorter:hover {
|
|
498
|
+
color: white;
|
|
499
|
+
}
|
|
500
|
+
.dark & .datatable-table thead th.datatable-ascending .datatable-sorter {
|
|
501
|
+
color: white;
|
|
502
|
+
}
|
|
503
|
+
.dark & .datatable-table thead th.datatable-descending .datatable-sorter {
|
|
504
|
+
color: white;
|
|
505
|
+
}
|
|
506
|
+
& .datatable-table tbody tr.selected {
|
|
507
|
+
background-color: var(--color-gray-100);
|
|
508
|
+
}
|
|
509
|
+
.dark & .datatable-table tbody tr.selected {
|
|
510
|
+
background-color: var(--color-gray-700);
|
|
511
|
+
}
|
|
512
|
+
& .datatable-table tbody tr {
|
|
513
|
+
border-bottom: 1px solid var(--color-gray-200);
|
|
514
|
+
}
|
|
515
|
+
.dark & .datatable-table tbody tr {
|
|
516
|
+
border-bottom: 1px solid var(--color-gray-700);
|
|
517
|
+
}
|
|
518
|
+
& .datatable-table .datatable-empty {
|
|
519
|
+
text-align: center;
|
|
520
|
+
}
|
|
521
|
+
& .datatable-bottom {
|
|
522
|
+
display: flex;
|
|
523
|
+
flex-direction: column;
|
|
524
|
+
justify-content: space-between;
|
|
525
|
+
align-items: start;
|
|
526
|
+
margin-top: 1rem;
|
|
527
|
+
gap: 1rem;
|
|
528
|
+
@media (min-width: 640px) {
|
|
529
|
+
flex-direction: row;
|
|
530
|
+
align-items: center;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
& .datatable-bottom .datatable-info {
|
|
534
|
+
color: var(--color-gray-500);
|
|
535
|
+
font-size: 0.875rem;
|
|
536
|
+
}
|
|
537
|
+
.dark & .datatable-bottom .datatable-info {
|
|
538
|
+
color: var(--color-gray-400);
|
|
539
|
+
}
|
|
540
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list {
|
|
541
|
+
display: flex;
|
|
542
|
+
align-items: center;
|
|
543
|
+
height: 2rem;
|
|
544
|
+
font-size: 0.875rem;
|
|
545
|
+
}
|
|
546
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item-link {
|
|
547
|
+
display: flex;
|
|
548
|
+
align-items: center;
|
|
549
|
+
color: var(--color-gray-500);
|
|
550
|
+
font-weight: 500;
|
|
551
|
+
padding-left: 0.75rem;
|
|
552
|
+
padding-right: 0.75rem;
|
|
553
|
+
height: 2rem;
|
|
554
|
+
font-size: 0.875rem;
|
|
555
|
+
border-top: 1px solid var(--color-gray-300);
|
|
556
|
+
border-bottom: 1px solid var(--color-gray-300);
|
|
557
|
+
border-right: 1px solid var(--color-gray-300);
|
|
558
|
+
}
|
|
559
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item-link {
|
|
560
|
+
color: var(--color-gray-400);
|
|
561
|
+
border-color: var(--color-gray-700);
|
|
562
|
+
}
|
|
563
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type {
|
|
564
|
+
position: relative;
|
|
565
|
+
}
|
|
566
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type {
|
|
567
|
+
position: relative;
|
|
568
|
+
}
|
|
569
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
570
|
+
color: transparent;
|
|
571
|
+
}
|
|
572
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
573
|
+
color: transparent;
|
|
574
|
+
}
|
|
575
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
576
|
+
color: transparent;
|
|
577
|
+
}
|
|
578
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
579
|
+
color: transparent;
|
|
580
|
+
}
|
|
581
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
582
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
583
|
+
position: absolute;
|
|
584
|
+
top: 50%;
|
|
585
|
+
left: 50%;
|
|
586
|
+
width: 1.3rem;
|
|
587
|
+
height: 1.3rem;
|
|
588
|
+
transform: translate(-50%, -50%);
|
|
589
|
+
}
|
|
590
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
591
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
592
|
+
}
|
|
593
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
594
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
595
|
+
}
|
|
596
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
597
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
598
|
+
}
|
|
599
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
600
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
601
|
+
position: absolute;
|
|
602
|
+
top: 50%;
|
|
603
|
+
right: 50%;
|
|
604
|
+
width: 1.3rem;
|
|
605
|
+
height: 1.3rem;
|
|
606
|
+
transform: translate(50%, -50%);
|
|
607
|
+
}
|
|
608
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
609
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
610
|
+
}
|
|
611
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
612
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
613
|
+
}
|
|
614
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
615
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
616
|
+
}
|
|
617
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
618
|
+
border-top-left-radius: 0.5rem;
|
|
619
|
+
border-bottom-left-radius: 0.5rem;
|
|
620
|
+
border-left: 1px solid var(--color-gray-300);
|
|
621
|
+
}
|
|
622
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
623
|
+
border-left: 1px solid var(--color-gray-700);
|
|
624
|
+
}
|
|
625
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
626
|
+
border-top-right-radius: 0.5rem;
|
|
627
|
+
border-bottom-right-radius: 0.5rem;
|
|
628
|
+
border-left: 0;
|
|
629
|
+
}
|
|
630
|
+
& .datatable-bottom .datatable-pagination .datatable-pagination-list-item-link:hover {
|
|
631
|
+
background-color: var(--color-gray-50);
|
|
632
|
+
color: var(--color-gray-700);
|
|
633
|
+
}
|
|
634
|
+
.dark & .datatable-bottom .datatable-pagination .datatable-pagination-list-item-link:hover {
|
|
635
|
+
background-color: var(--color-gray-700);
|
|
636
|
+
color: white;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
.datatable-bottom {
|
|
640
|
+
.datatable-wrapper & {
|
|
641
|
+
display: flex;
|
|
642
|
+
flex-direction: column;
|
|
643
|
+
justify-content: space-between;
|
|
644
|
+
align-items: start;
|
|
645
|
+
margin-top: 1rem;
|
|
646
|
+
gap: 1rem;
|
|
647
|
+
@media (min-width: 640px) {
|
|
648
|
+
flex-direction: row;
|
|
649
|
+
align-items: center;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
.datatable-wrapper & .datatable-info {
|
|
653
|
+
color: var(--color-gray-500);
|
|
654
|
+
font-size: 0.875rem;
|
|
655
|
+
}
|
|
656
|
+
.dark .datatable-wrapper & .datatable-info {
|
|
657
|
+
color: var(--color-gray-400);
|
|
658
|
+
}
|
|
659
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list {
|
|
660
|
+
display: flex;
|
|
661
|
+
align-items: center;
|
|
662
|
+
height: 2rem;
|
|
663
|
+
font-size: 0.875rem;
|
|
664
|
+
}
|
|
665
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item-link {
|
|
666
|
+
display: flex;
|
|
667
|
+
align-items: center;
|
|
668
|
+
color: var(--color-gray-500);
|
|
669
|
+
font-weight: 500;
|
|
670
|
+
padding-left: 0.75rem;
|
|
671
|
+
padding-right: 0.75rem;
|
|
672
|
+
height: 2rem;
|
|
673
|
+
font-size: 0.875rem;
|
|
674
|
+
border-top: 1px solid var(--color-gray-300);
|
|
675
|
+
border-bottom: 1px solid var(--color-gray-300);
|
|
676
|
+
border-right: 1px solid var(--color-gray-300);
|
|
677
|
+
}
|
|
678
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item-link {
|
|
679
|
+
color: var(--color-gray-400);
|
|
680
|
+
border-color: var(--color-gray-700);
|
|
681
|
+
}
|
|
682
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type {
|
|
683
|
+
position: relative;
|
|
684
|
+
}
|
|
685
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type {
|
|
686
|
+
position: relative;
|
|
687
|
+
}
|
|
688
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
689
|
+
color: transparent;
|
|
690
|
+
}
|
|
691
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
692
|
+
color: transparent;
|
|
693
|
+
}
|
|
694
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
695
|
+
color: transparent;
|
|
696
|
+
}
|
|
697
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
698
|
+
color: transparent;
|
|
699
|
+
}
|
|
700
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
701
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
702
|
+
position: absolute;
|
|
703
|
+
top: 50%;
|
|
704
|
+
left: 50%;
|
|
705
|
+
width: 1.3rem;
|
|
706
|
+
height: 1.3rem;
|
|
707
|
+
transform: translate(-50%, -50%);
|
|
708
|
+
}
|
|
709
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
710
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
711
|
+
}
|
|
712
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
713
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
714
|
+
}
|
|
715
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
716
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
717
|
+
}
|
|
718
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
719
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
720
|
+
position: absolute;
|
|
721
|
+
top: 50%;
|
|
722
|
+
right: 50%;
|
|
723
|
+
width: 1.3rem;
|
|
724
|
+
height: 1.3rem;
|
|
725
|
+
transform: translate(50%, -50%);
|
|
726
|
+
}
|
|
727
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
728
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
729
|
+
}
|
|
730
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
731
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
732
|
+
}
|
|
733
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
734
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
735
|
+
}
|
|
736
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
737
|
+
border-top-left-radius: 0.5rem;
|
|
738
|
+
border-bottom-left-radius: 0.5rem;
|
|
739
|
+
border-left: 1px solid var(--color-gray-300);
|
|
740
|
+
}
|
|
741
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
742
|
+
border-left: 1px solid var(--color-gray-700);
|
|
743
|
+
}
|
|
744
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
745
|
+
border-top-right-radius: 0.5rem;
|
|
746
|
+
border-bottom-right-radius: 0.5rem;
|
|
747
|
+
border-left: 0;
|
|
748
|
+
}
|
|
749
|
+
.datatable-wrapper & .datatable-pagination .datatable-pagination-list-item-link:hover {
|
|
750
|
+
background-color: var(--color-gray-50);
|
|
751
|
+
color: var(--color-gray-700);
|
|
752
|
+
}
|
|
753
|
+
.dark .datatable-wrapper & .datatable-pagination .datatable-pagination-list-item-link:hover {
|
|
754
|
+
background-color: var(--color-gray-700);
|
|
755
|
+
color: white;
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
.datatable-pagination {
|
|
759
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list {
|
|
760
|
+
display: flex;
|
|
761
|
+
align-items: center;
|
|
762
|
+
height: 2rem;
|
|
763
|
+
font-size: 0.875rem;
|
|
764
|
+
}
|
|
765
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item-link {
|
|
766
|
+
display: flex;
|
|
767
|
+
align-items: center;
|
|
768
|
+
color: var(--color-gray-500);
|
|
769
|
+
font-weight: 500;
|
|
770
|
+
padding-left: 0.75rem;
|
|
771
|
+
padding-right: 0.75rem;
|
|
772
|
+
height: 2rem;
|
|
773
|
+
font-size: 0.875rem;
|
|
774
|
+
border-top: 1px solid var(--color-gray-300);
|
|
775
|
+
border-bottom: 1px solid var(--color-gray-300);
|
|
776
|
+
border-right: 1px solid var(--color-gray-300);
|
|
777
|
+
}
|
|
778
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item-link {
|
|
779
|
+
color: var(--color-gray-400);
|
|
780
|
+
border-color: var(--color-gray-700);
|
|
781
|
+
}
|
|
782
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type {
|
|
783
|
+
position: relative;
|
|
784
|
+
}
|
|
785
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type {
|
|
786
|
+
position: relative;
|
|
787
|
+
}
|
|
788
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
789
|
+
color: transparent;
|
|
790
|
+
}
|
|
791
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
792
|
+
color: transparent;
|
|
793
|
+
}
|
|
794
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
795
|
+
color: transparent;
|
|
796
|
+
}
|
|
797
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
798
|
+
color: transparent;
|
|
799
|
+
}
|
|
800
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
801
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
802
|
+
position: absolute;
|
|
803
|
+
top: 50%;
|
|
804
|
+
left: 50%;
|
|
805
|
+
width: 1.3rem;
|
|
806
|
+
height: 1.3rem;
|
|
807
|
+
transform: translate(-50%, -50%);
|
|
808
|
+
}
|
|
809
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
810
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
811
|
+
}
|
|
812
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
813
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
814
|
+
}
|
|
815
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
816
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
817
|
+
}
|
|
818
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
819
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
820
|
+
position: absolute;
|
|
821
|
+
top: 50%;
|
|
822
|
+
right: 50%;
|
|
823
|
+
width: 1.3rem;
|
|
824
|
+
height: 1.3rem;
|
|
825
|
+
transform: translate(50%, -50%);
|
|
826
|
+
}
|
|
827
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
828
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
829
|
+
}
|
|
830
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
831
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
832
|
+
}
|
|
833
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
834
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
835
|
+
}
|
|
836
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
837
|
+
border-top-left-radius: 0.5rem;
|
|
838
|
+
border-bottom-left-radius: 0.5rem;
|
|
839
|
+
border-left: 1px solid var(--color-gray-300);
|
|
840
|
+
}
|
|
841
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
842
|
+
border-left: 1px solid var(--color-gray-700);
|
|
843
|
+
}
|
|
844
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
845
|
+
border-top-right-radius: 0.5rem;
|
|
846
|
+
border-bottom-right-radius: 0.5rem;
|
|
847
|
+
border-left: 0;
|
|
848
|
+
}
|
|
849
|
+
.datatable-wrapper .datatable-bottom & .datatable-pagination-list-item-link:hover {
|
|
850
|
+
background-color: var(--color-gray-50);
|
|
851
|
+
color: var(--color-gray-700);
|
|
852
|
+
}
|
|
853
|
+
.dark .datatable-wrapper .datatable-bottom & .datatable-pagination-list-item-link:hover {
|
|
854
|
+
background-color: var(--color-gray-700);
|
|
855
|
+
color: white;
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
.datatable-pagination-list-item-link {
|
|
859
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination & {
|
|
860
|
+
display: flex;
|
|
861
|
+
align-items: center;
|
|
862
|
+
color: var(--color-gray-500);
|
|
863
|
+
font-weight: 500;
|
|
864
|
+
padding-left: 0.75rem;
|
|
865
|
+
padding-right: 0.75rem;
|
|
866
|
+
height: 2rem;
|
|
867
|
+
font-size: 0.875rem;
|
|
868
|
+
border-top: 1px solid var(--color-gray-300);
|
|
869
|
+
border-bottom: 1px solid var(--color-gray-300);
|
|
870
|
+
border-right: 1px solid var(--color-gray-300);
|
|
871
|
+
}
|
|
872
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination & {
|
|
873
|
+
color: var(--color-gray-400);
|
|
874
|
+
border-color: var(--color-gray-700);
|
|
875
|
+
}
|
|
876
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type & {
|
|
877
|
+
color: transparent;
|
|
878
|
+
}
|
|
879
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type & {
|
|
880
|
+
color: transparent;
|
|
881
|
+
}
|
|
882
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type & {
|
|
883
|
+
color: transparent;
|
|
884
|
+
}
|
|
885
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type & {
|
|
886
|
+
color: transparent;
|
|
887
|
+
}
|
|
888
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type &::after {
|
|
889
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
890
|
+
position: absolute;
|
|
891
|
+
top: 50%;
|
|
892
|
+
left: 50%;
|
|
893
|
+
width: 1.3rem;
|
|
894
|
+
height: 1.3rem;
|
|
895
|
+
transform: translate(-50%, -50%);
|
|
896
|
+
}
|
|
897
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type &:hover::after {
|
|
898
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
899
|
+
}
|
|
900
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type &::after {
|
|
901
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
902
|
+
}
|
|
903
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type &:hover::after {
|
|
904
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
905
|
+
}
|
|
906
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type &::after {
|
|
907
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
908
|
+
position: absolute;
|
|
909
|
+
top: 50%;
|
|
910
|
+
right: 50%;
|
|
911
|
+
width: 1.3rem;
|
|
912
|
+
height: 1.3rem;
|
|
913
|
+
transform: translate(50%, -50%);
|
|
914
|
+
}
|
|
915
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type &:hover::after {
|
|
916
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
917
|
+
}
|
|
918
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type &::after {
|
|
919
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
920
|
+
}
|
|
921
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type &:hover::after {
|
|
922
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
923
|
+
}
|
|
924
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type & {
|
|
925
|
+
border-top-left-radius: 0.5rem;
|
|
926
|
+
border-bottom-left-radius: 0.5rem;
|
|
927
|
+
border-left: 1px solid var(--color-gray-300);
|
|
928
|
+
}
|
|
929
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type & {
|
|
930
|
+
border-left: 1px solid var(--color-gray-700);
|
|
931
|
+
}
|
|
932
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type & {
|
|
933
|
+
border-top-right-radius: 0.5rem;
|
|
934
|
+
border-bottom-right-radius: 0.5rem;
|
|
935
|
+
border-left: 0;
|
|
936
|
+
}
|
|
937
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination &:hover {
|
|
938
|
+
background-color: var(--color-gray-50);
|
|
939
|
+
color: var(--color-gray-700);
|
|
940
|
+
}
|
|
941
|
+
.dark .datatable-wrapper .datatable-bottom .datatable-pagination &:hover {
|
|
942
|
+
background-color: var(--color-gray-700);
|
|
943
|
+
color: white;
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
.sr-only {
|
|
947
|
+
position: absolute;
|
|
948
|
+
width: 1px;
|
|
949
|
+
height: 1px;
|
|
950
|
+
padding: 0;
|
|
951
|
+
margin: -1px;
|
|
952
|
+
overflow: hidden;
|
|
953
|
+
clip-path: inset(50%);
|
|
954
|
+
white-space: nowrap;
|
|
955
|
+
border-width: 0;
|
|
956
|
+
}
|
|
957
|
+
.absolute {
|
|
958
|
+
position: absolute;
|
|
959
|
+
}
|
|
960
|
+
.fixed {
|
|
961
|
+
position: fixed;
|
|
962
|
+
}
|
|
963
|
+
.relative {
|
|
964
|
+
position: relative;
|
|
965
|
+
}
|
|
966
|
+
.static {
|
|
967
|
+
position: static;
|
|
968
|
+
}
|
|
969
|
+
.inset-0 {
|
|
970
|
+
inset: calc(var(--spacing) * 0);
|
|
971
|
+
}
|
|
972
|
+
.top-0 {
|
|
973
|
+
top: calc(var(--spacing) * 0);
|
|
974
|
+
}
|
|
975
|
+
.right-0 {
|
|
976
|
+
right: calc(var(--spacing) * 0);
|
|
977
|
+
}
|
|
978
|
+
.right-4 {
|
|
979
|
+
right: calc(var(--spacing) * 4);
|
|
980
|
+
}
|
|
981
|
+
.bottom-0 {
|
|
982
|
+
bottom: calc(var(--spacing) * 0);
|
|
983
|
+
}
|
|
984
|
+
.bottom-4 {
|
|
985
|
+
bottom: calc(var(--spacing) * 4);
|
|
986
|
+
}
|
|
987
|
+
.bottom-\[60px\] {
|
|
988
|
+
bottom: 60px;
|
|
989
|
+
}
|
|
990
|
+
.left-0 {
|
|
991
|
+
left: calc(var(--spacing) * 0);
|
|
992
|
+
}
|
|
993
|
+
.z-10 {
|
|
994
|
+
z-index: 10;
|
|
995
|
+
}
|
|
996
|
+
.z-20 {
|
|
997
|
+
z-index: 20;
|
|
998
|
+
}
|
|
999
|
+
.z-30 {
|
|
1000
|
+
z-index: 30;
|
|
1001
|
+
}
|
|
1002
|
+
.z-40 {
|
|
1003
|
+
z-index: 40;
|
|
1004
|
+
}
|
|
1005
|
+
.z-50 {
|
|
1006
|
+
z-index: 50;
|
|
1007
|
+
}
|
|
1008
|
+
.col-span-3 {
|
|
1009
|
+
grid-column: span 3 / span 3;
|
|
1010
|
+
}
|
|
1011
|
+
.container {
|
|
1012
|
+
width: 100%;
|
|
1013
|
+
@media (width >= 40rem) {
|
|
1014
|
+
max-width: 40rem;
|
|
1015
|
+
}
|
|
1016
|
+
@media (width >= 48rem) {
|
|
1017
|
+
max-width: 48rem;
|
|
1018
|
+
}
|
|
1019
|
+
@media (width >= 64rem) {
|
|
1020
|
+
max-width: 64rem;
|
|
1021
|
+
}
|
|
1022
|
+
@media (width >= 80rem) {
|
|
1023
|
+
max-width: 80rem;
|
|
1024
|
+
}
|
|
1025
|
+
@media (width >= 96rem) {
|
|
1026
|
+
max-width: 96rem;
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
.-mx-1\.5 {
|
|
1030
|
+
margin-inline: calc(var(--spacing) * -1.5);
|
|
1031
|
+
}
|
|
1032
|
+
.mx-0 {
|
|
1033
|
+
margin-inline: calc(var(--spacing) * 0);
|
|
1034
|
+
}
|
|
1035
|
+
.mx-1 {
|
|
1036
|
+
margin-inline: calc(var(--spacing) * 1);
|
|
1037
|
+
}
|
|
1038
|
+
.mx-4 {
|
|
1039
|
+
margin-inline: calc(var(--spacing) * 4);
|
|
1040
|
+
}
|
|
1041
|
+
.-my-1\.5 {
|
|
1042
|
+
margin-block: calc(var(--spacing) * -1.5);
|
|
1043
|
+
}
|
|
1044
|
+
.my-4 {
|
|
1045
|
+
margin-block: calc(var(--spacing) * 4);
|
|
1046
|
+
}
|
|
1047
|
+
.my-6 {
|
|
1048
|
+
margin-block: calc(var(--spacing) * 6);
|
|
1049
|
+
}
|
|
1050
|
+
.my-10 {
|
|
1051
|
+
margin-block: calc(var(--spacing) * 10);
|
|
1052
|
+
}
|
|
1053
|
+
.ms-0 {
|
|
1054
|
+
margin-inline-start: calc(var(--spacing) * 0);
|
|
1055
|
+
}
|
|
1056
|
+
.ms-1 {
|
|
1057
|
+
margin-inline-start: calc(var(--spacing) * 1);
|
|
1058
|
+
}
|
|
1059
|
+
.ms-2 {
|
|
1060
|
+
margin-inline-start: calc(var(--spacing) * 2);
|
|
1061
|
+
}
|
|
1062
|
+
.ms-3 {
|
|
1063
|
+
margin-inline-start: calc(var(--spacing) * 3);
|
|
1064
|
+
}
|
|
1065
|
+
.ms-auto {
|
|
1066
|
+
margin-inline-start: auto;
|
|
1067
|
+
}
|
|
1068
|
+
.me-2 {
|
|
1069
|
+
margin-inline-end: calc(var(--spacing) * 2);
|
|
1070
|
+
}
|
|
1071
|
+
.me-2\.5 {
|
|
1072
|
+
margin-inline-end: calc(var(--spacing) * 2.5);
|
|
1073
|
+
}
|
|
1074
|
+
.mt-1 {
|
|
1075
|
+
margin-top: calc(var(--spacing) * 1);
|
|
1076
|
+
}
|
|
1077
|
+
.mt-2 {
|
|
1078
|
+
margin-top: calc(var(--spacing) * 2);
|
|
1079
|
+
}
|
|
1080
|
+
.apexcharts-canvas {
|
|
1081
|
+
& .apexcharts-tooltip {
|
|
1082
|
+
background-color: white !important;
|
|
1083
|
+
color: var(--color-gray-700) !important;
|
|
1084
|
+
border: 0 !important;
|
|
1085
|
+
border-radius: 0.25rem !important;
|
|
1086
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1087
|
+
}
|
|
1088
|
+
.dark & .apexcharts-tooltip {
|
|
1089
|
+
background-color: var(--color-gray-700) !important;
|
|
1090
|
+
color: var(--color-gray-400) !important;
|
|
1091
|
+
border-color: transparent !important;
|
|
1092
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1093
|
+
}
|
|
1094
|
+
& .apexcharts-tooltip .apexcharts-tooltip-title {
|
|
1095
|
+
padding-top: 0.5rem !important;
|
|
1096
|
+
padding-bottom: 0.5rem !important;
|
|
1097
|
+
padding-right: 0.75rem !important;
|
|
1098
|
+
padding-left: 0.75rem !important;
|
|
1099
|
+
margin-bottom: 0.75rem !important;
|
|
1100
|
+
background-color: var(--color-gray-100) !important;
|
|
1101
|
+
border-bottom-color: var(--color-gray-200) !important;
|
|
1102
|
+
font-size: 0.875rem !important;
|
|
1103
|
+
font-weight: 400 !important;
|
|
1104
|
+
color: var(--color-gray-500) !important;
|
|
1105
|
+
}
|
|
1106
|
+
.dark & .apexcharts-tooltip .apexcharts-tooltip-title {
|
|
1107
|
+
background-color: var(--color-gray-600) !important;
|
|
1108
|
+
border-color: var(--color-gray-500) !important;
|
|
1109
|
+
color: var(--color-gray-500) !important;
|
|
1110
|
+
}
|
|
1111
|
+
& .apexcharts-xaxistooltip {
|
|
1112
|
+
color: var(--color-gray-500) !important;
|
|
1113
|
+
padding-top: 0.5rem !important;
|
|
1114
|
+
padding-bottom: 0.5rem !important;
|
|
1115
|
+
padding-right: 0.75rem !important;
|
|
1116
|
+
padding-left: 0.75rem !important;
|
|
1117
|
+
border-color: transparent !important;
|
|
1118
|
+
background-color: white !important;
|
|
1119
|
+
border-radius: 0.25rem !important;
|
|
1120
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1121
|
+
}
|
|
1122
|
+
.dark & .apexcharts-xaxistooltip {
|
|
1123
|
+
color: var(--color-gray-400) !important;
|
|
1124
|
+
background-color: var(--color-gray-700) !important;
|
|
1125
|
+
}
|
|
1126
|
+
& .apexcharts-tooltip .apexcharts-tooltip-text-y-label {
|
|
1127
|
+
color: var(--color-gray-500) !important;
|
|
1128
|
+
font-size: 0.875rem !important;
|
|
1129
|
+
}
|
|
1130
|
+
.dark & .apexcharts-tooltip .apexcharts-tooltip-text-y-label {
|
|
1131
|
+
color: var(--color-gray-400) !important;
|
|
1132
|
+
}
|
|
1133
|
+
& .apexcharts-tooltip .apexcharts-tooltip-text-y-value {
|
|
1134
|
+
color: var(--color-gray-900);
|
|
1135
|
+
font-size: 0.875rem !important;
|
|
1136
|
+
}
|
|
1137
|
+
.dark & .apexcharts-tooltip .apexcharts-tooltip-text-y-value {
|
|
1138
|
+
color: white !important;
|
|
1139
|
+
}
|
|
1140
|
+
& .apexcharts-xaxistooltip-text {
|
|
1141
|
+
font-weight: 400 !important;
|
|
1142
|
+
font-size: 0.875rem !important;
|
|
1143
|
+
}
|
|
1144
|
+
& .apexcharts-xaxistooltip:after {
|
|
1145
|
+
border-bottom-color: white !important;
|
|
1146
|
+
}
|
|
1147
|
+
& .apexcharts-xaxistooltip:before {
|
|
1148
|
+
border-bottom-color: white !important;
|
|
1149
|
+
}
|
|
1150
|
+
& .apexcharts-xaxistooltip:after {
|
|
1151
|
+
border-width: 8px !important;
|
|
1152
|
+
margin-left: -8px !important;
|
|
1153
|
+
}
|
|
1154
|
+
& .apexcharts-xaxistooltip:before {
|
|
1155
|
+
border-width: 10px !important;
|
|
1156
|
+
margin-left: -10px !important;
|
|
1157
|
+
}
|
|
1158
|
+
.dark & .apexcharts-xaxistooltip:after {
|
|
1159
|
+
border-bottom-color: var(--color-gray-700) !important;
|
|
1160
|
+
}
|
|
1161
|
+
.dark & .apexcharts-xaxistooltip:before {
|
|
1162
|
+
border-bottom-color: var(--color-gray-700) !important;
|
|
1163
|
+
}
|
|
1164
|
+
& .apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-y-group {
|
|
1165
|
+
padding: 0 !important;
|
|
1166
|
+
}
|
|
1167
|
+
& .apexcharts-tooltip-series-group.apexcharts-active {
|
|
1168
|
+
padding-left: 0.75rem !important;
|
|
1169
|
+
padding-right: 0.75rem !important;
|
|
1170
|
+
padding-bottom: 0.75rem !important;
|
|
1171
|
+
background-color: white !important;
|
|
1172
|
+
color: var(--color-gray-500) !important;
|
|
1173
|
+
}
|
|
1174
|
+
.dark & .apexcharts-tooltip-series-group.apexcharts-active {
|
|
1175
|
+
background-color: var(--color-gray-700) !important;
|
|
1176
|
+
color: var(--color-gray-400) !important;
|
|
1177
|
+
}
|
|
1178
|
+
& .apexcharts-tooltip-series-group.apexcharts-active:first-of-type {
|
|
1179
|
+
padding-top: 0.75rem !important;
|
|
1180
|
+
}
|
|
1181
|
+
& .apexcharts-legend {
|
|
1182
|
+
padding: 0 !important;
|
|
1183
|
+
}
|
|
1184
|
+
& .apexcharts-legend-text {
|
|
1185
|
+
font-size: 0.75rem !important;
|
|
1186
|
+
font-weight: 500 !important;
|
|
1187
|
+
padding-left: 1.25rem !important;
|
|
1188
|
+
color: var(--color-gray-500) !important;
|
|
1189
|
+
}
|
|
1190
|
+
:is([dir=rtl]) & .apexcharts-legend-text {
|
|
1191
|
+
padding-right: 0.5rem !important;
|
|
1192
|
+
}
|
|
1193
|
+
& .apexcharts-legend-text:not(.apexcharts-inactive-legend):hover {
|
|
1194
|
+
color: var(--color-gray-900) !important;
|
|
1195
|
+
}
|
|
1196
|
+
.dark & .apexcharts-legend-text {
|
|
1197
|
+
color: var(--color-gray-400) !important;
|
|
1198
|
+
}
|
|
1199
|
+
.dark & .apexcharts-legend-text:not(.apexcharts-inactive-legend):hover {
|
|
1200
|
+
color: white !important;
|
|
1201
|
+
}
|
|
1202
|
+
& .apexcharts-legend-series {
|
|
1203
|
+
margin-left: 0.5rem !important;
|
|
1204
|
+
margin-right: 0.5rem !important;
|
|
1205
|
+
margin-bottom: 0.25rem !important;
|
|
1206
|
+
display: flex !important;
|
|
1207
|
+
align-items: center !important;
|
|
1208
|
+
}
|
|
1209
|
+
.dark & .apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-value {
|
|
1210
|
+
fill: white !important;
|
|
1211
|
+
}
|
|
1212
|
+
& .apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-label {
|
|
1213
|
+
fill: var(--color-gray-500) !important;
|
|
1214
|
+
font-size: 1rem,[object Object] !important;
|
|
1215
|
+
font-weight: 400 !important;
|
|
1216
|
+
}
|
|
1217
|
+
.dark & .apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-label {
|
|
1218
|
+
fill: var(--color-gray-400) !important;
|
|
1219
|
+
}
|
|
1220
|
+
& .apexcharts-datalabels .apexcharts-text.apexcharts-pie-label {
|
|
1221
|
+
font-size: 0.75rem,[object Object] !important;
|
|
1222
|
+
font-weight: 600 !important;
|
|
1223
|
+
text-shadow: none !important;
|
|
1224
|
+
filter: none !important;
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
.apexcharts-legend-series {
|
|
1228
|
+
.apexcharts-canvas & {
|
|
1229
|
+
margin-left: 0.5rem !important;
|
|
1230
|
+
margin-right: 0.5rem !important;
|
|
1231
|
+
margin-bottom: 0.25rem !important;
|
|
1232
|
+
display: flex !important;
|
|
1233
|
+
align-items: center !important;
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
.apexcharts-tooltip {
|
|
1237
|
+
.apexcharts-canvas & {
|
|
1238
|
+
background-color: white !important;
|
|
1239
|
+
color: var(--color-gray-700) !important;
|
|
1240
|
+
border: 0 !important;
|
|
1241
|
+
border-radius: 0.25rem !important;
|
|
1242
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1243
|
+
}
|
|
1244
|
+
.dark .apexcharts-canvas & {
|
|
1245
|
+
background-color: var(--color-gray-700) !important;
|
|
1246
|
+
color: var(--color-gray-400) !important;
|
|
1247
|
+
border-color: transparent !important;
|
|
1248
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1249
|
+
}
|
|
1250
|
+
.apexcharts-canvas & .apexcharts-tooltip-title {
|
|
1251
|
+
padding-top: 0.5rem !important;
|
|
1252
|
+
padding-bottom: 0.5rem !important;
|
|
1253
|
+
padding-right: 0.75rem !important;
|
|
1254
|
+
padding-left: 0.75rem !important;
|
|
1255
|
+
margin-bottom: 0.75rem !important;
|
|
1256
|
+
background-color: var(--color-gray-100) !important;
|
|
1257
|
+
border-bottom-color: var(--color-gray-200) !important;
|
|
1258
|
+
font-size: 0.875rem !important;
|
|
1259
|
+
font-weight: 400 !important;
|
|
1260
|
+
color: var(--color-gray-500) !important;
|
|
1261
|
+
}
|
|
1262
|
+
.dark .apexcharts-canvas & .apexcharts-tooltip-title {
|
|
1263
|
+
background-color: var(--color-gray-600) !important;
|
|
1264
|
+
border-color: var(--color-gray-500) !important;
|
|
1265
|
+
color: var(--color-gray-500) !important;
|
|
1266
|
+
}
|
|
1267
|
+
.apexcharts-canvas & .apexcharts-tooltip-text-y-label {
|
|
1268
|
+
color: var(--color-gray-500) !important;
|
|
1269
|
+
font-size: 0.875rem !important;
|
|
1270
|
+
}
|
|
1271
|
+
.dark .apexcharts-canvas & .apexcharts-tooltip-text-y-label {
|
|
1272
|
+
color: var(--color-gray-400) !important;
|
|
1273
|
+
}
|
|
1274
|
+
.apexcharts-canvas & .apexcharts-tooltip-text-y-value {
|
|
1275
|
+
color: var(--color-gray-900);
|
|
1276
|
+
font-size: 0.875rem !important;
|
|
1277
|
+
}
|
|
1278
|
+
:is([dir=rtl]) & .apexcharts-tooltip-marker {
|
|
1279
|
+
margin-right: 0px !important;
|
|
1280
|
+
margin-left: e !important;
|
|
1281
|
+
}
|
|
1282
|
+
.dark .apexcharts-canvas & .apexcharts-tooltip-text-y-value {
|
|
1283
|
+
color: white !important;
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
.datatable-top {
|
|
1287
|
+
.datatable-wrapper & {
|
|
1288
|
+
display: flex;
|
|
1289
|
+
justify-content: space-between;
|
|
1290
|
+
flex-direction: column-reverse;
|
|
1291
|
+
align-items: start;
|
|
1292
|
+
gap: 1rem;
|
|
1293
|
+
margin-bottom: 1rem;
|
|
1294
|
+
@media (min-width: 640px) {
|
|
1295
|
+
flex-direction: row-reverse;
|
|
1296
|
+
align-items: center;
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
.datatable-wrapper & .datatable-dropdown {
|
|
1300
|
+
color: var(--color-gray-500);
|
|
1301
|
+
font-size: 0.875rem;
|
|
1302
|
+
}
|
|
1303
|
+
.dark .datatable-wrapper & .datatable-dropdown {
|
|
1304
|
+
color: var(--color-gray-400);
|
|
1305
|
+
}
|
|
1306
|
+
.datatable-wrapper & .datatable-dropdown .datatable-selector {
|
|
1307
|
+
background-color: var(--color-gray-50);
|
|
1308
|
+
color: var(--color-gray-900);
|
|
1309
|
+
font-size: 0.875rem;
|
|
1310
|
+
border: 1px solid var(--color-gray-300);
|
|
1311
|
+
border-radius: 0.5rem;
|
|
1312
|
+
margin-right: 0.25rem;
|
|
1313
|
+
min-width: 4rem;
|
|
1314
|
+
}
|
|
1315
|
+
.dark .datatable-wrapper & .datatable-dropdown .datatable-selector {
|
|
1316
|
+
background-color: var(--color-gray-800);
|
|
1317
|
+
border: 1px solid var(--color-gray-700);
|
|
1318
|
+
color: white;
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
.apexcharts-tooltip-marker {
|
|
1322
|
+
:is([dir=rtl]) .apexcharts-tooltip & {
|
|
1323
|
+
margin-right: 0px !important;
|
|
1324
|
+
margin-left: e !important;
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
.datatable-dropdown {
|
|
1328
|
+
.datatable-wrapper .datatable-top & {
|
|
1329
|
+
color: var(--color-gray-500);
|
|
1330
|
+
font-size: 0.875rem;
|
|
1331
|
+
}
|
|
1332
|
+
.dark .datatable-wrapper .datatable-top & {
|
|
1333
|
+
color: var(--color-gray-400);
|
|
1334
|
+
}
|
|
1335
|
+
.datatable-wrapper .datatable-top & .datatable-selector {
|
|
1336
|
+
background-color: var(--color-gray-50);
|
|
1337
|
+
color: var(--color-gray-900);
|
|
1338
|
+
font-size: 0.875rem;
|
|
1339
|
+
border: 1px solid var(--color-gray-300);
|
|
1340
|
+
border-radius: 0.5rem;
|
|
1341
|
+
margin-right: 0.25rem;
|
|
1342
|
+
min-width: 4rem;
|
|
1343
|
+
}
|
|
1344
|
+
.dark .datatable-wrapper .datatable-top & .datatable-selector {
|
|
1345
|
+
background-color: var(--color-gray-800);
|
|
1346
|
+
border: 1px solid var(--color-gray-700);
|
|
1347
|
+
color: white;
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
.datatable-selector {
|
|
1351
|
+
.datatable-wrapper .datatable-top .datatable-dropdown & {
|
|
1352
|
+
background-color: var(--color-gray-50);
|
|
1353
|
+
color: var(--color-gray-900);
|
|
1354
|
+
font-size: 0.875rem;
|
|
1355
|
+
border: 1px solid var(--color-gray-300);
|
|
1356
|
+
border-radius: 0.5rem;
|
|
1357
|
+
margin-right: 0.25rem;
|
|
1358
|
+
min-width: 4rem;
|
|
1359
|
+
}
|
|
1360
|
+
.dark .datatable-wrapper .datatable-top .datatable-dropdown & {
|
|
1361
|
+
background-color: var(--color-gray-800);
|
|
1362
|
+
border: 1px solid var(--color-gray-700);
|
|
1363
|
+
color: white;
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
.apexcharts-tooltip-title {
|
|
1367
|
+
.apexcharts-canvas .apexcharts-tooltip & {
|
|
1368
|
+
padding-top: 0.5rem !important;
|
|
1369
|
+
padding-bottom: 0.5rem !important;
|
|
1370
|
+
padding-right: 0.75rem !important;
|
|
1371
|
+
padding-left: 0.75rem !important;
|
|
1372
|
+
margin-bottom: 0.75rem !important;
|
|
1373
|
+
background-color: var(--color-gray-100) !important;
|
|
1374
|
+
border-bottom-color: var(--color-gray-200) !important;
|
|
1375
|
+
font-size: 0.875rem !important;
|
|
1376
|
+
font-weight: 400 !important;
|
|
1377
|
+
color: var(--color-gray-500) !important;
|
|
1378
|
+
}
|
|
1379
|
+
.dark .apexcharts-canvas .apexcharts-tooltip & {
|
|
1380
|
+
background-color: var(--color-gray-600) !important;
|
|
1381
|
+
border-color: var(--color-gray-500) !important;
|
|
1382
|
+
color: var(--color-gray-500) !important;
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
.mb-1 {
|
|
1386
|
+
margin-bottom: calc(var(--spacing) * 1);
|
|
1387
|
+
}
|
|
1388
|
+
.mb-2 {
|
|
1389
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
1390
|
+
}
|
|
1391
|
+
.mb-3 {
|
|
1392
|
+
margin-bottom: calc(var(--spacing) * 3);
|
|
1393
|
+
}
|
|
1394
|
+
.mb-6 {
|
|
1395
|
+
margin-bottom: calc(var(--spacing) * 6);
|
|
1396
|
+
}
|
|
1397
|
+
.apexcharts-xaxistooltip {
|
|
1398
|
+
.apexcharts-canvas & {
|
|
1399
|
+
color: var(--color-gray-500) !important;
|
|
1400
|
+
padding-top: 0.5rem !important;
|
|
1401
|
+
padding-bottom: 0.5rem !important;
|
|
1402
|
+
padding-right: 0.75rem !important;
|
|
1403
|
+
padding-left: 0.75rem !important;
|
|
1404
|
+
border-color: transparent !important;
|
|
1405
|
+
background-color: white !important;
|
|
1406
|
+
border-radius: 0.25rem !important;
|
|
1407
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1408
|
+
}
|
|
1409
|
+
.dark .apexcharts-canvas & {
|
|
1410
|
+
color: var(--color-gray-400) !important;
|
|
1411
|
+
background-color: var(--color-gray-700) !important;
|
|
1412
|
+
}
|
|
1413
|
+
.apexcharts-canvas &:after {
|
|
1414
|
+
border-bottom-color: white !important;
|
|
1415
|
+
}
|
|
1416
|
+
.apexcharts-canvas &:before {
|
|
1417
|
+
border-bottom-color: white !important;
|
|
1418
|
+
}
|
|
1419
|
+
.apexcharts-canvas &:after {
|
|
1420
|
+
border-width: 8px !important;
|
|
1421
|
+
margin-left: -8px !important;
|
|
1422
|
+
}
|
|
1423
|
+
.apexcharts-canvas &:before {
|
|
1424
|
+
border-width: 10px !important;
|
|
1425
|
+
margin-left: -10px !important;
|
|
1426
|
+
}
|
|
1427
|
+
.dark .apexcharts-canvas &:after {
|
|
1428
|
+
border-bottom-color: var(--color-gray-700) !important;
|
|
1429
|
+
}
|
|
1430
|
+
.dark .apexcharts-canvas &:before {
|
|
1431
|
+
border-bottom-color: var(--color-gray-700) !important;
|
|
1432
|
+
}
|
|
1433
|
+
}
|
|
1434
|
+
.ml-auto {
|
|
1435
|
+
margin-left: auto;
|
|
1436
|
+
}
|
|
1437
|
+
.datatable-pagination-list {
|
|
1438
|
+
.datatable-wrapper .datatable-bottom .datatable-pagination & {
|
|
1439
|
+
display: flex;
|
|
1440
|
+
align-items: center;
|
|
1441
|
+
height: 2rem;
|
|
1442
|
+
font-size: 0.875rem;
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
.block {
|
|
1446
|
+
display: block;
|
|
1447
|
+
}
|
|
1448
|
+
.contents {
|
|
1449
|
+
display: contents;
|
|
1450
|
+
}
|
|
1451
|
+
.flex {
|
|
1452
|
+
display: flex;
|
|
1453
|
+
}
|
|
1454
|
+
.grid {
|
|
1455
|
+
display: grid;
|
|
1456
|
+
}
|
|
1457
|
+
.hidden {
|
|
1458
|
+
display: none;
|
|
1459
|
+
}
|
|
1460
|
+
.inline {
|
|
1461
|
+
display: inline;
|
|
1462
|
+
}
|
|
1463
|
+
.inline-block {
|
|
1464
|
+
display: inline-block;
|
|
1465
|
+
}
|
|
1466
|
+
.inline-flex {
|
|
1467
|
+
display: inline-flex;
|
|
1468
|
+
}
|
|
1469
|
+
.table {
|
|
1470
|
+
display: table;
|
|
1471
|
+
}
|
|
1472
|
+
.h-3 {
|
|
1473
|
+
height: calc(var(--spacing) * 3);
|
|
1474
|
+
}
|
|
1475
|
+
.h-4 {
|
|
1476
|
+
height: calc(var(--spacing) * 4);
|
|
1477
|
+
}
|
|
1478
|
+
.h-5 {
|
|
1479
|
+
height: calc(var(--spacing) * 5);
|
|
1480
|
+
}
|
|
1481
|
+
.h-6 {
|
|
1482
|
+
height: calc(var(--spacing) * 6);
|
|
1483
|
+
}
|
|
1484
|
+
.h-8 {
|
|
1485
|
+
height: calc(var(--spacing) * 8);
|
|
1486
|
+
}
|
|
1487
|
+
.h-12 {
|
|
1488
|
+
height: calc(var(--spacing) * 12);
|
|
1489
|
+
}
|
|
1490
|
+
.h-\[calc\(100\%-1rem\)\] {
|
|
1491
|
+
height: calc(100% - 1rem);
|
|
1492
|
+
}
|
|
1493
|
+
.h-auto {
|
|
1494
|
+
height: auto;
|
|
1495
|
+
}
|
|
1496
|
+
.h-full {
|
|
1497
|
+
height: 100%;
|
|
1498
|
+
}
|
|
1499
|
+
.max-h-full {
|
|
1500
|
+
max-height: 100%;
|
|
1501
|
+
}
|
|
1502
|
+
.datatable-table {
|
|
1503
|
+
.datatable-wrapper & {
|
|
1504
|
+
width: 100%;
|
|
1505
|
+
font-size: 0.875rem;
|
|
1506
|
+
color: var(--color-gray-500);
|
|
1507
|
+
text-align: left;
|
|
1508
|
+
}
|
|
1509
|
+
.dark .datatable-wrapper & {
|
|
1510
|
+
color: var(--color-gray-400);
|
|
1511
|
+
}
|
|
1512
|
+
.datatable-wrapper & thead {
|
|
1513
|
+
font-size: 0.75rem;
|
|
1514
|
+
color: var(--color-gray-500);
|
|
1515
|
+
background-color: var(--color-gray-50);
|
|
1516
|
+
}
|
|
1517
|
+
.dark .datatable-wrapper & thead {
|
|
1518
|
+
color: var(--color-gray-400);
|
|
1519
|
+
background-color: var(--color-gray-800);
|
|
1520
|
+
}
|
|
1521
|
+
.datatable-wrapper & thead th {
|
|
1522
|
+
white-space: nowrap;
|
|
1523
|
+
}
|
|
1524
|
+
.datatable-wrapper & thead th {
|
|
1525
|
+
width: auto !important;
|
|
1526
|
+
padding-top: 0.75rem;
|
|
1527
|
+
padding-bottom: 0.75rem;
|
|
1528
|
+
padding-left: 1.5rem;
|
|
1529
|
+
padding-right: 1.5rem;
|
|
1530
|
+
}
|
|
1531
|
+
.datatable-wrapper & tbody th {
|
|
1532
|
+
width: auto !important;
|
|
1533
|
+
padding-top: 0.75rem;
|
|
1534
|
+
padding-bottom: 0.75rem;
|
|
1535
|
+
padding-left: 1.5rem;
|
|
1536
|
+
padding-right: 1.5rem;
|
|
1537
|
+
}
|
|
1538
|
+
.datatable-wrapper & tbody td {
|
|
1539
|
+
width: auto !important;
|
|
1540
|
+
padding-top: 0.75rem;
|
|
1541
|
+
padding-bottom: 0.75rem;
|
|
1542
|
+
padding-left: 1.5rem;
|
|
1543
|
+
padding-right: 1.5rem;
|
|
1544
|
+
}
|
|
1545
|
+
.datatable-wrapper & thead th .datatable-sorter {
|
|
1546
|
+
text-transform: uppercase;
|
|
1547
|
+
}
|
|
1548
|
+
.datatable-wrapper & thead th {
|
|
1549
|
+
text-transform: uppercase;
|
|
1550
|
+
}
|
|
1551
|
+
.datatable-wrapper & thead th .datatable-sorter:hover {
|
|
1552
|
+
color: var(--color-gray-900);
|
|
1553
|
+
}
|
|
1554
|
+
.datatable-wrapper & thead th.datatable-ascending .datatable-sorter {
|
|
1555
|
+
color: var(--color-gray-900);
|
|
1556
|
+
}
|
|
1557
|
+
.datatable-wrapper & thead th.datatable-descending .datatable-sorter {
|
|
1558
|
+
color: var(--color-gray-900);
|
|
1559
|
+
}
|
|
1560
|
+
.dark .datatable-wrapper & thead th .datatable-sorter:hover {
|
|
1561
|
+
color: white;
|
|
1562
|
+
}
|
|
1563
|
+
.dark .datatable-wrapper & thead th.datatable-ascending .datatable-sorter {
|
|
1564
|
+
color: white;
|
|
1565
|
+
}
|
|
1566
|
+
.dark .datatable-wrapper & thead th.datatable-descending .datatable-sorter {
|
|
1567
|
+
color: white;
|
|
1568
|
+
}
|
|
1569
|
+
.datatable-wrapper & tbody tr.selected {
|
|
1570
|
+
background-color: var(--color-gray-100);
|
|
1571
|
+
}
|
|
1572
|
+
.dark .datatable-wrapper & tbody tr.selected {
|
|
1573
|
+
background-color: var(--color-gray-700);
|
|
1574
|
+
}
|
|
1575
|
+
.datatable-wrapper & tbody tr {
|
|
1576
|
+
border-bottom: 1px solid var(--color-gray-200);
|
|
1577
|
+
}
|
|
1578
|
+
.dark .datatable-wrapper & tbody tr {
|
|
1579
|
+
border-bottom: 1px solid var(--color-gray-700);
|
|
1580
|
+
}
|
|
1581
|
+
.datatable-wrapper & .datatable-empty {
|
|
1582
|
+
text-align: center;
|
|
1583
|
+
}
|
|
1584
|
+
}
|
|
1585
|
+
.w-1\/2 {
|
|
1586
|
+
width: calc(1/2 * 100%);
|
|
1587
|
+
}
|
|
1588
|
+
.w-3 {
|
|
1589
|
+
width: calc(var(--spacing) * 3);
|
|
1590
|
+
}
|
|
1591
|
+
.w-4 {
|
|
1592
|
+
width: calc(var(--spacing) * 4);
|
|
1593
|
+
}
|
|
1594
|
+
.w-5 {
|
|
1595
|
+
width: calc(var(--spacing) * 5);
|
|
1596
|
+
}
|
|
1597
|
+
.w-6 {
|
|
1598
|
+
width: calc(var(--spacing) * 6);
|
|
1599
|
+
}
|
|
1600
|
+
.w-8 {
|
|
1601
|
+
width: calc(var(--spacing) * 8);
|
|
1602
|
+
}
|
|
1603
|
+
.w-12 {
|
|
1604
|
+
width: calc(var(--spacing) * 12);
|
|
1605
|
+
}
|
|
1606
|
+
.w-64 {
|
|
1607
|
+
width: calc(var(--spacing) * 64);
|
|
1608
|
+
}
|
|
1609
|
+
.w-full {
|
|
1610
|
+
width: 100%;
|
|
1611
|
+
}
|
|
1612
|
+
.max-w-2xl {
|
|
1613
|
+
max-width: var(--container-2xl);
|
|
1614
|
+
}
|
|
1615
|
+
.max-w-full {
|
|
1616
|
+
max-width: 100%;
|
|
1617
|
+
}
|
|
1618
|
+
.max-w-sm {
|
|
1619
|
+
max-width: var(--container-sm);
|
|
1620
|
+
}
|
|
1621
|
+
.max-w-xs {
|
|
1622
|
+
max-width: var(--container-xs);
|
|
1623
|
+
}
|
|
1624
|
+
.datatable-input {
|
|
1625
|
+
.datatable-wrapper .datatable-search & {
|
|
1626
|
+
color: var(--color-gray-900);
|
|
1627
|
+
font-size: 0.875rem;
|
|
1628
|
+
border: 1px solid var(--color-gray-300);
|
|
1629
|
+
border-radius: 0.5rem;
|
|
1630
|
+
background-color: var(--color-gray-50);
|
|
1631
|
+
min-width: 16rem;
|
|
1632
|
+
}
|
|
1633
|
+
.datatable-wrapper & {
|
|
1634
|
+
color: var(--color-gray-900);
|
|
1635
|
+
font-size: 0.875rem;
|
|
1636
|
+
border: 1px solid var(--color-gray-300);
|
|
1637
|
+
border-radius: 0.5rem;
|
|
1638
|
+
background-color: var(--color-gray-50);
|
|
1639
|
+
min-width: 16rem;
|
|
1640
|
+
}
|
|
1641
|
+
.dark .datatable-wrapper .datatable-search & {
|
|
1642
|
+
color: white;
|
|
1643
|
+
background-color: var(--color-gray-800);
|
|
1644
|
+
border: 1px solid var(--color-gray-700);
|
|
1645
|
+
}
|
|
1646
|
+
.dark .datatable-wrapper & {
|
|
1647
|
+
color: white;
|
|
1648
|
+
background-color: var(--color-gray-800);
|
|
1649
|
+
border: 1px solid var(--color-gray-700);
|
|
1650
|
+
}
|
|
1651
|
+
.datatable-wrapper thead th & {
|
|
1652
|
+
background-color: white;
|
|
1653
|
+
font-weight: 400;
|
|
1654
|
+
color: var(--color-gray-900);
|
|
1655
|
+
padding-top: .35rem;
|
|
1656
|
+
padding-bottom: .35rem;
|
|
1657
|
+
min-width: 0;
|
|
1658
|
+
}
|
|
1659
|
+
.dark .datatable-wrapper thead th & {
|
|
1660
|
+
background-color: var(--color-gray-700);
|
|
1661
|
+
border-color: var(--color-gray-600);
|
|
1662
|
+
color: white;
|
|
1663
|
+
}
|
|
1664
|
+
.datatable-wrapper .datatable-search &:focus {
|
|
1665
|
+
border-color: var(--color-blue-600);
|
|
1666
|
+
}
|
|
1667
|
+
}
|
|
1668
|
+
.datatable-search {
|
|
1669
|
+
.datatable-wrapper & .datatable-input {
|
|
1670
|
+
color: var(--color-gray-900);
|
|
1671
|
+
font-size: 0.875rem;
|
|
1672
|
+
border: 1px solid var(--color-gray-300);
|
|
1673
|
+
border-radius: 0.5rem;
|
|
1674
|
+
background-color: var(--color-gray-50);
|
|
1675
|
+
min-width: 16rem;
|
|
1676
|
+
}
|
|
1677
|
+
.dark .datatable-wrapper & .datatable-input {
|
|
1678
|
+
color: white;
|
|
1679
|
+
background-color: var(--color-gray-800);
|
|
1680
|
+
border: 1px solid var(--color-gray-700);
|
|
1681
|
+
}
|
|
1682
|
+
.datatable-wrapper & .datatable-input:focus {
|
|
1683
|
+
border-color: var(--color-blue-600);
|
|
1684
|
+
}
|
|
1685
|
+
}
|
|
1686
|
+
.flex-1 {
|
|
1687
|
+
flex: 1;
|
|
1688
|
+
}
|
|
1689
|
+
.flex-shrink {
|
|
1690
|
+
flex-shrink: 1;
|
|
1691
|
+
}
|
|
1692
|
+
.shrink-0 {
|
|
1693
|
+
flex-shrink: 0;
|
|
1694
|
+
}
|
|
1695
|
+
.grow {
|
|
1696
|
+
flex-grow: 1;
|
|
1697
|
+
}
|
|
1698
|
+
.-translate-x-full {
|
|
1699
|
+
--tw-translate-x: -100%;
|
|
1700
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1701
|
+
}
|
|
1702
|
+
.translate-x-0 {
|
|
1703
|
+
--tw-translate-x: calc(var(--spacing) * 0);
|
|
1704
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1705
|
+
}
|
|
1706
|
+
.translate-x-full {
|
|
1707
|
+
--tw-translate-x: 100%;
|
|
1708
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1709
|
+
}
|
|
1710
|
+
.-translate-y-full {
|
|
1711
|
+
--tw-translate-y: -100%;
|
|
1712
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1713
|
+
}
|
|
1714
|
+
.translate-y-full {
|
|
1715
|
+
--tw-translate-y: 100%;
|
|
1716
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1717
|
+
}
|
|
1718
|
+
.rotate-180 {
|
|
1719
|
+
rotate: 180deg;
|
|
1720
|
+
}
|
|
1721
|
+
.transform {
|
|
1722
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1723
|
+
}
|
|
1724
|
+
.transform-none {
|
|
1725
|
+
transform: none;
|
|
1726
|
+
}
|
|
1727
|
+
.animate-spin {
|
|
1728
|
+
animation: var(--animate-spin);
|
|
1729
|
+
}
|
|
1730
|
+
.cursor-default {
|
|
1731
|
+
cursor: default;
|
|
1732
|
+
}
|
|
1733
|
+
.cursor-not-allowed {
|
|
1734
|
+
cursor: not-allowed;
|
|
1735
|
+
}
|
|
1736
|
+
.cursor-pointer {
|
|
1737
|
+
cursor: pointer;
|
|
1738
|
+
}
|
|
1739
|
+
.resize {
|
|
1740
|
+
resize: both;
|
|
1741
|
+
}
|
|
1742
|
+
.grid-cols-4 {
|
|
1743
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1744
|
+
}
|
|
1745
|
+
.grid-cols-7 {
|
|
1746
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
1747
|
+
}
|
|
1748
|
+
.place-items-center {
|
|
1749
|
+
place-items: center;
|
|
1750
|
+
}
|
|
1751
|
+
.items-center {
|
|
1752
|
+
align-items: center;
|
|
1753
|
+
}
|
|
1754
|
+
.items-end {
|
|
1755
|
+
align-items: flex-end;
|
|
1756
|
+
}
|
|
1757
|
+
.items-start {
|
|
1758
|
+
align-items: flex-start;
|
|
1759
|
+
}
|
|
1760
|
+
.justify-between {
|
|
1761
|
+
justify-content: space-between;
|
|
1762
|
+
}
|
|
1763
|
+
.justify-center {
|
|
1764
|
+
justify-content: center;
|
|
1765
|
+
}
|
|
1766
|
+
.justify-end {
|
|
1767
|
+
justify-content: flex-end;
|
|
1768
|
+
}
|
|
1769
|
+
.justify-start {
|
|
1770
|
+
justify-content: flex-start;
|
|
1771
|
+
}
|
|
1772
|
+
.space-y-2 {
|
|
1773
|
+
:where(& > :not(:last-child)) {
|
|
1774
|
+
--tw-space-y-reverse: 0;
|
|
1775
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
1776
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1777
|
+
}
|
|
1778
|
+
}
|
|
1779
|
+
.space-y-3 {
|
|
1780
|
+
:where(& > :not(:last-child)) {
|
|
1781
|
+
--tw-space-y-reverse: 0;
|
|
1782
|
+
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
1783
|
+
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
.space-y-4 {
|
|
1787
|
+
:where(& > :not(:last-child)) {
|
|
1788
|
+
--tw-space-y-reverse: 0;
|
|
1789
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1790
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
.space-y-6 {
|
|
1794
|
+
:where(& > :not(:last-child)) {
|
|
1795
|
+
--tw-space-y-reverse: 0;
|
|
1796
|
+
margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
|
|
1797
|
+
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
1798
|
+
}
|
|
1799
|
+
}
|
|
1800
|
+
.-space-x-px {
|
|
1801
|
+
:where(& > :not(:last-child)) {
|
|
1802
|
+
--tw-space-x-reverse: 0;
|
|
1803
|
+
margin-inline-start: calc(-1px * var(--tw-space-x-reverse));
|
|
1804
|
+
margin-inline-end: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
.space-x-1 {
|
|
1808
|
+
:where(& > :not(:last-child)) {
|
|
1809
|
+
--tw-space-x-reverse: 0;
|
|
1810
|
+
margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
|
|
1811
|
+
margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
.space-x-2 {
|
|
1815
|
+
:where(& > :not(:last-child)) {
|
|
1816
|
+
--tw-space-x-reverse: 0;
|
|
1817
|
+
margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
|
|
1818
|
+
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
.space-x-4 {
|
|
1822
|
+
:where(& > :not(:last-child)) {
|
|
1823
|
+
--tw-space-x-reverse: 0;
|
|
1824
|
+
margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
|
|
1825
|
+
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
.space-x-6 {
|
|
1829
|
+
:where(& > :not(:last-child)) {
|
|
1830
|
+
--tw-space-x-reverse: 0;
|
|
1831
|
+
margin-inline-start: calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));
|
|
1832
|
+
margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
.divide-y {
|
|
1836
|
+
:where(& > :not(:last-child)) {
|
|
1837
|
+
--tw-divide-y-reverse: 0;
|
|
1838
|
+
border-bottom-style: var(--tw-border-style);
|
|
1839
|
+
border-top-style: var(--tw-border-style);
|
|
1840
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1841
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
.divide-gray-200 {
|
|
1845
|
+
:where(& > :not(:last-child)) {
|
|
1846
|
+
border-color: var(--color-gray-200);
|
|
1847
|
+
}
|
|
1848
|
+
}
|
|
1849
|
+
.overflow-hidden {
|
|
1850
|
+
overflow: hidden;
|
|
1851
|
+
}
|
|
1852
|
+
.datatable-container {
|
|
1853
|
+
.datatable-wrapper & thead tr.search-filtering-row th {
|
|
1854
|
+
padding-top: 0;
|
|
1855
|
+
}
|
|
1856
|
+
.datatable-wrapper & {
|
|
1857
|
+
overflow-x: auto;
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1860
|
+
.overflow-x-auto {
|
|
1861
|
+
overflow-x: auto;
|
|
1862
|
+
}
|
|
1863
|
+
.overflow-x-hidden {
|
|
1864
|
+
overflow-x: hidden;
|
|
1865
|
+
}
|
|
1866
|
+
.overflow-y-auto {
|
|
1867
|
+
overflow-y: auto;
|
|
1868
|
+
}
|
|
1869
|
+
.rounded {
|
|
1870
|
+
border-radius: 0.25rem;
|
|
1871
|
+
}
|
|
1872
|
+
.rounded-full {
|
|
1873
|
+
border-radius: calc(infinity * 1px);
|
|
1874
|
+
}
|
|
1875
|
+
.rounded-lg {
|
|
1876
|
+
border-radius: var(--radius-lg);
|
|
1877
|
+
}
|
|
1878
|
+
.rounded-sm {
|
|
1879
|
+
border-radius: var(--radius-sm);
|
|
1880
|
+
}
|
|
1881
|
+
.rounded-s-lg {
|
|
1882
|
+
border-start-start-radius: var(--radius-lg);
|
|
1883
|
+
border-end-start-radius: var(--radius-lg);
|
|
1884
|
+
}
|
|
1885
|
+
.rounded-e-lg {
|
|
1886
|
+
border-start-end-radius: var(--radius-lg);
|
|
1887
|
+
border-end-end-radius: var(--radius-lg);
|
|
1888
|
+
}
|
|
1889
|
+
.rounded-t {
|
|
1890
|
+
border-top-left-radius: 0.25rem;
|
|
1891
|
+
border-top-right-radius: 0.25rem;
|
|
1892
|
+
}
|
|
1893
|
+
.rounded-l-lg {
|
|
1894
|
+
border-top-left-radius: var(--radius-lg);
|
|
1895
|
+
border-bottom-left-radius: var(--radius-lg);
|
|
1896
|
+
}
|
|
1897
|
+
.rounded-r-lg {
|
|
1898
|
+
border-top-right-radius: var(--radius-lg);
|
|
1899
|
+
border-bottom-right-radius: var(--radius-lg);
|
|
1900
|
+
}
|
|
1901
|
+
.rounded-b {
|
|
1902
|
+
border-bottom-right-radius: 0.25rem;
|
|
1903
|
+
border-bottom-left-radius: 0.25rem;
|
|
1904
|
+
}
|
|
1905
|
+
.border {
|
|
1906
|
+
border-style: var(--tw-border-style);
|
|
1907
|
+
border-width: 1px;
|
|
1908
|
+
}
|
|
1909
|
+
.border-0 {
|
|
1910
|
+
border-style: var(--tw-border-style);
|
|
1911
|
+
border-width: 0px;
|
|
1912
|
+
}
|
|
1913
|
+
.border-e-0 {
|
|
1914
|
+
border-inline-end-style: var(--tw-border-style);
|
|
1915
|
+
border-inline-end-width: 0px;
|
|
1916
|
+
}
|
|
1917
|
+
.border-t {
|
|
1918
|
+
border-top-style: var(--tw-border-style);
|
|
1919
|
+
border-top-width: 1px;
|
|
1920
|
+
}
|
|
1921
|
+
.border-b {
|
|
1922
|
+
border-bottom-style: var(--tw-border-style);
|
|
1923
|
+
border-bottom-width: 1px;
|
|
1924
|
+
}
|
|
1925
|
+
.dark {
|
|
1926
|
+
& .apexcharts-canvas .apexcharts-tooltip {
|
|
1927
|
+
background-color: var(--color-gray-700) !important;
|
|
1928
|
+
color: var(--color-gray-400) !important;
|
|
1929
|
+
border-color: transparent !important;
|
|
1930
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
|
|
1931
|
+
}
|
|
1932
|
+
& .apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
|
|
1933
|
+
background-color: var(--color-gray-600) !important;
|
|
1934
|
+
border-color: var(--color-gray-500) !important;
|
|
1935
|
+
color: var(--color-gray-500) !important;
|
|
1936
|
+
}
|
|
1937
|
+
& .apexcharts-canvas .apexcharts-xaxistooltip {
|
|
1938
|
+
color: var(--color-gray-400) !important;
|
|
1939
|
+
background-color: var(--color-gray-700) !important;
|
|
1940
|
+
}
|
|
1941
|
+
& .apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-text-y-label {
|
|
1942
|
+
color: var(--color-gray-400) !important;
|
|
1943
|
+
}
|
|
1944
|
+
& .apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-text-y-value {
|
|
1945
|
+
color: white !important;
|
|
1946
|
+
}
|
|
1947
|
+
& .apexcharts-canvas .apexcharts-xaxistooltip:after {
|
|
1948
|
+
border-bottom-color: var(--color-gray-700) !important;
|
|
1949
|
+
}
|
|
1950
|
+
& .apexcharts-canvas .apexcharts-xaxistooltip:before {
|
|
1951
|
+
border-bottom-color: var(--color-gray-700) !important;
|
|
1952
|
+
}
|
|
1953
|
+
& .apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active {
|
|
1954
|
+
background-color: var(--color-gray-700) !important;
|
|
1955
|
+
color: var(--color-gray-400) !important;
|
|
1956
|
+
}
|
|
1957
|
+
& .apexcharts-canvas .apexcharts-legend-text {
|
|
1958
|
+
color: var(--color-gray-400) !important;
|
|
1959
|
+
}
|
|
1960
|
+
& .apexcharts-canvas .apexcharts-legend-text:not(.apexcharts-inactive-legend):hover {
|
|
1961
|
+
color: white !important;
|
|
1962
|
+
}
|
|
1963
|
+
& .apexcharts-canvas .apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-value {
|
|
1964
|
+
fill: white !important;
|
|
1965
|
+
}
|
|
1966
|
+
& .apexcharts-canvas .apexcharts-datalabels-group .apexcharts-text.apexcharts-datalabel-label {
|
|
1967
|
+
fill: var(--color-gray-400) !important;
|
|
1968
|
+
}
|
|
1969
|
+
& .apexcharts-gridline {
|
|
1970
|
+
stroke: var(--color-gray-700) !important;
|
|
1971
|
+
}
|
|
1972
|
+
& .apexcharts-xcrosshairs {
|
|
1973
|
+
stroke: var(--color-gray-700) !important;
|
|
1974
|
+
}
|
|
1975
|
+
& .apexcharts-ycrosshairs {
|
|
1976
|
+
stroke: var(--color-gray-700) !important;
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
.dark {
|
|
1980
|
+
& .datatable-wrapper .datatable-search .datatable-input {
|
|
1981
|
+
color: white;
|
|
1982
|
+
background-color: var(--color-gray-800);
|
|
1983
|
+
border: 1px solid var(--color-gray-700);
|
|
1984
|
+
}
|
|
1985
|
+
& .datatable-wrapper .datatable-input {
|
|
1986
|
+
color: white;
|
|
1987
|
+
background-color: var(--color-gray-800);
|
|
1988
|
+
border: 1px solid var(--color-gray-700);
|
|
1989
|
+
}
|
|
1990
|
+
& .datatable-wrapper thead th .datatable-input {
|
|
1991
|
+
background-color: var(--color-gray-700);
|
|
1992
|
+
border-color: var(--color-gray-600);
|
|
1993
|
+
color: white;
|
|
1994
|
+
}
|
|
1995
|
+
& .datatable-wrapper .datatable-top .datatable-dropdown {
|
|
1996
|
+
color: var(--color-gray-400);
|
|
1997
|
+
}
|
|
1998
|
+
& .datatable-wrapper .datatable-top .datatable-dropdown .datatable-selector {
|
|
1999
|
+
background-color: var(--color-gray-800);
|
|
2000
|
+
border: 1px solid var(--color-gray-700);
|
|
2001
|
+
color: white;
|
|
2002
|
+
}
|
|
2003
|
+
& .datatable-wrapper .datatable-table {
|
|
2004
|
+
color: var(--color-gray-400);
|
|
2005
|
+
}
|
|
2006
|
+
& .datatable-wrapper .datatable-table thead {
|
|
2007
|
+
color: var(--color-gray-400);
|
|
2008
|
+
background-color: var(--color-gray-800);
|
|
2009
|
+
}
|
|
2010
|
+
& .datatable-wrapper .datatable-table thead th .datatable-sorter:hover {
|
|
2011
|
+
color: white;
|
|
2012
|
+
}
|
|
2013
|
+
& .datatable-wrapper .datatable-table thead th.datatable-ascending .datatable-sorter {
|
|
2014
|
+
color: white;
|
|
2015
|
+
}
|
|
2016
|
+
& .datatable-wrapper .datatable-table thead th.datatable-descending .datatable-sorter {
|
|
2017
|
+
color: white;
|
|
2018
|
+
}
|
|
2019
|
+
& .datatable-wrapper .datatable-table tbody tr.selected {
|
|
2020
|
+
background-color: var(--color-gray-700);
|
|
2021
|
+
}
|
|
2022
|
+
& .datatable-wrapper .datatable-table tbody tr {
|
|
2023
|
+
border-bottom: 1px solid var(--color-gray-700);
|
|
2024
|
+
}
|
|
2025
|
+
& .datatable-wrapper .datatable-bottom .datatable-info {
|
|
2026
|
+
color: var(--color-gray-400);
|
|
2027
|
+
}
|
|
2028
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item-link {
|
|
2029
|
+
color: var(--color-gray-400);
|
|
2030
|
+
border-color: var(--color-gray-700);
|
|
2031
|
+
}
|
|
2032
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
2033
|
+
color: transparent;
|
|
2034
|
+
}
|
|
2035
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link {
|
|
2036
|
+
color: transparent;
|
|
2037
|
+
}
|
|
2038
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link::after {
|
|
2039
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
2040
|
+
}
|
|
2041
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link:hover::after {
|
|
2042
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 8-4 4 4 4'/%3e %3c/svg%3e");
|
|
2043
|
+
}
|
|
2044
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link::after {
|
|
2045
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
2046
|
+
}
|
|
2047
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:last-of-type .datatable-pagination-list-item-link:hover::after {
|
|
2048
|
+
content: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 16 4-4-4-4'/%3e %3c/svg%3e");
|
|
2049
|
+
}
|
|
2050
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item:first-of-type .datatable-pagination-list-item-link {
|
|
2051
|
+
border-left: 1px solid var(--color-gray-700);
|
|
2052
|
+
}
|
|
2053
|
+
& .datatable-wrapper .datatable-bottom .datatable-pagination .datatable-pagination-list-item-link:hover {
|
|
2054
|
+
background-color: var(--color-gray-700);
|
|
2055
|
+
color: white;
|
|
2056
|
+
}
|
|
2057
|
+
}
|
|
2058
|
+
.border-blue-300 {
|
|
2059
|
+
border-color: var(--color-blue-300);
|
|
2060
|
+
}
|
|
2061
|
+
.border-blue-600 {
|
|
2062
|
+
border-color: var(--color-blue-600);
|
|
2063
|
+
}
|
|
2064
|
+
.border-blue-700 {
|
|
2065
|
+
border-color: var(--color-blue-700);
|
|
2066
|
+
}
|
|
2067
|
+
.border-gray-100 {
|
|
2068
|
+
border-color: var(--color-gray-100);
|
|
2069
|
+
}
|
|
2070
|
+
.border-gray-200 {
|
|
2071
|
+
border-color: var(--color-gray-200);
|
|
2072
|
+
}
|
|
2073
|
+
.border-gray-300 {
|
|
2074
|
+
border-color: var(--color-gray-300);
|
|
2075
|
+
}
|
|
2076
|
+
.border-green-700 {
|
|
2077
|
+
border-color: var(--color-green-700);
|
|
2078
|
+
}
|
|
2079
|
+
.border-red-500 {
|
|
2080
|
+
border-color: var(--color-red-500);
|
|
2081
|
+
}
|
|
2082
|
+
.apexcharts-active {
|
|
2083
|
+
.apexcharts-canvas .apexcharts-tooltip-series-group& .apexcharts-tooltip-y-group {
|
|
2084
|
+
padding: 0 !important;
|
|
2085
|
+
}
|
|
2086
|
+
.apexcharts-canvas .apexcharts-tooltip-series-group& {
|
|
2087
|
+
padding-left: 0.75rem !important;
|
|
2088
|
+
padding-right: 0.75rem !important;
|
|
2089
|
+
padding-bottom: 0.75rem !important;
|
|
2090
|
+
background-color: white !important;
|
|
2091
|
+
color: var(--color-gray-500) !important;
|
|
2092
|
+
}
|
|
2093
|
+
.dark .apexcharts-canvas .apexcharts-tooltip-series-group& {
|
|
2094
|
+
background-color: var(--color-gray-700) !important;
|
|
2095
|
+
color: var(--color-gray-400) !important;
|
|
2096
|
+
}
|
|
2097
|
+
.apexcharts-canvas .apexcharts-tooltip-series-group&:first-of-type {
|
|
2098
|
+
padding-top: 0.75rem !important;
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
.selected {
|
|
2102
|
+
.datatable-wrapper .datatable-table tbody tr& {
|
|
2103
|
+
background-color: var(--color-gray-100);
|
|
2104
|
+
}
|
|
2105
|
+
.dark .datatable-wrapper .datatable-table tbody tr& {
|
|
2106
|
+
background-color: var(--color-gray-700);
|
|
2107
|
+
}
|
|
2108
|
+
}
|
|
2109
|
+
.selectedCell {
|
|
2110
|
+
background-color: var(--color-gray-50);
|
|
2111
|
+
.dark & {
|
|
2112
|
+
background-color: var(--color-gray-700);
|
|
2113
|
+
}
|
|
2114
|
+
}
|
|
2115
|
+
.bg-blue-50 {
|
|
2116
|
+
background-color: var(--color-blue-50);
|
|
2117
|
+
}
|
|
2118
|
+
.bg-blue-100 {
|
|
2119
|
+
background-color: var(--color-blue-100);
|
|
2120
|
+
}
|
|
2121
|
+
.bg-blue-700 {
|
|
2122
|
+
background-color: var(--color-blue-700);
|
|
2123
|
+
}
|
|
2124
|
+
.bg-gray-50 {
|
|
2125
|
+
background-color: var(--color-gray-50);
|
|
2126
|
+
}
|
|
2127
|
+
.bg-gray-100 {
|
|
2128
|
+
background-color: var(--color-gray-100);
|
|
2129
|
+
}
|
|
2130
|
+
.bg-gray-200 {
|
|
2131
|
+
background-color: var(--color-gray-200);
|
|
2132
|
+
}
|
|
2133
|
+
.bg-gray-800 {
|
|
2134
|
+
background-color: var(--color-gray-800);
|
|
2135
|
+
}
|
|
2136
|
+
.bg-gray-900\/50 {
|
|
2137
|
+
background-color: color-mix(in srgb, #111827 50%, transparent);
|
|
2138
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2139
|
+
background-color: color-mix(in oklab, var(--color-gray-900) 50%, transparent);
|
|
2140
|
+
}
|
|
2141
|
+
}
|
|
2142
|
+
.bg-green-100 {
|
|
2143
|
+
background-color: var(--color-green-100);
|
|
2144
|
+
}
|
|
2145
|
+
.bg-green-700 {
|
|
2146
|
+
background-color: var(--color-green-700);
|
|
2147
|
+
}
|
|
2148
|
+
.bg-orange-100 {
|
|
2149
|
+
background-color: var(--color-orange-100);
|
|
2150
|
+
}
|
|
2151
|
+
.bg-purple-700 {
|
|
2152
|
+
background-color: var(--color-purple-700);
|
|
2153
|
+
}
|
|
2154
|
+
.bg-red-50 {
|
|
2155
|
+
background-color: var(--color-red-50);
|
|
2156
|
+
}
|
|
2157
|
+
.bg-red-100 {
|
|
2158
|
+
background-color: var(--color-red-100);
|
|
2159
|
+
}
|
|
2160
|
+
.bg-red-700 {
|
|
2161
|
+
background-color: var(--color-red-700);
|
|
2162
|
+
}
|
|
2163
|
+
.bg-transparent {
|
|
2164
|
+
background-color: transparent;
|
|
2165
|
+
}
|
|
2166
|
+
.bg-white {
|
|
2167
|
+
background-color: var(--color-white);
|
|
2168
|
+
}
|
|
2169
|
+
.bg-white\/50 {
|
|
2170
|
+
background-color: color-mix(in srgb, #ffffff 50%, transparent);
|
|
2171
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2172
|
+
background-color: color-mix(in oklab, var(--color-white) 50%, transparent);
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
.bg-yellow-400 {
|
|
2176
|
+
background-color: var(--color-yellow-400);
|
|
2177
|
+
}
|
|
2178
|
+
.dark {
|
|
2179
|
+
& .selectedCell {
|
|
2180
|
+
background-color: var(--color-gray-700);
|
|
2181
|
+
}
|
|
2182
|
+
}
|
|
2183
|
+
.apexcharts-datalabels-group {
|
|
2184
|
+
& .apexcharts-text.apexcharts-datalabel-value {
|
|
2185
|
+
fill: var(--color-gray-900) !important;
|
|
2186
|
+
font-size: 1.875rem,[object Object] !important;
|
|
2187
|
+
font-weight: 700 !important;
|
|
2188
|
+
}
|
|
2189
|
+
.dark .apexcharts-canvas & .apexcharts-text.apexcharts-datalabel-value {
|
|
2190
|
+
fill: white !important;
|
|
2191
|
+
}
|
|
2192
|
+
.apexcharts-canvas & .apexcharts-text.apexcharts-datalabel-label {
|
|
2193
|
+
fill: var(--color-gray-500) !important;
|
|
2194
|
+
font-size: 1rem,[object Object] !important;
|
|
2195
|
+
font-weight: 400 !important;
|
|
2196
|
+
}
|
|
2197
|
+
.dark .apexcharts-canvas & .apexcharts-text.apexcharts-datalabel-label {
|
|
2198
|
+
fill: var(--color-gray-400) !important;
|
|
2199
|
+
}
|
|
2200
|
+
}
|
|
2201
|
+
.apexcharts-datalabel-label {
|
|
2202
|
+
.apexcharts-canvas .apexcharts-datalabels-group .apexcharts-text& {
|
|
2203
|
+
fill: var(--color-gray-500) !important;
|
|
2204
|
+
font-size: 1rem,[object Object] !important;
|
|
2205
|
+
font-weight: 400 !important;
|
|
2206
|
+
}
|
|
2207
|
+
.dark .apexcharts-canvas .apexcharts-datalabels-group .apexcharts-text& {
|
|
2208
|
+
fill: var(--color-gray-400) !important;
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
.apexcharts-datalabel-value {
|
|
2212
|
+
.apexcharts-datalabels-group .apexcharts-text& {
|
|
2213
|
+
fill: var(--color-gray-900) !important;
|
|
2214
|
+
font-size: 1.875rem,[object Object] !important;
|
|
2215
|
+
font-weight: 700 !important;
|
|
2216
|
+
}
|
|
2217
|
+
.dark .apexcharts-canvas .apexcharts-datalabels-group .apexcharts-text& {
|
|
2218
|
+
fill: white !important;
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2221
|
+
.fill-blue-600 {
|
|
2222
|
+
fill: var(--color-blue-600);
|
|
2223
|
+
}
|
|
2224
|
+
.apexcharts-ycrosshairs {
|
|
2225
|
+
stroke: var(--color-gray-200) !important;
|
|
2226
|
+
.dark & {
|
|
2227
|
+
stroke: var(--color-gray-700) !important;
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
.object-cover {
|
|
2231
|
+
object-fit: cover;
|
|
2232
|
+
}
|
|
2233
|
+
.apexcharts-legend {
|
|
2234
|
+
.apexcharts-canvas & {
|
|
2235
|
+
padding: 0 !important;
|
|
2236
|
+
}
|
|
2237
|
+
}
|
|
2238
|
+
.apexcharts-tooltip-y-group {
|
|
2239
|
+
.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active & {
|
|
2240
|
+
padding: 0 !important;
|
|
2241
|
+
}
|
|
2242
|
+
}
|
|
2243
|
+
.p-1 {
|
|
2244
|
+
padding: calc(var(--spacing) * 1);
|
|
2245
|
+
}
|
|
2246
|
+
.p-1\.5 {
|
|
2247
|
+
padding: calc(var(--spacing) * 1.5);
|
|
2248
|
+
}
|
|
2249
|
+
.p-2 {
|
|
2250
|
+
padding: calc(var(--spacing) * 2);
|
|
2251
|
+
}
|
|
2252
|
+
.p-2\.5 {
|
|
2253
|
+
padding: calc(var(--spacing) * 2.5);
|
|
2254
|
+
}
|
|
2255
|
+
.p-4 {
|
|
2256
|
+
padding: calc(var(--spacing) * 4);
|
|
2257
|
+
}
|
|
2258
|
+
.p-6 {
|
|
2259
|
+
padding: calc(var(--spacing) * 6);
|
|
2260
|
+
}
|
|
2261
|
+
.p-8 {
|
|
2262
|
+
padding: calc(var(--spacing) * 8);
|
|
2263
|
+
}
|
|
2264
|
+
.px-2 {
|
|
2265
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
2266
|
+
}
|
|
2267
|
+
.px-3 {
|
|
2268
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
2269
|
+
}
|
|
2270
|
+
.px-4 {
|
|
2271
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
2272
|
+
}
|
|
2273
|
+
.px-5 {
|
|
2274
|
+
padding-inline: calc(var(--spacing) * 5);
|
|
2275
|
+
}
|
|
2276
|
+
.px-6 {
|
|
2277
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
2278
|
+
}
|
|
2279
|
+
.py-2 {
|
|
2280
|
+
padding-block: calc(var(--spacing) * 2);
|
|
2281
|
+
}
|
|
2282
|
+
.py-2\.5 {
|
|
2283
|
+
padding-block: calc(var(--spacing) * 2.5);
|
|
2284
|
+
}
|
|
2285
|
+
.py-3 {
|
|
2286
|
+
padding-block: calc(var(--spacing) * 3);
|
|
2287
|
+
}
|
|
2288
|
+
.py-3\.5 {
|
|
2289
|
+
padding-block: calc(var(--spacing) * 3.5);
|
|
2290
|
+
}
|
|
2291
|
+
.py-4 {
|
|
2292
|
+
padding-block: calc(var(--spacing) * 4);
|
|
2293
|
+
}
|
|
2294
|
+
.py-6 {
|
|
2295
|
+
padding-block: calc(var(--spacing) * 6);
|
|
2296
|
+
}
|
|
2297
|
+
.pt-2 {
|
|
2298
|
+
padding-top: calc(var(--spacing) * 2);
|
|
2299
|
+
}
|
|
2300
|
+
.search-filtering-row {
|
|
2301
|
+
.datatable-wrapper .datatable-container thead tr& th {
|
|
2302
|
+
padding-top: 0;
|
|
2303
|
+
}
|
|
2304
|
+
}
|
|
2305
|
+
.apexcharts-legend-text {
|
|
2306
|
+
.apexcharts-canvas & {
|
|
2307
|
+
font-size: 0.75rem !important;
|
|
2308
|
+
font-weight: 500 !important;
|
|
2309
|
+
padding-left: 1.25rem !important;
|
|
2310
|
+
color: var(--color-gray-500) !important;
|
|
2311
|
+
}
|
|
2312
|
+
:is([dir=rtl]) .apexcharts-canvas & {
|
|
2313
|
+
padding-right: 0.5rem !important;
|
|
2314
|
+
}
|
|
2315
|
+
.apexcharts-canvas &:not(.apexcharts-inactive-legend):hover {
|
|
2316
|
+
color: var(--color-gray-900) !important;
|
|
2317
|
+
}
|
|
2318
|
+
.dark .apexcharts-canvas & {
|
|
2319
|
+
color: var(--color-gray-400) !important;
|
|
2320
|
+
}
|
|
2321
|
+
.dark .apexcharts-canvas &:not(.apexcharts-inactive-legend):hover {
|
|
2322
|
+
color: white !important;
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
.datatable-empty {
|
|
2326
|
+
.datatable-wrapper .datatable-table & {
|
|
2327
|
+
text-align: center;
|
|
2328
|
+
}
|
|
2329
|
+
}
|
|
2330
|
+
.text-center {
|
|
2331
|
+
text-align: center;
|
|
2332
|
+
}
|
|
2333
|
+
.text-left {
|
|
2334
|
+
text-align: left;
|
|
2335
|
+
}
|
|
2336
|
+
.text-right {
|
|
2337
|
+
text-align: right;
|
|
2338
|
+
}
|
|
2339
|
+
.text-2xl {
|
|
2340
|
+
font-size: var(--text-2xl);
|
|
2341
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
2342
|
+
}
|
|
2343
|
+
.text-3xl {
|
|
2344
|
+
font-size: var(--text-3xl);
|
|
2345
|
+
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
2346
|
+
}
|
|
2347
|
+
.text-base {
|
|
2348
|
+
font-size: var(--text-base);
|
|
2349
|
+
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
2350
|
+
}
|
|
2351
|
+
.text-lg {
|
|
2352
|
+
font-size: var(--text-lg);
|
|
2353
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
2354
|
+
}
|
|
2355
|
+
.text-sm {
|
|
2356
|
+
font-size: var(--text-sm);
|
|
2357
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2358
|
+
}
|
|
2359
|
+
.text-xl {
|
|
2360
|
+
font-size: var(--text-xl);
|
|
2361
|
+
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
2362
|
+
}
|
|
2363
|
+
.text-xs {
|
|
2364
|
+
font-size: var(--text-xs);
|
|
2365
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
2366
|
+
}
|
|
2367
|
+
.apexcharts-datalabels {
|
|
2368
|
+
.apexcharts-canvas & .apexcharts-text.apexcharts-pie-label {
|
|
2369
|
+
font-size: 0.75rem,[object Object] !important;
|
|
2370
|
+
font-weight: 600 !important;
|
|
2371
|
+
text-shadow: none !important;
|
|
2372
|
+
filter: none !important;
|
|
2373
|
+
}
|
|
2374
|
+
}
|
|
2375
|
+
.apexcharts-pie-label {
|
|
2376
|
+
.apexcharts-canvas .apexcharts-datalabels .apexcharts-text& {
|
|
2377
|
+
font-size: 0.75rem,[object Object] !important;
|
|
2378
|
+
font-weight: 600 !important;
|
|
2379
|
+
text-shadow: none !important;
|
|
2380
|
+
filter: none !important;
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2383
|
+
.apexcharts-xaxistooltip-text {
|
|
2384
|
+
.apexcharts-canvas & {
|
|
2385
|
+
font-weight: 400 !important;
|
|
2386
|
+
font-size: 0.875rem !important;
|
|
2387
|
+
}
|
|
2388
|
+
}
|
|
2389
|
+
.apexcharts-tooltip-text-y-label {
|
|
2390
|
+
.apexcharts-canvas .apexcharts-tooltip & {
|
|
2391
|
+
color: var(--color-gray-500) !important;
|
|
2392
|
+
font-size: 0.875rem !important;
|
|
2393
|
+
}
|
|
2394
|
+
.dark .apexcharts-canvas .apexcharts-tooltip & {
|
|
2395
|
+
color: var(--color-gray-400) !important;
|
|
2396
|
+
}
|
|
2397
|
+
}
|
|
2398
|
+
.apexcharts-tooltip-text-y-value {
|
|
2399
|
+
.apexcharts-canvas .apexcharts-tooltip & {
|
|
2400
|
+
color: var(--color-gray-900);
|
|
2401
|
+
font-size: 0.875rem !important;
|
|
2402
|
+
}
|
|
2403
|
+
.dark .apexcharts-canvas .apexcharts-tooltip & {
|
|
2404
|
+
color: white !important;
|
|
2405
|
+
}
|
|
2406
|
+
}
|
|
2407
|
+
.datatable-info {
|
|
2408
|
+
.datatable-wrapper .datatable-bottom & {
|
|
2409
|
+
color: var(--color-gray-500);
|
|
2410
|
+
font-size: 0.875rem;
|
|
2411
|
+
}
|
|
2412
|
+
.dark .datatable-wrapper .datatable-bottom & {
|
|
2413
|
+
color: var(--color-gray-400);
|
|
2414
|
+
}
|
|
2415
|
+
}
|
|
2416
|
+
.leading-6 {
|
|
2417
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
2418
|
+
line-height: calc(var(--spacing) * 6);
|
|
2419
|
+
}
|
|
2420
|
+
.leading-9 {
|
|
2421
|
+
--tw-leading: calc(var(--spacing) * 9);
|
|
2422
|
+
line-height: calc(var(--spacing) * 9);
|
|
2423
|
+
}
|
|
2424
|
+
.leading-relaxed {
|
|
2425
|
+
--tw-leading: var(--leading-relaxed);
|
|
2426
|
+
line-height: var(--leading-relaxed);
|
|
2427
|
+
}
|
|
2428
|
+
.leading-tight {
|
|
2429
|
+
--tw-leading: var(--leading-tight);
|
|
2430
|
+
line-height: var(--leading-tight);
|
|
2431
|
+
}
|
|
2432
|
+
.font-bold {
|
|
2433
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
2434
|
+
font-weight: var(--font-weight-bold);
|
|
2435
|
+
}
|
|
2436
|
+
.font-light {
|
|
2437
|
+
--tw-font-weight: var(--font-weight-light);
|
|
2438
|
+
font-weight: var(--font-weight-light);
|
|
2439
|
+
}
|
|
2440
|
+
.font-medium {
|
|
2441
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
2442
|
+
font-weight: var(--font-weight-medium);
|
|
2443
|
+
}
|
|
2444
|
+
.font-normal {
|
|
2445
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
2446
|
+
font-weight: var(--font-weight-normal);
|
|
2447
|
+
}
|
|
2448
|
+
.font-semibold {
|
|
2449
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
2450
|
+
font-weight: var(--font-weight-semibold);
|
|
2451
|
+
}
|
|
2452
|
+
.tracking-tight {
|
|
2453
|
+
--tw-tracking: var(--tracking-tight);
|
|
2454
|
+
letter-spacing: var(--tracking-tight);
|
|
2455
|
+
}
|
|
2456
|
+
.whitespace-nowrap {
|
|
2457
|
+
white-space: nowrap;
|
|
2458
|
+
}
|
|
2459
|
+
.datatable-sorter {
|
|
2460
|
+
.datatable-wrapper .datatable-table thead th & {
|
|
2461
|
+
text-transform: uppercase;
|
|
2462
|
+
}
|
|
2463
|
+
.datatable-wrapper .datatable-table thead th &:hover {
|
|
2464
|
+
color: var(--color-gray-900);
|
|
2465
|
+
}
|
|
2466
|
+
.datatable-wrapper .datatable-table thead th.datatable-ascending & {
|
|
2467
|
+
color: var(--color-gray-900);
|
|
2468
|
+
}
|
|
2469
|
+
.datatable-wrapper .datatable-table thead th.datatable-descending & {
|
|
2470
|
+
color: var(--color-gray-900);
|
|
2471
|
+
}
|
|
2472
|
+
.dark .datatable-wrapper .datatable-table thead th &:hover {
|
|
2473
|
+
color: white;
|
|
2474
|
+
}
|
|
2475
|
+
.dark .datatable-wrapper .datatable-table thead th.datatable-ascending & {
|
|
2476
|
+
color: white;
|
|
2477
|
+
}
|
|
2478
|
+
.dark .datatable-wrapper .datatable-table thead th.datatable-descending & {
|
|
2479
|
+
color: white;
|
|
2480
|
+
}
|
|
2481
|
+
}
|
|
2482
|
+
.datatable-ascending {
|
|
2483
|
+
.datatable-wrapper .datatable-table thead th& .datatable-sorter {
|
|
2484
|
+
color: var(--color-gray-900);
|
|
2485
|
+
}
|
|
2486
|
+
.dark .datatable-wrapper .datatable-table thead th& .datatable-sorter {
|
|
2487
|
+
color: white;
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
.datatable-descending {
|
|
2491
|
+
.datatable-wrapper .datatable-table thead th& .datatable-sorter {
|
|
2492
|
+
color: var(--color-gray-900);
|
|
2493
|
+
}
|
|
2494
|
+
.dark .datatable-wrapper .datatable-table thead th& .datatable-sorter {
|
|
2495
|
+
color: white;
|
|
2496
|
+
}
|
|
2497
|
+
}
|
|
2498
|
+
.text-blue-500 {
|
|
2499
|
+
color: var(--color-blue-500);
|
|
2500
|
+
}
|
|
2501
|
+
.text-blue-600 {
|
|
2502
|
+
color: var(--color-blue-600);
|
|
2503
|
+
}
|
|
2504
|
+
.text-blue-700 {
|
|
2505
|
+
color: var(--color-blue-700);
|
|
2506
|
+
}
|
|
2507
|
+
.text-gray-200 {
|
|
2508
|
+
color: var(--color-gray-200);
|
|
2509
|
+
}
|
|
2510
|
+
.text-gray-400 {
|
|
2511
|
+
color: var(--color-gray-400);
|
|
2512
|
+
}
|
|
2513
|
+
.text-gray-500 {
|
|
2514
|
+
color: var(--color-gray-500);
|
|
2515
|
+
}
|
|
2516
|
+
.text-gray-700 {
|
|
2517
|
+
color: var(--color-gray-700);
|
|
2518
|
+
}
|
|
2519
|
+
.text-gray-800 {
|
|
2520
|
+
color: var(--color-gray-800);
|
|
2521
|
+
}
|
|
2522
|
+
.text-gray-900 {
|
|
2523
|
+
color: var(--color-gray-900);
|
|
2524
|
+
}
|
|
2525
|
+
.text-green-500 {
|
|
2526
|
+
color: var(--color-green-500);
|
|
2527
|
+
}
|
|
2528
|
+
.text-green-700 {
|
|
2529
|
+
color: var(--color-green-700);
|
|
2530
|
+
}
|
|
2531
|
+
.text-orange-500 {
|
|
2532
|
+
color: var(--color-orange-500);
|
|
2533
|
+
}
|
|
2534
|
+
.text-red-500 {
|
|
2535
|
+
color: var(--color-red-500);
|
|
2536
|
+
}
|
|
2537
|
+
.text-red-600 {
|
|
2538
|
+
color: var(--color-red-600);
|
|
2539
|
+
}
|
|
2540
|
+
.text-red-700 {
|
|
2541
|
+
color: var(--color-red-700);
|
|
2542
|
+
}
|
|
2543
|
+
.text-red-900 {
|
|
2544
|
+
color: var(--color-red-900);
|
|
2545
|
+
}
|
|
2546
|
+
.text-white {
|
|
2547
|
+
color: var(--color-white);
|
|
2548
|
+
}
|
|
2549
|
+
.uppercase {
|
|
2550
|
+
text-transform: uppercase;
|
|
2551
|
+
}
|
|
2552
|
+
.antialiased {
|
|
2553
|
+
-webkit-font-smoothing: antialiased;
|
|
2554
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2555
|
+
}
|
|
2556
|
+
.placeholder-red-700 {
|
|
2557
|
+
&::placeholder {
|
|
2558
|
+
color: var(--color-red-700);
|
|
2559
|
+
}
|
|
2560
|
+
}
|
|
2561
|
+
.opacity-0 {
|
|
2562
|
+
opacity: 0%;
|
|
2563
|
+
}
|
|
2564
|
+
.opacity-100 {
|
|
2565
|
+
opacity: 100%;
|
|
2566
|
+
}
|
|
2567
|
+
.shadow {
|
|
2568
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2569
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2570
|
+
}
|
|
2571
|
+
.shadow-lg {
|
|
2572
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2573
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2574
|
+
}
|
|
2575
|
+
.shadow-md {
|
|
2576
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2577
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2578
|
+
}
|
|
2579
|
+
.shadow-sm {
|
|
2580
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2581
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2582
|
+
}
|
|
2583
|
+
.outline {
|
|
2584
|
+
outline-style: var(--tw-outline-style);
|
|
2585
|
+
outline-width: 1px;
|
|
2586
|
+
}
|
|
2587
|
+
.blur {
|
|
2588
|
+
--tw-blur: blur(8px);
|
|
2589
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2590
|
+
}
|
|
2591
|
+
.filter {
|
|
2592
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2593
|
+
}
|
|
2594
|
+
.transition {
|
|
2595
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
2596
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2597
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2598
|
+
}
|
|
2599
|
+
.transition-opacity {
|
|
2600
|
+
transition-property: opacity;
|
|
2601
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2602
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2603
|
+
}
|
|
2604
|
+
.transition-transform {
|
|
2605
|
+
transition-property: transform, translate, scale, rotate;
|
|
2606
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2607
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2608
|
+
}
|
|
2609
|
+
.ease-out {
|
|
2610
|
+
--tw-ease: var(--ease-out);
|
|
2611
|
+
transition-timing-function: var(--ease-out);
|
|
2612
|
+
}
|
|
2613
|
+
.hover\:border-gray-300 {
|
|
2614
|
+
&:hover {
|
|
2615
|
+
@media (hover: hover) {
|
|
2616
|
+
border-color: var(--color-gray-300);
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
}
|
|
2620
|
+
.hover\:bg-blue-100 {
|
|
2621
|
+
&:hover {
|
|
2622
|
+
@media (hover: hover) {
|
|
2623
|
+
background-color: var(--color-blue-100);
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
.hover\:bg-blue-800 {
|
|
2628
|
+
&:hover {
|
|
2629
|
+
@media (hover: hover) {
|
|
2630
|
+
background-color: var(--color-blue-800);
|
|
2631
|
+
}
|
|
2632
|
+
}
|
|
2633
|
+
}
|
|
2634
|
+
.hover\:bg-gray-100 {
|
|
2635
|
+
&:hover {
|
|
2636
|
+
@media (hover: hover) {
|
|
2637
|
+
background-color: var(--color-gray-100);
|
|
2638
|
+
}
|
|
2639
|
+
}
|
|
2640
|
+
}
|
|
2641
|
+
.hover\:bg-gray-200 {
|
|
2642
|
+
&:hover {
|
|
2643
|
+
@media (hover: hover) {
|
|
2644
|
+
background-color: var(--color-gray-200);
|
|
2645
|
+
}
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
.hover\:bg-gray-900 {
|
|
2649
|
+
&:hover {
|
|
2650
|
+
@media (hover: hover) {
|
|
2651
|
+
background-color: var(--color-gray-900);
|
|
2652
|
+
}
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
.hover\:bg-green-800 {
|
|
2656
|
+
&:hover {
|
|
2657
|
+
@media (hover: hover) {
|
|
2658
|
+
background-color: var(--color-green-800);
|
|
2659
|
+
}
|
|
2660
|
+
}
|
|
2661
|
+
}
|
|
2662
|
+
.hover\:bg-purple-800 {
|
|
2663
|
+
&:hover {
|
|
2664
|
+
@media (hover: hover) {
|
|
2665
|
+
background-color: var(--color-purple-800);
|
|
2666
|
+
}
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
.hover\:bg-red-800 {
|
|
2670
|
+
&:hover {
|
|
2671
|
+
@media (hover: hover) {
|
|
2672
|
+
background-color: var(--color-red-800);
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
.hover\:bg-white {
|
|
2677
|
+
&:hover {
|
|
2678
|
+
@media (hover: hover) {
|
|
2679
|
+
background-color: var(--color-white);
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
.hover\:bg-yellow-500 {
|
|
2684
|
+
&:hover {
|
|
2685
|
+
@media (hover: hover) {
|
|
2686
|
+
background-color: var(--color-yellow-500);
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2689
|
+
}
|
|
2690
|
+
.hover\:text-blue-600 {
|
|
2691
|
+
&:hover {
|
|
2692
|
+
@media (hover: hover) {
|
|
2693
|
+
color: var(--color-blue-600);
|
|
2694
|
+
}
|
|
2695
|
+
}
|
|
2696
|
+
}
|
|
2697
|
+
.hover\:text-blue-700 {
|
|
2698
|
+
&:hover {
|
|
2699
|
+
@media (hover: hover) {
|
|
2700
|
+
color: var(--color-blue-700);
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
.hover\:text-gray-600 {
|
|
2705
|
+
&:hover {
|
|
2706
|
+
@media (hover: hover) {
|
|
2707
|
+
color: var(--color-gray-600);
|
|
2708
|
+
}
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2711
|
+
.hover\:text-gray-700 {
|
|
2712
|
+
&:hover {
|
|
2713
|
+
@media (hover: hover) {
|
|
2714
|
+
color: var(--color-gray-700);
|
|
2715
|
+
}
|
|
2716
|
+
}
|
|
2717
|
+
}
|
|
2718
|
+
.hover\:text-gray-900 {
|
|
2719
|
+
&:hover {
|
|
2720
|
+
@media (hover: hover) {
|
|
2721
|
+
color: var(--color-gray-900);
|
|
2722
|
+
}
|
|
2723
|
+
}
|
|
2724
|
+
}
|
|
2725
|
+
.hover\:text-white {
|
|
2726
|
+
&:hover {
|
|
2727
|
+
@media (hover: hover) {
|
|
2728
|
+
color: var(--color-white);
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2731
|
+
}
|
|
2732
|
+
.hover\:underline {
|
|
2733
|
+
&:hover {
|
|
2734
|
+
@media (hover: hover) {
|
|
2735
|
+
text-decoration-line: underline;
|
|
2736
|
+
}
|
|
2737
|
+
}
|
|
2738
|
+
}
|
|
2739
|
+
.focus\:z-10 {
|
|
2740
|
+
&:focus {
|
|
2741
|
+
z-index: 10;
|
|
2742
|
+
}
|
|
2743
|
+
}
|
|
2744
|
+
.focus\:border-blue-500 {
|
|
2745
|
+
&:focus {
|
|
2746
|
+
border-color: var(--color-blue-500);
|
|
2747
|
+
}
|
|
2748
|
+
}
|
|
2749
|
+
.focus\:border-red-500 {
|
|
2750
|
+
&:focus {
|
|
2751
|
+
border-color: var(--color-red-500);
|
|
2752
|
+
}
|
|
2753
|
+
}
|
|
2754
|
+
.focus\:ring-2 {
|
|
2755
|
+
&:focus {
|
|
2756
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2757
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2758
|
+
}
|
|
2759
|
+
}
|
|
2760
|
+
.focus\:ring-4 {
|
|
2761
|
+
&:focus {
|
|
2762
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2763
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
.focus\:ring-blue-300 {
|
|
2767
|
+
&:focus {
|
|
2768
|
+
--tw-ring-color: var(--color-blue-300);
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
.focus\:ring-blue-500 {
|
|
2772
|
+
&:focus {
|
|
2773
|
+
--tw-ring-color: var(--color-blue-500);
|
|
2774
|
+
}
|
|
2775
|
+
}
|
|
2776
|
+
.focus\:ring-gray-100 {
|
|
2777
|
+
&:focus {
|
|
2778
|
+
--tw-ring-color: var(--color-gray-100);
|
|
2779
|
+
}
|
|
2780
|
+
}
|
|
2781
|
+
.focus\:ring-gray-200 {
|
|
2782
|
+
&:focus {
|
|
2783
|
+
--tw-ring-color: var(--color-gray-200);
|
|
2784
|
+
}
|
|
2785
|
+
}
|
|
2786
|
+
.focus\:ring-gray-300 {
|
|
2787
|
+
&:focus {
|
|
2788
|
+
--tw-ring-color: var(--color-gray-300);
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
.focus\:ring-green-300 {
|
|
2792
|
+
&:focus {
|
|
2793
|
+
--tw-ring-color: var(--color-green-300);
|
|
2794
|
+
}
|
|
2795
|
+
}
|
|
2796
|
+
.focus\:ring-purple-300 {
|
|
2797
|
+
&:focus {
|
|
2798
|
+
--tw-ring-color: var(--color-purple-300);
|
|
2799
|
+
}
|
|
2800
|
+
}
|
|
2801
|
+
.focus\:ring-red-300 {
|
|
2802
|
+
&:focus {
|
|
2803
|
+
--tw-ring-color: var(--color-red-300);
|
|
2804
|
+
}
|
|
2805
|
+
}
|
|
2806
|
+
.focus\:ring-red-500 {
|
|
2807
|
+
&:focus {
|
|
2808
|
+
--tw-ring-color: var(--color-red-500);
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2811
|
+
.focus\:ring-yellow-300 {
|
|
2812
|
+
&:focus {
|
|
2813
|
+
--tw-ring-color: var(--color-yellow-300);
|
|
2814
|
+
}
|
|
2815
|
+
}
|
|
2816
|
+
.focus\:ring-offset-2 {
|
|
2817
|
+
&:focus {
|
|
2818
|
+
--tw-ring-offset-width: 2px;
|
|
2819
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2820
|
+
}
|
|
2821
|
+
}
|
|
2822
|
+
.focus\:outline-none {
|
|
2823
|
+
&:focus {
|
|
2824
|
+
--tw-outline-style: none;
|
|
2825
|
+
outline-style: none;
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
2828
|
+
.sm\:grid {
|
|
2829
|
+
@media (width >= 40rem) {
|
|
2830
|
+
display: grid;
|
|
2831
|
+
}
|
|
2832
|
+
}
|
|
2833
|
+
.sm\:grid-cols-4 {
|
|
2834
|
+
@media (width >= 40rem) {
|
|
2835
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2836
|
+
}
|
|
2837
|
+
}
|
|
2838
|
+
.sm\:gap-4 {
|
|
2839
|
+
@media (width >= 40rem) {
|
|
2840
|
+
gap: calc(var(--spacing) * 4);
|
|
2841
|
+
}
|
|
2842
|
+
}
|
|
2843
|
+
.sm\:px-6 {
|
|
2844
|
+
@media (width >= 40rem) {
|
|
2845
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
.md\:inset-0 {
|
|
2849
|
+
@media (width >= 48rem) {
|
|
2850
|
+
inset: calc(var(--spacing) * 0);
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
2853
|
+
.md\:mx-0 {
|
|
2854
|
+
@media (width >= 48rem) {
|
|
2855
|
+
margin-inline: calc(var(--spacing) * 0);
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
.md\:flex {
|
|
2859
|
+
@media (width >= 48rem) {
|
|
2860
|
+
display: flex;
|
|
2861
|
+
}
|
|
2862
|
+
}
|
|
2863
|
+
.md\:space-x-2 {
|
|
2864
|
+
@media (width >= 48rem) {
|
|
2865
|
+
:where(& > :not(:last-child)) {
|
|
2866
|
+
--tw-space-x-reverse: 0;
|
|
2867
|
+
margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
|
|
2868
|
+
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
}
|
|
2872
|
+
.md\:rounded-lg {
|
|
2873
|
+
@media (width >= 48rem) {
|
|
2874
|
+
border-radius: var(--radius-lg);
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
.md\:px-0 {
|
|
2878
|
+
@media (width >= 48rem) {
|
|
2879
|
+
padding-inline: calc(var(--spacing) * 0);
|
|
2880
|
+
}
|
|
2881
|
+
}
|
|
2882
|
+
.md\:px-6 {
|
|
2883
|
+
@media (width >= 48rem) {
|
|
2884
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
2885
|
+
}
|
|
2886
|
+
}
|
|
2887
|
+
.lg\:mb-0 {
|
|
2888
|
+
@media (width >= 64rem) {
|
|
2889
|
+
margin-bottom: calc(var(--spacing) * 0);
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2892
|
+
.lg\:max-w-2xl {
|
|
2893
|
+
@media (width >= 64rem) {
|
|
2894
|
+
max-width: var(--container-2xl);
|
|
2895
|
+
}
|
|
2896
|
+
}
|
|
2897
|
+
.rtl\:rotate-180 {
|
|
2898
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
2899
|
+
rotate: 180deg;
|
|
2900
|
+
}
|
|
2901
|
+
}
|
|
2902
|
+
.rtl\:space-x-reverse {
|
|
2903
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
2904
|
+
:where(& > :not(:last-child)) {
|
|
2905
|
+
--tw-space-x-reverse: 1;
|
|
2906
|
+
}
|
|
2907
|
+
}
|
|
2908
|
+
}
|
|
2909
|
+
.rtl\:text-right {
|
|
2910
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
2911
|
+
text-align: right;
|
|
2912
|
+
}
|
|
2913
|
+
}
|
|
2914
|
+
.dark\:divide-white\/5 {
|
|
2915
|
+
@media (prefers-color-scheme: dark) {
|
|
2916
|
+
:where(& > :not(:last-child)) {
|
|
2917
|
+
border-color: color-mix(in srgb, #ffffff 5%, transparent);
|
|
2918
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2919
|
+
border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
}
|
|
2924
|
+
.dark\:border-blue-500 {
|
|
2925
|
+
@media (prefers-color-scheme: dark) {
|
|
2926
|
+
border-color: var(--color-blue-500);
|
|
2927
|
+
}
|
|
2928
|
+
}
|
|
2929
|
+
.dark\:border-gray-500 {
|
|
2930
|
+
@media (prefers-color-scheme: dark) {
|
|
2931
|
+
border-color: var(--color-gray-500);
|
|
2932
|
+
}
|
|
2933
|
+
}
|
|
2934
|
+
.dark\:border-gray-600 {
|
|
2935
|
+
@media (prefers-color-scheme: dark) {
|
|
2936
|
+
border-color: var(--color-gray-600);
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
.dark\:border-gray-700 {
|
|
2940
|
+
@media (prefers-color-scheme: dark) {
|
|
2941
|
+
border-color: var(--color-gray-700);
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
.dark\:border-green-500 {
|
|
2945
|
+
@media (prefers-color-scheme: dark) {
|
|
2946
|
+
border-color: var(--color-green-500);
|
|
2947
|
+
}
|
|
2948
|
+
}
|
|
2949
|
+
.dark\:border-red-500 {
|
|
2950
|
+
@media (prefers-color-scheme: dark) {
|
|
2951
|
+
border-color: var(--color-red-500);
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
.dark\:border-transparent {
|
|
2955
|
+
@media (prefers-color-scheme: dark) {
|
|
2956
|
+
border-color: transparent;
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
.dark\:bg-blue-600 {
|
|
2960
|
+
@media (prefers-color-scheme: dark) {
|
|
2961
|
+
background-color: var(--color-blue-600);
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2964
|
+
.dark\:bg-blue-800 {
|
|
2965
|
+
@media (prefers-color-scheme: dark) {
|
|
2966
|
+
background-color: var(--color-blue-800);
|
|
2967
|
+
}
|
|
2968
|
+
}
|
|
2969
|
+
.dark\:bg-gray-600 {
|
|
2970
|
+
@media (prefers-color-scheme: dark) {
|
|
2971
|
+
background-color: var(--color-gray-600);
|
|
2972
|
+
}
|
|
2973
|
+
}
|
|
2974
|
+
.dark\:bg-gray-700 {
|
|
2975
|
+
@media (prefers-color-scheme: dark) {
|
|
2976
|
+
background-color: var(--color-gray-700);
|
|
2977
|
+
}
|
|
2978
|
+
}
|
|
2979
|
+
.dark\:bg-gray-800 {
|
|
2980
|
+
@media (prefers-color-scheme: dark) {
|
|
2981
|
+
background-color: var(--color-gray-800);
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
.dark\:bg-gray-800\/50 {
|
|
2985
|
+
@media (prefers-color-scheme: dark) {
|
|
2986
|
+
background-color: color-mix(in srgb, #1F2937 50%, transparent);
|
|
2987
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2988
|
+
background-color: color-mix(in oklab, var(--color-gray-800) 50%, transparent);
|
|
2989
|
+
}
|
|
2990
|
+
}
|
|
2991
|
+
}
|
|
2992
|
+
.dark\:bg-gray-900 {
|
|
2993
|
+
@media (prefers-color-scheme: dark) {
|
|
2994
|
+
background-color: var(--color-gray-900);
|
|
2995
|
+
}
|
|
2996
|
+
}
|
|
2997
|
+
.dark\:bg-gray-900\/80 {
|
|
2998
|
+
@media (prefers-color-scheme: dark) {
|
|
2999
|
+
background-color: color-mix(in srgb, #111827 80%, transparent);
|
|
3000
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3001
|
+
background-color: color-mix(in oklab, var(--color-gray-900) 80%, transparent);
|
|
3002
|
+
}
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
3005
|
+
.dark\:bg-green-600 {
|
|
3006
|
+
@media (prefers-color-scheme: dark) {
|
|
3007
|
+
background-color: var(--color-green-600);
|
|
3008
|
+
}
|
|
3009
|
+
}
|
|
3010
|
+
.dark\:bg-green-800 {
|
|
3011
|
+
@media (prefers-color-scheme: dark) {
|
|
3012
|
+
background-color: var(--color-green-800);
|
|
3013
|
+
}
|
|
3014
|
+
}
|
|
3015
|
+
.dark\:bg-orange-700 {
|
|
3016
|
+
@media (prefers-color-scheme: dark) {
|
|
3017
|
+
background-color: var(--color-orange-700);
|
|
3018
|
+
}
|
|
3019
|
+
}
|
|
3020
|
+
.dark\:bg-purple-600 {
|
|
3021
|
+
@media (prefers-color-scheme: dark) {
|
|
3022
|
+
background-color: var(--color-purple-600);
|
|
3023
|
+
}
|
|
3024
|
+
}
|
|
3025
|
+
.dark\:bg-red-600 {
|
|
3026
|
+
@media (prefers-color-scheme: dark) {
|
|
3027
|
+
background-color: var(--color-red-600);
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
.dark\:bg-red-800 {
|
|
3031
|
+
@media (prefers-color-scheme: dark) {
|
|
3032
|
+
background-color: var(--color-red-800);
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
.dark\:text-blue-200 {
|
|
3036
|
+
@media (prefers-color-scheme: dark) {
|
|
3037
|
+
color: var(--color-blue-200);
|
|
3038
|
+
}
|
|
3039
|
+
}
|
|
3040
|
+
.dark\:text-blue-500 {
|
|
3041
|
+
@media (prefers-color-scheme: dark) {
|
|
3042
|
+
color: var(--color-blue-500);
|
|
3043
|
+
}
|
|
3044
|
+
}
|
|
3045
|
+
.dark\:text-gray-300 {
|
|
3046
|
+
@media (prefers-color-scheme: dark) {
|
|
3047
|
+
color: var(--color-gray-300);
|
|
3048
|
+
}
|
|
3049
|
+
}
|
|
3050
|
+
.dark\:text-gray-400 {
|
|
3051
|
+
@media (prefers-color-scheme: dark) {
|
|
3052
|
+
color: var(--color-gray-400);
|
|
3053
|
+
}
|
|
3054
|
+
}
|
|
3055
|
+
.dark\:text-gray-500 {
|
|
3056
|
+
@media (prefers-color-scheme: dark) {
|
|
3057
|
+
color: var(--color-gray-500);
|
|
3058
|
+
}
|
|
3059
|
+
}
|
|
3060
|
+
.dark\:text-gray-600 {
|
|
3061
|
+
@media (prefers-color-scheme: dark) {
|
|
3062
|
+
color: var(--color-gray-600);
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
.dark\:text-green-200 {
|
|
3066
|
+
@media (prefers-color-scheme: dark) {
|
|
3067
|
+
color: var(--color-green-200);
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
.dark\:text-green-500 {
|
|
3071
|
+
@media (prefers-color-scheme: dark) {
|
|
3072
|
+
color: var(--color-green-500);
|
|
3073
|
+
}
|
|
3074
|
+
}
|
|
3075
|
+
.dark\:text-orange-200 {
|
|
3076
|
+
@media (prefers-color-scheme: dark) {
|
|
3077
|
+
color: var(--color-orange-200);
|
|
3078
|
+
}
|
|
3079
|
+
}
|
|
3080
|
+
.dark\:text-red-200 {
|
|
3081
|
+
@media (prefers-color-scheme: dark) {
|
|
3082
|
+
color: var(--color-red-200);
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
.dark\:text-red-400 {
|
|
3086
|
+
@media (prefers-color-scheme: dark) {
|
|
3087
|
+
color: var(--color-red-400);
|
|
3088
|
+
}
|
|
3089
|
+
}
|
|
3090
|
+
.dark\:text-red-500 {
|
|
3091
|
+
@media (prefers-color-scheme: dark) {
|
|
3092
|
+
color: var(--color-red-500);
|
|
3093
|
+
}
|
|
3094
|
+
}
|
|
3095
|
+
.dark\:text-white {
|
|
3096
|
+
@media (prefers-color-scheme: dark) {
|
|
3097
|
+
color: var(--color-white);
|
|
3098
|
+
}
|
|
3099
|
+
}
|
|
3100
|
+
.dark\:placeholder-gray-400 {
|
|
3101
|
+
@media (prefers-color-scheme: dark) {
|
|
3102
|
+
&::placeholder {
|
|
3103
|
+
color: var(--color-gray-400);
|
|
3104
|
+
}
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
.dark\:placeholder-red-500 {
|
|
3108
|
+
@media (prefers-color-scheme: dark) {
|
|
3109
|
+
&::placeholder {
|
|
3110
|
+
color: var(--color-red-500);
|
|
3111
|
+
}
|
|
3112
|
+
}
|
|
3113
|
+
}
|
|
3114
|
+
.dark\:ring-offset-gray-800 {
|
|
3115
|
+
@media (prefers-color-scheme: dark) {
|
|
3116
|
+
--tw-ring-offset-color: var(--color-gray-800);
|
|
3117
|
+
}
|
|
3118
|
+
}
|
|
3119
|
+
.dark\:hover\:border-gray-600 {
|
|
3120
|
+
@media (prefers-color-scheme: dark) {
|
|
3121
|
+
&:hover {
|
|
3122
|
+
@media (hover: hover) {
|
|
3123
|
+
border-color: var(--color-gray-600);
|
|
3124
|
+
}
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
}
|
|
3128
|
+
.dark\:hover\:bg-blue-500 {
|
|
3129
|
+
@media (prefers-color-scheme: dark) {
|
|
3130
|
+
&:hover {
|
|
3131
|
+
@media (hover: hover) {
|
|
3132
|
+
background-color: var(--color-blue-500);
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
.dark\:hover\:bg-blue-700 {
|
|
3138
|
+
@media (prefers-color-scheme: dark) {
|
|
3139
|
+
&:hover {
|
|
3140
|
+
@media (hover: hover) {
|
|
3141
|
+
background-color: var(--color-blue-700);
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
.dark\:hover\:bg-gray-600 {
|
|
3147
|
+
@media (prefers-color-scheme: dark) {
|
|
3148
|
+
&:hover {
|
|
3149
|
+
@media (hover: hover) {
|
|
3150
|
+
background-color: var(--color-gray-600);
|
|
3151
|
+
}
|
|
3152
|
+
}
|
|
3153
|
+
}
|
|
3154
|
+
}
|
|
3155
|
+
.dark\:hover\:bg-gray-700 {
|
|
3156
|
+
@media (prefers-color-scheme: dark) {
|
|
3157
|
+
&:hover {
|
|
3158
|
+
@media (hover: hover) {
|
|
3159
|
+
background-color: var(--color-gray-700);
|
|
3160
|
+
}
|
|
3161
|
+
}
|
|
3162
|
+
}
|
|
3163
|
+
}
|
|
3164
|
+
.dark\:hover\:bg-gray-800 {
|
|
3165
|
+
@media (prefers-color-scheme: dark) {
|
|
3166
|
+
&:hover {
|
|
3167
|
+
@media (hover: hover) {
|
|
3168
|
+
background-color: var(--color-gray-800);
|
|
3169
|
+
}
|
|
3170
|
+
}
|
|
3171
|
+
}
|
|
3172
|
+
}
|
|
3173
|
+
.dark\:hover\:bg-green-600 {
|
|
3174
|
+
@media (prefers-color-scheme: dark) {
|
|
3175
|
+
&:hover {
|
|
3176
|
+
@media (hover: hover) {
|
|
3177
|
+
background-color: var(--color-green-600);
|
|
3178
|
+
}
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3182
|
+
.dark\:hover\:bg-green-700 {
|
|
3183
|
+
@media (prefers-color-scheme: dark) {
|
|
3184
|
+
&:hover {
|
|
3185
|
+
@media (hover: hover) {
|
|
3186
|
+
background-color: var(--color-green-700);
|
|
3187
|
+
}
|
|
3188
|
+
}
|
|
3189
|
+
}
|
|
3190
|
+
}
|
|
3191
|
+
.dark\:hover\:bg-purple-700 {
|
|
3192
|
+
@media (prefers-color-scheme: dark) {
|
|
3193
|
+
&:hover {
|
|
3194
|
+
@media (hover: hover) {
|
|
3195
|
+
background-color: var(--color-purple-700);
|
|
3196
|
+
}
|
|
3197
|
+
}
|
|
3198
|
+
}
|
|
3199
|
+
}
|
|
3200
|
+
.dark\:hover\:bg-red-700 {
|
|
3201
|
+
@media (prefers-color-scheme: dark) {
|
|
3202
|
+
&:hover {
|
|
3203
|
+
@media (hover: hover) {
|
|
3204
|
+
background-color: var(--color-red-700);
|
|
3205
|
+
}
|
|
3206
|
+
}
|
|
3207
|
+
}
|
|
3208
|
+
}
|
|
3209
|
+
.dark\:hover\:text-blue-500 {
|
|
3210
|
+
@media (prefers-color-scheme: dark) {
|
|
3211
|
+
&:hover {
|
|
3212
|
+
@media (hover: hover) {
|
|
3213
|
+
color: var(--color-blue-500);
|
|
3214
|
+
}
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
.dark\:hover\:text-gray-300 {
|
|
3219
|
+
@media (prefers-color-scheme: dark) {
|
|
3220
|
+
&:hover {
|
|
3221
|
+
@media (hover: hover) {
|
|
3222
|
+
color: var(--color-gray-300);
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
}
|
|
3226
|
+
}
|
|
3227
|
+
.dark\:hover\:text-white {
|
|
3228
|
+
@media (prefers-color-scheme: dark) {
|
|
3229
|
+
&:hover {
|
|
3230
|
+
@media (hover: hover) {
|
|
3231
|
+
color: var(--color-white);
|
|
3232
|
+
}
|
|
3233
|
+
}
|
|
3234
|
+
}
|
|
3235
|
+
}
|
|
3236
|
+
.hover\:dark\:text-blue-500 {
|
|
3237
|
+
&:hover {
|
|
3238
|
+
@media (hover: hover) {
|
|
3239
|
+
@media (prefers-color-scheme: dark) {
|
|
3240
|
+
color: var(--color-blue-500);
|
|
3241
|
+
}
|
|
3242
|
+
}
|
|
3243
|
+
}
|
|
3244
|
+
}
|
|
3245
|
+
.dark\:focus\:border-blue-500 {
|
|
3246
|
+
@media (prefers-color-scheme: dark) {
|
|
3247
|
+
&:focus {
|
|
3248
|
+
border-color: var(--color-blue-500);
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
.dark\:focus\:ring-blue-500 {
|
|
3253
|
+
@media (prefers-color-scheme: dark) {
|
|
3254
|
+
&:focus {
|
|
3255
|
+
--tw-ring-color: var(--color-blue-500);
|
|
3256
|
+
}
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
.dark\:focus\:ring-blue-600 {
|
|
3260
|
+
@media (prefers-color-scheme: dark) {
|
|
3261
|
+
&:focus {
|
|
3262
|
+
--tw-ring-color: var(--color-blue-600);
|
|
3263
|
+
}
|
|
3264
|
+
}
|
|
3265
|
+
}
|
|
3266
|
+
.dark\:focus\:ring-blue-800 {
|
|
3267
|
+
@media (prefers-color-scheme: dark) {
|
|
3268
|
+
&:focus {
|
|
3269
|
+
--tw-ring-color: var(--color-blue-800);
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3272
|
+
}
|
|
3273
|
+
.dark\:focus\:ring-gray-600 {
|
|
3274
|
+
@media (prefers-color-scheme: dark) {
|
|
3275
|
+
&:focus {
|
|
3276
|
+
--tw-ring-color: var(--color-gray-600);
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
}
|
|
3280
|
+
.dark\:focus\:ring-gray-700 {
|
|
3281
|
+
@media (prefers-color-scheme: dark) {
|
|
3282
|
+
&:focus {
|
|
3283
|
+
--tw-ring-color: var(--color-gray-700);
|
|
3284
|
+
}
|
|
3285
|
+
}
|
|
3286
|
+
}
|
|
3287
|
+
.dark\:focus\:ring-green-800 {
|
|
3288
|
+
@media (prefers-color-scheme: dark) {
|
|
3289
|
+
&:focus {
|
|
3290
|
+
--tw-ring-color: var(--color-green-800);
|
|
3291
|
+
}
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
.dark\:focus\:ring-purple-900 {
|
|
3295
|
+
@media (prefers-color-scheme: dark) {
|
|
3296
|
+
&:focus {
|
|
3297
|
+
--tw-ring-color: var(--color-purple-900);
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
.dark\:focus\:ring-red-600 {
|
|
3302
|
+
@media (prefers-color-scheme: dark) {
|
|
3303
|
+
&:focus {
|
|
3304
|
+
--tw-ring-color: var(--color-red-600);
|
|
3305
|
+
}
|
|
3306
|
+
}
|
|
3307
|
+
}
|
|
3308
|
+
.dark\:focus\:ring-red-900 {
|
|
3309
|
+
@media (prefers-color-scheme: dark) {
|
|
3310
|
+
&:focus {
|
|
3311
|
+
--tw-ring-color: var(--color-red-900);
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
}
|
|
3315
|
+
.dark\:focus\:ring-yellow-900 {
|
|
3316
|
+
@media (prefers-color-scheme: dark) {
|
|
3317
|
+
&:focus {
|
|
3318
|
+
--tw-ring-color: var(--color-yellow-900);
|
|
3319
|
+
}
|
|
3320
|
+
}
|
|
3321
|
+
}
|
|
3322
|
+
}
|
|
3323
|
+
@layer base {
|
|
3324
|
+
.tooltip-arrow,.tooltip-arrow:before {
|
|
3325
|
+
position: absolute;
|
|
3326
|
+
width: 8px;
|
|
3327
|
+
height: 8px;
|
|
3328
|
+
background: inherit;
|
|
3329
|
+
}
|
|
3330
|
+
.tooltip-arrow {
|
|
3331
|
+
visibility: hidden;
|
|
3332
|
+
}
|
|
3333
|
+
.tooltip-arrow:before {
|
|
3334
|
+
content: "";
|
|
3335
|
+
visibility: visible;
|
|
3336
|
+
transform: rotate(45deg);
|
|
3337
|
+
}
|
|
3338
|
+
[data-tooltip-style^='light'] + .tooltip > .tooltip-arrow:before {
|
|
3339
|
+
border-style: solid;
|
|
3340
|
+
border-color: var(--color-gray-200);
|
|
3341
|
+
}
|
|
3342
|
+
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='top'] > .tooltip-arrow:before {
|
|
3343
|
+
border-bottom-width: 1px;
|
|
3344
|
+
border-right-width: 1px;
|
|
3345
|
+
}
|
|
3346
|
+
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='right'] > .tooltip-arrow:before {
|
|
3347
|
+
border-bottom-width: 1px;
|
|
3348
|
+
border-left-width: 1px;
|
|
3349
|
+
}
|
|
3350
|
+
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='bottom'] > .tooltip-arrow:before {
|
|
3351
|
+
border-top-width: 1px;
|
|
3352
|
+
border-left-width: 1px;
|
|
3353
|
+
}
|
|
3354
|
+
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='left'] > .tooltip-arrow:before {
|
|
3355
|
+
border-top-width: 1px;
|
|
3356
|
+
border-right-width: 1px;
|
|
3357
|
+
}
|
|
3358
|
+
.tooltip[data-popper-placement^='top'] > .tooltip-arrow {
|
|
3359
|
+
bottom: -4px;
|
|
3360
|
+
}
|
|
3361
|
+
.tooltip[data-popper-placement^='bottom'] > .tooltip-arrow {
|
|
3362
|
+
top: -4px;
|
|
3363
|
+
}
|
|
3364
|
+
.tooltip[data-popper-placement^='left'] > .tooltip-arrow {
|
|
3365
|
+
right: -4px;
|
|
3366
|
+
}
|
|
3367
|
+
.tooltip[data-popper-placement^='right'] > .tooltip-arrow {
|
|
3368
|
+
left: -4px;
|
|
3369
|
+
}
|
|
3370
|
+
.tooltip.invisible > .tooltip-arrow:before {
|
|
3371
|
+
visibility: hidden;
|
|
3372
|
+
}
|
|
3373
|
+
[data-popper-arrow],[data-popper-arrow]:before {
|
|
3374
|
+
position: absolute;
|
|
3375
|
+
width: 8px;
|
|
3376
|
+
height: 8px;
|
|
3377
|
+
background: inherit;
|
|
3378
|
+
}
|
|
3379
|
+
[data-popper-arrow] {
|
|
3380
|
+
visibility: hidden;
|
|
3381
|
+
}
|
|
3382
|
+
[data-popper-arrow]:before {
|
|
3383
|
+
content: "";
|
|
3384
|
+
visibility: visible;
|
|
3385
|
+
transform: rotate(45deg);
|
|
3386
|
+
}
|
|
3387
|
+
[data-popper-arrow]:after {
|
|
3388
|
+
content: "";
|
|
3389
|
+
visibility: visible;
|
|
3390
|
+
transform: rotate(45deg);
|
|
3391
|
+
position: absolute;
|
|
3392
|
+
width: 9px;
|
|
3393
|
+
height: 9px;
|
|
3394
|
+
background: inherit;
|
|
3395
|
+
}
|
|
3396
|
+
[role="tooltip"] > [data-popper-arrow]:before {
|
|
3397
|
+
border-style: solid;
|
|
3398
|
+
border-color: var(--color-gray-200);
|
|
3399
|
+
}
|
|
3400
|
+
.dark [role="tooltip"] > [data-popper-arrow]:before {
|
|
3401
|
+
border-style: solid;
|
|
3402
|
+
border-color: var(--color-gray-600);
|
|
3403
|
+
}
|
|
3404
|
+
[role="tooltip"] > [data-popper-arrow]:after {
|
|
3405
|
+
border-style: solid;
|
|
3406
|
+
border-color: var(--color-gray-200);
|
|
3407
|
+
}
|
|
3408
|
+
.dark [role="tooltip"] > [data-popper-arrow]:after {
|
|
3409
|
+
border-style: solid;
|
|
3410
|
+
border-color: var(--color-gray-600);
|
|
3411
|
+
}
|
|
3412
|
+
[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:before {
|
|
3413
|
+
border-bottom-width: 1px;
|
|
3414
|
+
border-right-width: 1px;
|
|
3415
|
+
}
|
|
3416
|
+
[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:after {
|
|
3417
|
+
border-bottom-width: 1px;
|
|
3418
|
+
border-right-width: 1px;
|
|
3419
|
+
}
|
|
3420
|
+
[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:before {
|
|
3421
|
+
border-bottom-width: 1px;
|
|
3422
|
+
border-left-width: 1px;
|
|
3423
|
+
}
|
|
3424
|
+
[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:after {
|
|
3425
|
+
border-bottom-width: 1px;
|
|
3426
|
+
border-left-width: 1px;
|
|
3427
|
+
}
|
|
3428
|
+
[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:before {
|
|
3429
|
+
border-top-width: 1px;
|
|
3430
|
+
border-left-width: 1px;
|
|
3431
|
+
}
|
|
3432
|
+
[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:after {
|
|
3433
|
+
border-top-width: 1px;
|
|
3434
|
+
border-left-width: 1px;
|
|
3435
|
+
}
|
|
3436
|
+
[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:before {
|
|
3437
|
+
border-top-width: 1px;
|
|
3438
|
+
border-right-width: 1px;
|
|
3439
|
+
}
|
|
3440
|
+
[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:after {
|
|
3441
|
+
border-top-width: 1px;
|
|
3442
|
+
border-right-width: 1px;
|
|
3443
|
+
}
|
|
3444
|
+
[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow] {
|
|
3445
|
+
bottom: -5px;
|
|
3446
|
+
}
|
|
3447
|
+
[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow] {
|
|
3448
|
+
top: -5px;
|
|
3449
|
+
}
|
|
3450
|
+
[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow] {
|
|
3451
|
+
right: -5px;
|
|
3452
|
+
}
|
|
3453
|
+
[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow] {
|
|
3454
|
+
left: -5px;
|
|
3455
|
+
}
|
|
3456
|
+
[role="tooltip"].invisible > [data-popper-arrow]:before {
|
|
3457
|
+
visibility: hidden;
|
|
3458
|
+
}
|
|
3459
|
+
[role="tooltip"].invisible > [data-popper-arrow]:after {
|
|
3460
|
+
visibility: hidden;
|
|
3461
|
+
}
|
|
3462
|
+
}
|
|
3463
|
+
@layer base {
|
|
3464
|
+
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
|
|
3465
|
+
appearance: none;
|
|
3466
|
+
background-color: #fff;
|
|
3467
|
+
border-color: var(--color-gray-500);
|
|
3468
|
+
border-width: 1px;
|
|
3469
|
+
border-radius: 0px;
|
|
3470
|
+
padding-top: 0.5rem;
|
|
3471
|
+
padding-right: 0.75rem;
|
|
3472
|
+
padding-bottom: 0.5rem;
|
|
3473
|
+
padding-left: 0.75rem;
|
|
3474
|
+
font-size: 1rem;
|
|
3475
|
+
line-height: 1.5rem;
|
|
3476
|
+
--tw-shadow: 0 0 #0000;
|
|
3477
|
+
&:focus {
|
|
3478
|
+
outline: 2px solid transparent;
|
|
3479
|
+
outline-offset: 2px;
|
|
3480
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
3481
|
+
--tw-ring-offset-width: 0px;
|
|
3482
|
+
--tw-ring-offset-color: #fff;
|
|
3483
|
+
--tw-ring-color: var(--color-blue-600);
|
|
3484
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3485
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3486
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3487
|
+
border-color: var(--color-blue-600);
|
|
3488
|
+
}
|
|
3489
|
+
}
|
|
3490
|
+
input::placeholder,textarea::placeholder {
|
|
3491
|
+
color: var(--color-gray-500);
|
|
3492
|
+
opacity: 1;
|
|
3493
|
+
}
|
|
3494
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
3495
|
+
padding: 0;
|
|
3496
|
+
}
|
|
3497
|
+
input[type="time"]::-webkit-calendar-picker-indicator {
|
|
3498
|
+
background: none;
|
|
3499
|
+
}
|
|
3500
|
+
select:not([size]) {
|
|
3501
|
+
background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 6'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3e %3c/svg%3e");
|
|
3502
|
+
background-position: right 0.75rem center;
|
|
3503
|
+
background-repeat: no-repeat;
|
|
3504
|
+
background-size: 0.75em 0.75em;
|
|
3505
|
+
padding-right: 2.5rem;
|
|
3506
|
+
print-color-adjust: exact;
|
|
3507
|
+
}
|
|
3508
|
+
:is([dir=rtl]) select:not([size]) {
|
|
3509
|
+
background-position: left 0.75rem center;
|
|
3510
|
+
padding-right: 0.75rem;
|
|
3511
|
+
padding-left: 0;
|
|
3512
|
+
}
|
|
3513
|
+
[multiple] {
|
|
3514
|
+
background-image: initial;
|
|
3515
|
+
background-position: initial;
|
|
3516
|
+
background-repeat: unset;
|
|
3517
|
+
background-size: initial;
|
|
3518
|
+
padding-right: 0.75rem;
|
|
3519
|
+
print-color-adjust: unset;
|
|
3520
|
+
}
|
|
3521
|
+
[type='checkbox'],[type='radio'] {
|
|
3522
|
+
appearance: none;
|
|
3523
|
+
padding: 0;
|
|
3524
|
+
print-color-adjust: exact;
|
|
3525
|
+
display: inline-block;
|
|
3526
|
+
vertical-align: middle;
|
|
3527
|
+
background-origin: border-box;
|
|
3528
|
+
user-select: none;
|
|
3529
|
+
flex-shrink: 0;
|
|
3530
|
+
height: 1rem;
|
|
3531
|
+
width: 1rem;
|
|
3532
|
+
color: var(--color-blue-600);
|
|
3533
|
+
background-color: #fff;
|
|
3534
|
+
border-color: --color-gray-500;
|
|
3535
|
+
border-width: 1px;
|
|
3536
|
+
--tw-shadow: 0 0 #0000;
|
|
3537
|
+
}
|
|
3538
|
+
[type='checkbox'] {
|
|
3539
|
+
border-radius: 0px;
|
|
3540
|
+
}
|
|
3541
|
+
[type='radio'] {
|
|
3542
|
+
border-radius: 100%;
|
|
3543
|
+
}
|
|
3544
|
+
[type='checkbox']:focus,[type='radio']:focus {
|
|
3545
|
+
outline: 2px solid transparent;
|
|
3546
|
+
outline-offset: 2px;
|
|
3547
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
3548
|
+
--tw-ring-offset-width: 2px;
|
|
3549
|
+
--tw-ring-offset-color: #fff;
|
|
3550
|
+
--tw-ring-color: var(--color-blue-600);
|
|
3551
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3552
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3553
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3554
|
+
}
|
|
3555
|
+
[type='checkbox']:checked,[type='radio']:checked,.dark [type='checkbox']:checked,.dark [type='radio']:checked {
|
|
3556
|
+
border-color: transparent !important;
|
|
3557
|
+
background-color: currentColor !important;
|
|
3558
|
+
background-size: 0.55em 0.55em;
|
|
3559
|
+
background-position: center;
|
|
3560
|
+
background-repeat: no-repeat;
|
|
3561
|
+
}
|
|
3562
|
+
[type='checkbox']:checked {
|
|
3563
|
+
background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
|
|
3564
|
+
background-repeat: no-repeat;
|
|
3565
|
+
background-size: 0.55em 0.55em;
|
|
3566
|
+
print-color-adjust: exact;
|
|
3567
|
+
}
|
|
3568
|
+
[type='radio']:checked {
|
|
3569
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
|
3570
|
+
background-size: 1em 1em;
|
|
3571
|
+
}
|
|
3572
|
+
.dark [type='radio']:checked {
|
|
3573
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
|
3574
|
+
background-size: 1em 1em;
|
|
3575
|
+
}
|
|
3576
|
+
[type='checkbox']:indeterminate {
|
|
3577
|
+
background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M0.5 6h14'/%3e %3c/svg%3e");
|
|
3578
|
+
background-color: currentColor !important;
|
|
3579
|
+
border-color: transparent !important;
|
|
3580
|
+
background-position: center;
|
|
3581
|
+
background-repeat: no-repeat;
|
|
3582
|
+
background-size: 0.55em 0.55em;
|
|
3583
|
+
print-color-adjust: exact;
|
|
3584
|
+
}
|
|
3585
|
+
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
|
|
3586
|
+
border-color: transparent !important;
|
|
3587
|
+
background-color: currentColor !important;
|
|
3588
|
+
}
|
|
3589
|
+
[type='file'] {
|
|
3590
|
+
background: unset;
|
|
3591
|
+
border-color: inherit;
|
|
3592
|
+
border-width: 0;
|
|
3593
|
+
border-radius: 0;
|
|
3594
|
+
padding: 0;
|
|
3595
|
+
font-size: unset;
|
|
3596
|
+
line-height: inherit;
|
|
3597
|
+
}
|
|
3598
|
+
[type='file']:focus {
|
|
3599
|
+
outline: 1px auto inherit;
|
|
3600
|
+
}
|
|
3601
|
+
input[type=file]::file-selector-button {
|
|
3602
|
+
color: white;
|
|
3603
|
+
background: var(--color-gray-800);
|
|
3604
|
+
border: 0;
|
|
3605
|
+
font-weight: 500;
|
|
3606
|
+
font-size: 0.875rem;
|
|
3607
|
+
cursor: pointer;
|
|
3608
|
+
padding-top: 0.625rem;
|
|
3609
|
+
padding-bottom: 0.625rem;
|
|
3610
|
+
padding-left: 2rem;
|
|
3611
|
+
padding-right: 1rem;
|
|
3612
|
+
margin-inline-start: -1rem;
|
|
3613
|
+
margin-inline-end: 1rem;
|
|
3614
|
+
&:hover {
|
|
3615
|
+
background: var(--color-gray-700);
|
|
3616
|
+
}
|
|
3617
|
+
}
|
|
3618
|
+
:is([dir=rtl]) input[type=file]::file-selector-button {
|
|
3619
|
+
padding-right: 2rem;
|
|
3620
|
+
padding-left: 1rem;
|
|
3621
|
+
}
|
|
3622
|
+
.dark input[type=file]::file-selector-button {
|
|
3623
|
+
color: white;
|
|
3624
|
+
background: var(--color-gray-600);
|
|
3625
|
+
&:hover {
|
|
3626
|
+
background: var(--color-gray-500);
|
|
3627
|
+
}
|
|
3628
|
+
}
|
|
3629
|
+
input[type="range"]::-webkit-slider-thumb {
|
|
3630
|
+
height: 1.25rem;
|
|
3631
|
+
width: 1.25rem;
|
|
3632
|
+
background: var(--color-blue-600);
|
|
3633
|
+
border-radius: 9999px;
|
|
3634
|
+
border: 0;
|
|
3635
|
+
appearance: none;
|
|
3636
|
+
-moz-appearance: none;
|
|
3637
|
+
-webkit-appearance: none;
|
|
3638
|
+
cursor: pointer;
|
|
3639
|
+
}
|
|
3640
|
+
input[type="range"]:disabled::-webkit-slider-thumb {
|
|
3641
|
+
background: var(--color-gray-400);
|
|
3642
|
+
}
|
|
3643
|
+
.dark input[type="range"]:disabled::-webkit-slider-thumb {
|
|
3644
|
+
background: var(--color-gray-500);
|
|
3645
|
+
}
|
|
3646
|
+
input[type="range"]:focus::-webkit-slider-thumb {
|
|
3647
|
+
outline: 2px solid transparent;
|
|
3648
|
+
outline-offset: 2px;
|
|
3649
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3650
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3651
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3652
|
+
--tw-ring-opacity: 1;
|
|
3653
|
+
--tw-ring-color: rgb(164 202 254 / var(--tw-ring-opacity));
|
|
3654
|
+
}
|
|
3655
|
+
input[type="range"]::-moz-range-thumb {
|
|
3656
|
+
height: 1.25rem;
|
|
3657
|
+
width: 1.25rem;
|
|
3658
|
+
background: var(--color-blue-600);
|
|
3659
|
+
border-radius: 9999px;
|
|
3660
|
+
border: 0;
|
|
3661
|
+
appearance: none;
|
|
3662
|
+
-moz-appearance: none;
|
|
3663
|
+
-webkit-appearance: none;
|
|
3664
|
+
cursor: pointer;
|
|
3665
|
+
}
|
|
3666
|
+
input[type="range"]:disabled::-moz-range-thumb {
|
|
3667
|
+
background: var(--color-gray-400);
|
|
3668
|
+
}
|
|
3669
|
+
.dark input[type="range"]:disabled::-moz-range-thumb {
|
|
3670
|
+
background: var(--color-gray-500);
|
|
3671
|
+
}
|
|
3672
|
+
input[type="range"]::-moz-range-progress {
|
|
3673
|
+
background: var(--color-blue-500);
|
|
3674
|
+
}
|
|
3675
|
+
input[type="range"]::-ms-fill-lower {
|
|
3676
|
+
background: var(--color-blue-500);
|
|
3677
|
+
}
|
|
3678
|
+
input[type="range"].range-sm::-webkit-slider-thumb {
|
|
3679
|
+
height: 1rem;
|
|
3680
|
+
width: 1rem;
|
|
3681
|
+
}
|
|
3682
|
+
input[type="range"].range-lg::-webkit-slider-thumb {
|
|
3683
|
+
height: 1.5rem;
|
|
3684
|
+
width: 1.5rem;
|
|
3685
|
+
}
|
|
3686
|
+
input[type="range"].range-sm::-moz-range-thumb {
|
|
3687
|
+
height: 1rem;
|
|
3688
|
+
width: 1rem;
|
|
3689
|
+
}
|
|
3690
|
+
input[type="range"].range-lg::-moz-range-thumb {
|
|
3691
|
+
height: 1.5rem;
|
|
3692
|
+
width: 1.5rem;
|
|
3693
|
+
}
|
|
3694
|
+
.toggle-bg:after {
|
|
3695
|
+
content: "";
|
|
3696
|
+
position: absolute;
|
|
3697
|
+
top: 0.125rem;
|
|
3698
|
+
left: 0.125rem;
|
|
3699
|
+
background: white;
|
|
3700
|
+
border-color: var(--color-gray-300);
|
|
3701
|
+
border-width: 1px;
|
|
3702
|
+
border-radius: 9999px;
|
|
3703
|
+
height: 1.25rem;
|
|
3704
|
+
width: 1.25rem;
|
|
3705
|
+
transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
|
|
3706
|
+
transition-duration: .15s;
|
|
3707
|
+
box-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3708
|
+
}
|
|
3709
|
+
input:checked + .toggle-bg:after {
|
|
3710
|
+
transform: translateX(100%);;
|
|
3711
|
+
border-color: white;
|
|
3712
|
+
}
|
|
3713
|
+
input:checked + .toggle-bg {
|
|
3714
|
+
background: var(--color-blue-600);
|
|
3715
|
+
border-color: var(--color-blue-600);
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3718
|
+
@property --tw-translate-x {
|
|
3719
|
+
syntax: "*";
|
|
3720
|
+
inherits: false;
|
|
3721
|
+
initial-value: 0;
|
|
3722
|
+
}
|
|
3723
|
+
@property --tw-translate-y {
|
|
3724
|
+
syntax: "*";
|
|
3725
|
+
inherits: false;
|
|
3726
|
+
initial-value: 0;
|
|
3727
|
+
}
|
|
3728
|
+
@property --tw-translate-z {
|
|
3729
|
+
syntax: "*";
|
|
3730
|
+
inherits: false;
|
|
3731
|
+
initial-value: 0;
|
|
3732
|
+
}
|
|
3733
|
+
@property --tw-rotate-x {
|
|
3734
|
+
syntax: "*";
|
|
3735
|
+
inherits: false;
|
|
3736
|
+
}
|
|
3737
|
+
@property --tw-rotate-y {
|
|
3738
|
+
syntax: "*";
|
|
3739
|
+
inherits: false;
|
|
3740
|
+
}
|
|
3741
|
+
@property --tw-rotate-z {
|
|
3742
|
+
syntax: "*";
|
|
3743
|
+
inherits: false;
|
|
3744
|
+
}
|
|
3745
|
+
@property --tw-skew-x {
|
|
3746
|
+
syntax: "*";
|
|
3747
|
+
inherits: false;
|
|
3748
|
+
}
|
|
3749
|
+
@property --tw-skew-y {
|
|
3750
|
+
syntax: "*";
|
|
3751
|
+
inherits: false;
|
|
3752
|
+
}
|
|
3753
|
+
@property --tw-space-y-reverse {
|
|
3754
|
+
syntax: "*";
|
|
3755
|
+
inherits: false;
|
|
3756
|
+
initial-value: 0;
|
|
3757
|
+
}
|
|
3758
|
+
@property --tw-space-x-reverse {
|
|
3759
|
+
syntax: "*";
|
|
3760
|
+
inherits: false;
|
|
3761
|
+
initial-value: 0;
|
|
3762
|
+
}
|
|
3763
|
+
@property --tw-divide-y-reverse {
|
|
3764
|
+
syntax: "*";
|
|
3765
|
+
inherits: false;
|
|
3766
|
+
initial-value: 0;
|
|
3767
|
+
}
|
|
3768
|
+
@property --tw-border-style {
|
|
3769
|
+
syntax: "*";
|
|
3770
|
+
inherits: false;
|
|
3771
|
+
initial-value: solid;
|
|
3772
|
+
}
|
|
3773
|
+
@property --tw-leading {
|
|
3774
|
+
syntax: "*";
|
|
3775
|
+
inherits: false;
|
|
3776
|
+
}
|
|
3777
|
+
@property --tw-font-weight {
|
|
3778
|
+
syntax: "*";
|
|
3779
|
+
inherits: false;
|
|
3780
|
+
}
|
|
3781
|
+
@property --tw-tracking {
|
|
3782
|
+
syntax: "*";
|
|
3783
|
+
inherits: false;
|
|
3784
|
+
}
|
|
3785
|
+
@property --tw-shadow {
|
|
3786
|
+
syntax: "*";
|
|
3787
|
+
inherits: false;
|
|
3788
|
+
initial-value: 0 0 #0000;
|
|
3789
|
+
}
|
|
3790
|
+
@property --tw-shadow-color {
|
|
3791
|
+
syntax: "*";
|
|
3792
|
+
inherits: false;
|
|
3793
|
+
}
|
|
3794
|
+
@property --tw-shadow-alpha {
|
|
3795
|
+
syntax: "<percentage>";
|
|
3796
|
+
inherits: false;
|
|
3797
|
+
initial-value: 100%;
|
|
3798
|
+
}
|
|
3799
|
+
@property --tw-inset-shadow {
|
|
3800
|
+
syntax: "*";
|
|
3801
|
+
inherits: false;
|
|
3802
|
+
initial-value: 0 0 #0000;
|
|
3803
|
+
}
|
|
3804
|
+
@property --tw-inset-shadow-color {
|
|
3805
|
+
syntax: "*";
|
|
3806
|
+
inherits: false;
|
|
3807
|
+
}
|
|
3808
|
+
@property --tw-inset-shadow-alpha {
|
|
3809
|
+
syntax: "<percentage>";
|
|
3810
|
+
inherits: false;
|
|
3811
|
+
initial-value: 100%;
|
|
3812
|
+
}
|
|
3813
|
+
@property --tw-ring-color {
|
|
3814
|
+
syntax: "*";
|
|
3815
|
+
inherits: false;
|
|
3816
|
+
}
|
|
3817
|
+
@property --tw-ring-shadow {
|
|
3818
|
+
syntax: "*";
|
|
3819
|
+
inherits: false;
|
|
3820
|
+
initial-value: 0 0 #0000;
|
|
3821
|
+
}
|
|
3822
|
+
@property --tw-inset-ring-color {
|
|
3823
|
+
syntax: "*";
|
|
3824
|
+
inherits: false;
|
|
3825
|
+
}
|
|
3826
|
+
@property --tw-inset-ring-shadow {
|
|
3827
|
+
syntax: "*";
|
|
3828
|
+
inherits: false;
|
|
3829
|
+
initial-value: 0 0 #0000;
|
|
3830
|
+
}
|
|
3831
|
+
@property --tw-ring-inset {
|
|
3832
|
+
syntax: "*";
|
|
3833
|
+
inherits: false;
|
|
3834
|
+
}
|
|
3835
|
+
@property --tw-ring-offset-width {
|
|
3836
|
+
syntax: "<length>";
|
|
3837
|
+
inherits: false;
|
|
3838
|
+
initial-value: 0px;
|
|
3839
|
+
}
|
|
3840
|
+
@property --tw-ring-offset-color {
|
|
3841
|
+
syntax: "*";
|
|
3842
|
+
inherits: false;
|
|
3843
|
+
initial-value: #fff;
|
|
3844
|
+
}
|
|
3845
|
+
@property --tw-ring-offset-shadow {
|
|
3846
|
+
syntax: "*";
|
|
3847
|
+
inherits: false;
|
|
3848
|
+
initial-value: 0 0 #0000;
|
|
3849
|
+
}
|
|
3850
|
+
@property --tw-outline-style {
|
|
3851
|
+
syntax: "*";
|
|
3852
|
+
inherits: false;
|
|
3853
|
+
initial-value: solid;
|
|
3854
|
+
}
|
|
3855
|
+
@property --tw-blur {
|
|
3856
|
+
syntax: "*";
|
|
3857
|
+
inherits: false;
|
|
3858
|
+
}
|
|
3859
|
+
@property --tw-brightness {
|
|
3860
|
+
syntax: "*";
|
|
3861
|
+
inherits: false;
|
|
3862
|
+
}
|
|
3863
|
+
@property --tw-contrast {
|
|
3864
|
+
syntax: "*";
|
|
3865
|
+
inherits: false;
|
|
3866
|
+
}
|
|
3867
|
+
@property --tw-grayscale {
|
|
3868
|
+
syntax: "*";
|
|
3869
|
+
inherits: false;
|
|
3870
|
+
}
|
|
3871
|
+
@property --tw-hue-rotate {
|
|
3872
|
+
syntax: "*";
|
|
3873
|
+
inherits: false;
|
|
3874
|
+
}
|
|
3875
|
+
@property --tw-invert {
|
|
3876
|
+
syntax: "*";
|
|
3877
|
+
inherits: false;
|
|
3878
|
+
}
|
|
3879
|
+
@property --tw-opacity {
|
|
3880
|
+
syntax: "*";
|
|
3881
|
+
inherits: false;
|
|
3882
|
+
}
|
|
3883
|
+
@property --tw-saturate {
|
|
3884
|
+
syntax: "*";
|
|
3885
|
+
inherits: false;
|
|
3886
|
+
}
|
|
3887
|
+
@property --tw-sepia {
|
|
3888
|
+
syntax: "*";
|
|
3889
|
+
inherits: false;
|
|
3890
|
+
}
|
|
3891
|
+
@property --tw-drop-shadow {
|
|
3892
|
+
syntax: "*";
|
|
3893
|
+
inherits: false;
|
|
3894
|
+
}
|
|
3895
|
+
@property --tw-drop-shadow-color {
|
|
3896
|
+
syntax: "*";
|
|
3897
|
+
inherits: false;
|
|
3898
|
+
}
|
|
3899
|
+
@property --tw-drop-shadow-alpha {
|
|
3900
|
+
syntax: "<percentage>";
|
|
3901
|
+
inherits: false;
|
|
3902
|
+
initial-value: 100%;
|
|
3903
|
+
}
|
|
3904
|
+
@property --tw-drop-shadow-size {
|
|
3905
|
+
syntax: "*";
|
|
3906
|
+
inherits: false;
|
|
3907
|
+
}
|
|
3908
|
+
@property --tw-ease {
|
|
3909
|
+
syntax: "*";
|
|
3910
|
+
inherits: false;
|
|
3911
|
+
}
|
|
3912
|
+
@keyframes spin {
|
|
3913
|
+
to {
|
|
3914
|
+
transform: rotate(360deg);
|
|
3915
|
+
}
|
|
3916
|
+
}
|
|
3917
|
+
@keyframes pulse {
|
|
3918
|
+
50% {
|
|
3919
|
+
opacity: 0.5;
|
|
3920
|
+
}
|
|
3921
|
+
}
|
|
3922
|
+
@layer properties {
|
|
3923
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
3924
|
+
*, ::before, ::after, ::backdrop {
|
|
3925
|
+
--tw-translate-x: 0;
|
|
3926
|
+
--tw-translate-y: 0;
|
|
3927
|
+
--tw-translate-z: 0;
|
|
3928
|
+
--tw-rotate-x: initial;
|
|
3929
|
+
--tw-rotate-y: initial;
|
|
3930
|
+
--tw-rotate-z: initial;
|
|
3931
|
+
--tw-skew-x: initial;
|
|
3932
|
+
--tw-skew-y: initial;
|
|
3933
|
+
--tw-space-y-reverse: 0;
|
|
3934
|
+
--tw-space-x-reverse: 0;
|
|
3935
|
+
--tw-divide-y-reverse: 0;
|
|
3936
|
+
--tw-border-style: solid;
|
|
3937
|
+
--tw-leading: initial;
|
|
3938
|
+
--tw-font-weight: initial;
|
|
3939
|
+
--tw-tracking: initial;
|
|
3940
|
+
--tw-shadow: 0 0 #0000;
|
|
3941
|
+
--tw-shadow-color: initial;
|
|
3942
|
+
--tw-shadow-alpha: 100%;
|
|
3943
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
3944
|
+
--tw-inset-shadow-color: initial;
|
|
3945
|
+
--tw-inset-shadow-alpha: 100%;
|
|
3946
|
+
--tw-ring-color: initial;
|
|
3947
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
3948
|
+
--tw-inset-ring-color: initial;
|
|
3949
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
3950
|
+
--tw-ring-inset: initial;
|
|
3951
|
+
--tw-ring-offset-width: 0px;
|
|
3952
|
+
--tw-ring-offset-color: #fff;
|
|
3953
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
3954
|
+
--tw-outline-style: solid;
|
|
3955
|
+
--tw-blur: initial;
|
|
3956
|
+
--tw-brightness: initial;
|
|
3957
|
+
--tw-contrast: initial;
|
|
3958
|
+
--tw-grayscale: initial;
|
|
3959
|
+
--tw-hue-rotate: initial;
|
|
3960
|
+
--tw-invert: initial;
|
|
3961
|
+
--tw-opacity: initial;
|
|
3962
|
+
--tw-saturate: initial;
|
|
3963
|
+
--tw-sepia: initial;
|
|
3964
|
+
--tw-drop-shadow: initial;
|
|
3965
|
+
--tw-drop-shadow-color: initial;
|
|
3966
|
+
--tw-drop-shadow-alpha: 100%;
|
|
3967
|
+
--tw-drop-shadow-size: initial;
|
|
3968
|
+
--tw-ease: initial;
|
|
3969
|
+
}
|
|
3970
|
+
}
|
|
3971
|
+
}
|