@winchsa/ui 0.1.0
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.
- package/README.md +166 -0
- package/dist/components/Breadcrumbs.vue +46 -0
- package/dist/components/Breadcrumbs.vue.d.ts +6 -0
- package/dist/components/Drawer.vue +60 -0
- package/dist/components/Drawer.vue.d.ts +44 -0
- package/dist/components/IconBtn.vue +18 -0
- package/dist/components/IconBtn.vue.d.ts +30 -0
- package/dist/components/Modal.vue +155 -0
- package/dist/components/Modal.vue.d.ts +0 -0
- package/dist/components/SiteTitle.vue +14 -0
- package/dist/components/SiteTitle.vue.d.ts +2 -0
- package/dist/components/Toaster.vue +19 -0
- package/dist/components/Toaster.vue.d.ts +5 -0
- package/dist/components/cards/CheckboxesCard.vue +76 -0
- package/dist/components/cards/CheckboxesCard.vue.d.ts +20 -0
- package/dist/components/cards/HeaderCard.vue +31 -0
- package/dist/components/cards/HeaderCard.vue.d.ts +8 -0
- package/dist/components/cards/ImageCard.vue +73 -0
- package/dist/components/cards/ImageCard.vue.d.ts +63 -0
- package/dist/components/cards/InputCard.vue +60 -0
- package/dist/components/cards/InputCard.vue.d.ts +41 -0
- package/dist/components/cards/StaticCard.vue +37 -0
- package/dist/components/cards/StaticCard.vue.d.ts +33 -0
- package/dist/components/core/AppBarSearch.vue +345 -0
- package/dist/components/core/AppBarSearch.vue.d.ts +1587 -0
- package/dist/components/core/AppDrawerHeaderSection.vue +21 -0
- package/dist/components/core/AppDrawerHeaderSection.vue.d.ts +30 -0
- package/dist/components/core/AppSearchHeader.vue +72 -0
- package/dist/components/core/AppSearchHeader.vue.d.ts +7 -0
- package/dist/components/core/AppStepper.vue +232 -0
- package/dist/components/core/AppStepper.vue.d.ts +25 -0
- package/dist/components/core/CustomizerSection.vue +19 -0
- package/dist/components/core/CustomizerSection.vue.d.ts +25 -0
- package/dist/components/core/DialogCloseBtn.vue +20 -0
- package/dist/components/core/DialogCloseBtn.vue.d.ts +9 -0
- package/dist/components/core/MoreBtn.vue +27 -0
- package/dist/components/core/MoreBtn.vue.d.ts +25 -0
- package/dist/components/core/ScrollToTop.vue +39 -0
- package/dist/components/core/ScrollToTop.vue.d.ts +2 -0
- package/dist/components/core/app-form-elements/AppCombobox.vue +67 -0
- package/dist/components/core/app-form-elements/AppCombobox.vue.d.ts +0 -0
- package/dist/components/core/app-form-elements/AppSelect.vue +98 -0
- package/dist/components/core/app-form-elements/AppSelect.vue.d.ts +0 -0
- package/dist/components/core/app-form-elements/AppSwitch.vue +59 -0
- package/dist/components/core/app-form-elements/AppSwitch.vue.d.ts +27 -0
- package/dist/components/core/app-form-elements/AppTextField.vue +66 -0
- package/dist/components/core/app-form-elements/AppTextField.vue.d.ts +26 -0
- package/dist/components/core/app-form-elements/AppTextarea.vue +69 -0
- package/dist/components/core/app-form-elements/AppTextarea.vue.d.ts +26 -0
- package/dist/components/core/app-form-elements/CustomCheckboxes.vue +69 -0
- package/dist/components/core/app-form-elements/CustomCheckboxes.vue.d.ts +39 -0
- package/dist/components/core/app-form-elements/CustomCheckboxesWithIcon.vue +80 -0
- package/dist/components/core/app-form-elements/CustomCheckboxesWithIcon.vue.d.ts +39 -0
- package/dist/components/core/app-form-elements/CustomCheckboxesWithImage.vue +67 -0
- package/dist/components/core/app-form-elements/CustomCheckboxesWithImage.vue.d.ts +15 -0
- package/dist/components/core/app-form-elements/CustomRadios.vue +69 -0
- package/dist/components/core/app-form-elements/CustomRadios.vue.d.ts +40 -0
- package/dist/components/core/app-form-elements/CustomRadiosWithIcon.vue +98 -0
- package/dist/components/core/app-form-elements/CustomRadiosWithIcon.vue.d.ts +45 -0
- package/dist/components/core/app-form-elements/CustomRadiosWithImage.vue +69 -0
- package/dist/components/core/app-form-elements/CustomRadiosWithImage.vue.d.ts +53 -0
- package/dist/components/core/cards/AppCard.vue +45 -0
- package/dist/components/core/cards/AppCard.vue.d.ts +26 -0
- package/dist/components/core/cards/AppCardActions.vue +126 -0
- package/dist/components/core/cards/AppCardActions.vue.d.ts +79 -0
- package/dist/components/core/cards/CardStatisticsHorizontal.vue +29 -0
- package/dist/components/core/cards/CardStatisticsHorizontal.vue.d.ts +10 -0
- package/dist/components/forms/Accordion.vue +43 -0
- package/dist/components/forms/Accordion.vue.d.ts +35 -0
- package/dist/components/forms/AppLabel.vue +47 -0
- package/dist/components/forms/AppLabel.vue.d.ts +36 -0
- package/dist/components/forms/AppLink.vue +50 -0
- package/dist/components/forms/AppLink.vue.d.ts +27 -0
- package/dist/components/forms/AppNumberField.vue +85 -0
- package/dist/components/forms/AppNumberField.vue.d.ts +45 -0
- package/dist/components/forms/AppOtpInput.vue +84 -0
- package/dist/components/forms/AppOtpInput.vue.d.ts +16 -0
- package/dist/components/forms/AttachmentCropperInput.vue +228 -0
- package/dist/components/forms/AttachmentCropperInput.vue.d.ts +25 -0
- package/dist/components/forms/AttachmentInput.vue +116 -0
- package/dist/components/forms/AttachmentInput.vue.d.ts +20 -0
- package/dist/components/forms/AutocompleteInput.vue +759 -0
- package/dist/components/forms/AutocompleteInput.vue.d.ts +0 -0
- package/dist/components/forms/BankSelect.vue +43 -0
- package/dist/components/forms/BankSelect.vue.d.ts +19 -0
- package/dist/components/forms/BaseButton.vue +42 -0
- package/dist/components/forms/BaseButton.vue.d.ts +31 -0
- package/dist/components/forms/CounterInput.vue +71 -0
- package/dist/components/forms/CounterInput.vue.d.ts +15 -0
- package/dist/components/forms/DatePicker.vue +400 -0
- package/dist/components/forms/DatePicker.vue.d.ts +34 -0
- package/dist/components/forms/DatePickerRange.vue +129 -0
- package/dist/components/forms/DatePickerRange.vue.d.ts +23 -0
- package/dist/components/forms/DraggedUploadFile.vue +120 -0
- package/dist/components/forms/DraggedUploadFile.vue.d.ts +10 -0
- package/dist/components/forms/ImageCardInput.vue +234 -0
- package/dist/components/forms/ImageCardInput.vue.d.ts +0 -0
- package/dist/components/forms/InputValidationWrapper.vue +24 -0
- package/dist/components/forms/InputValidationWrapper.vue.d.ts +33 -0
- package/dist/components/forms/LicensePlateInput.vue +159 -0
- package/dist/components/forms/LicensePlateInput.vue.d.ts +16 -0
- package/dist/components/forms/ManualDate.vue +262 -0
- package/dist/components/forms/ManualDate.vue.d.ts +17 -0
- package/dist/components/forms/MobileInput.vue +118 -0
- package/dist/components/forms/MobileInput.vue.d.ts +49 -0
- package/dist/components/forms/PasswordInput.vue +29 -0
- package/dist/components/forms/PasswordInput.vue.d.ts +13 -0
- package/dist/components/forms/RangeInput.vue +48 -0
- package/dist/components/forms/RangeInput.vue.d.ts +5 -0
- package/dist/components/forms/Tabs.vue +35 -0
- package/dist/components/forms/Tabs.vue.d.ts +42 -0
- package/dist/components/forms/TimePicker.vue +370 -0
- package/dist/components/forms/TimePicker.vue.d.ts +23 -0
- package/dist/components/icons/EndMarker.vue +25 -0
- package/dist/components/icons/EndMarker.vue.d.ts +17 -0
- package/dist/components/icons/RedXIcon.vue +36 -0
- package/dist/components/icons/RedXIcon.vue.d.ts +2 -0
- package/dist/components/icons/StarFillIcon.vue +28 -0
- package/dist/components/icons/StarFillIcon.vue.d.ts +2 -0
- package/dist/components/icons/StartMarker.vue +25 -0
- package/dist/components/icons/StartMarker.vue.d.ts +17 -0
- package/dist/components/icons/WorkerIcon.vue +39 -0
- package/dist/components/icons/WorkerIcon.vue.d.ts +2 -0
- package/dist/components/loading/LoadingBar.vue +31 -0
- package/dist/components/loading/LoadingBar.vue.d.ts +5 -0
- package/dist/components/loading/LoadingDialog.vue +41 -0
- package/dist/components/loading/LoadingDialog.vue.d.ts +11 -0
- package/dist/components/loading/LoadingItem.vue +66 -0
- package/dist/components/loading/LoadingItem.vue.d.ts +47 -0
- package/dist/components/table/DataTable.vue +319 -0
- package/dist/components/table/DataTable.vue.d.ts +0 -0
- package/dist/components/table/EditableDataTable.vue +329 -0
- package/dist/components/table/EditableDataTable.vue.d.ts +73 -0
- package/dist/components/table/EditableDataTableRow.vue +243 -0
- package/dist/components/table/EditableDataTableRow.vue.d.ts +18 -0
- package/dist/components/table/FilterGenerator.vue +232 -0
- package/dist/components/table/FilterGenerator.vue.d.ts +14 -0
- package/dist/components/table/StaticTable.vue +152 -0
- package/dist/components/table/StaticTable.vue.d.ts +25 -0
- package/dist/components/table/TablePagination.vue +73 -0
- package/dist/components/table/TablePagination.vue.d.ts +13 -0
- package/dist/composables/use-is-mobile.d.ts +1 -0
- package/dist/composables/use-is-mobile.js +10 -0
- package/dist/composables/use-is-mobile.mjs +4 -0
- package/dist/composables/use-table-filters.d.ts +23 -0
- package/dist/composables/use-table-filters.js +196 -0
- package/dist/composables/use-table-filters.mjs +183 -0
- package/dist/fonts/NotoSans-Medium.ttf +0 -0
- package/dist/fonts/NotoSansArabic-Medium.ttf +0 -0
- package/dist/fonts/saudi_riyal_symbol/saudi_riyal_symbol.eot +0 -0
- package/dist/fonts/saudi_riyal_symbol/saudi_riyal_symbol.svg +9 -0
- package/dist/fonts/saudi_riyal_symbol/saudi_riyal_symbol.ttf +0 -0
- package/dist/fonts/saudi_riyal_symbol/saudi_riyal_symbol.woff +0 -0
- package/dist/fonts/saudi_riyal_symbol/saudi_riyal_symbol.woff2 +0 -0
- package/dist/images/avatar.png +0 -0
- package/dist/images/sa.svg +1 -0
- package/dist/images/successful-registration.svg +15 -0
- package/dist/index.d.ts +66 -0
- package/dist/index.js +447 -0
- package/dist/index.mjs +128 -0
- package/dist/styles/@core/scss/base/_components.scss +164 -0
- package/dist/styles/@core/scss/base/_dark.scss +16 -0
- package/dist/styles/@core/scss/base/_default-layout-w-vertical-nav.scss +106 -0
- package/dist/styles/@core/scss/base/_default-layout.scss +16 -0
- package/dist/styles/@core/scss/base/_index.scss +47 -0
- package/dist/styles/@core/scss/base/_layouts.scss +63 -0
- package/dist/styles/@core/scss/base/_misc.scss +20 -0
- package/dist/styles/@core/scss/base/_mixins.scss +84 -0
- package/dist/styles/@core/scss/base/_route-transitions.scss +70 -0
- package/dist/styles/@core/scss/base/_utilities.scss +418 -0
- package/dist/styles/@core/scss/base/_utils.scss +100 -0
- package/dist/styles/@core/scss/base/_variables.scss +190 -0
- package/dist/styles/@core/scss/base/_vertical-nav.scss +264 -0
- package/dist/styles/@core/scss/base/libs/_perfect-scrollbar.scss +35 -0
- package/dist/styles/@core/scss/base/libs/vuetify/_index.scss +1 -0
- package/dist/styles/@core/scss/base/libs/vuetify/_overrides.scss +385 -0
- package/dist/styles/@core/scss/base/libs/vuetify/_variables.scss +48 -0
- package/dist/styles/@core/scss/base/placeholders/_default-layout-vertical-nav.scss +48 -0
- package/dist/styles/@core/scss/base/placeholders/_default-layout.scss +3 -0
- package/dist/styles/@core/scss/base/placeholders/_index.scss +5 -0
- package/dist/styles/@core/scss/base/placeholders/_misc.scss +7 -0
- package/dist/styles/@core/scss/base/placeholders/_nav.scss +26 -0
- package/dist/styles/@core/scss/base/placeholders/_vertical-nav.scss +84 -0
- package/dist/styles/@core/scss/base/skins/_bordered.scss +60 -0
- package/dist/styles/@core/scss/base/skins/_index.scss +1 -0
- package/dist/styles/@core/scss/template/_components.scss +1035 -0
- package/dist/styles/@core/scss/template/_default-layout-w-vertical-nav.scss +20 -0
- package/dist/styles/@core/scss/template/_utilities.scss +20 -0
- package/dist/styles/@core/scss/template/_variables.scss +67 -0
- package/dist/styles/@core/scss/template/_vertical-nav.scss +41 -0
- package/dist/styles/@core/scss/template/index.css +18764 -0
- package/dist/styles/@core/scss/template/index.scss +15 -0
- package/dist/styles/@core/scss/template/libs/apex-chart.css +90 -0
- package/dist/styles/@core/scss/template/libs/apex-chart.scss +99 -0
- package/dist/styles/@core/scss/template/libs/shepherd.css +82 -0
- package/dist/styles/@core/scss/template/libs/shepherd.scss +88 -0
- package/dist/styles/@core/scss/template/libs/vuetify/_variables.scss +461 -0
- package/dist/styles/@core/scss/template/libs/vuetify/index.css +741 -0
- package/dist/styles/@core/scss/template/libs/vuetify/index.scss +1 -0
- package/dist/styles/@core/scss/template/pages/misc.css +16 -0
- package/dist/styles/@core/scss/template/pages/misc.scss +20 -0
- package/dist/styles/@core/scss/template/placeholders/_default-layout-vertical-nav.scss +9 -0
- package/dist/styles/@core/scss/template/placeholders/_index.scss +3 -0
- package/dist/styles/@core/scss/template/placeholders/_nav.scss +15 -0
- package/dist/styles/@core/scss/template/placeholders/_vertical-nav.scss +18 -0
- package/dist/styles/@core/scss/template/skins/_bordered.scss +36 -0
- package/dist/styles/@core/scss/template/skins/_index.scss +1 -0
- package/dist/styles/@layouts/styles/_classes.scss +3 -0
- package/dist/styles/@layouts/styles/_dashboard-layout.scss +43 -0
- package/dist/styles/@layouts/styles/_global.scss +10 -0
- package/dist/styles/@layouts/styles/_mixins.scss +28 -0
- package/dist/styles/@layouts/styles/_placeholders.scss +53 -0
- package/dist/styles/@layouts/styles/_rtl.scss +7 -0
- package/dist/styles/@layouts/styles/_variables.scss +22 -0
- package/dist/styles/@layouts/styles/index.css +14 -0
- package/dist/styles/@layouts/styles/index.scss +2 -0
- package/dist/styles/assets/scss/styles.css +16099 -0
- package/dist/styles/assets/scss/styles.scss +246 -0
- package/dist/styles/assets/scss/variables/_template.scss +1 -0
- package/dist/styles/assets/scss/variables/_vuetify.scss +1 -0
- package/dist/types.d.ts +226 -0
- package/dist/utils/apiUrl.d.ts +1 -0
- package/dist/utils/apiUrl.js +15 -0
- package/dist/utils/apiUrl.mjs +8 -0
- package/dist/utils/client.d.ts +9 -0
- package/dist/utils/client.js +39 -0
- package/dist/utils/client.mjs +25 -0
- package/dist/utils/files.d.ts +2 -0
- package/dist/utils/files.js +35 -0
- package/dist/utils/files.mjs +22 -0
- package/dist/utils/formValidation.d.ts +7 -0
- package/dist/utils/formValidation.js +20 -0
- package/dist/utils/formValidation.mjs +13 -0
- package/dist/utils/formatters.d.ts +12 -0
- package/dist/utils/formatters.js +84 -0
- package/dist/utils/formatters.mjs +56 -0
- package/dist/utils/index.d.ts +9 -0
- package/dist/utils/index.js +104 -0
- package/dist/utils/index.mjs +9 -0
- package/dist/utils/queryParams.d.ts +4 -0
- package/dist/utils/queryParams.js +26 -0
- package/dist/utils/queryParams.mjs +18 -0
- package/dist/utils/ruleValidator.d.ts +28 -0
- package/dist/utils/ruleValidator.js +158 -0
- package/dist/utils/ruleValidator.mjs +144 -0
- package/dist/utils/toaster.d.ts +12 -0
- package/dist/utils/toaster.js +71 -0
- package/dist/utils/toaster.mjs +59 -0
- package/dist/utils/utils.d.ts +8 -0
- package/dist/utils/utils.js +70 -0
- package/dist/utils/utils.mjs +56 -0
- package/package.json +79 -0
- package/src/styles/@core/scss/base/_components.scss +164 -0
- package/src/styles/@core/scss/base/_dark.scss +16 -0
- package/src/styles/@core/scss/base/_default-layout-w-vertical-nav.scss +106 -0
- package/src/styles/@core/scss/base/_default-layout.scss +16 -0
- package/src/styles/@core/scss/base/_index.scss +47 -0
- package/src/styles/@core/scss/base/_layouts.scss +63 -0
- package/src/styles/@core/scss/base/_misc.scss +20 -0
- package/src/styles/@core/scss/base/_mixins.scss +84 -0
- package/src/styles/@core/scss/base/_route-transitions.scss +70 -0
- package/src/styles/@core/scss/base/_utilities.scss +418 -0
- package/src/styles/@core/scss/base/_utils.scss +100 -0
- package/src/styles/@core/scss/base/_variables.scss +190 -0
- package/src/styles/@core/scss/base/_vertical-nav.scss +264 -0
- package/src/styles/@core/scss/base/libs/_perfect-scrollbar.scss +35 -0
- package/src/styles/@core/scss/base/libs/vuetify/_index.scss +1 -0
- package/src/styles/@core/scss/base/libs/vuetify/_overrides.scss +385 -0
- package/src/styles/@core/scss/base/libs/vuetify/_variables.scss +48 -0
- package/src/styles/@core/scss/base/placeholders/_default-layout-vertical-nav.scss +48 -0
- package/src/styles/@core/scss/base/placeholders/_default-layout.scss +3 -0
- package/src/styles/@core/scss/base/placeholders/_index.scss +5 -0
- package/src/styles/@core/scss/base/placeholders/_misc.scss +7 -0
- package/src/styles/@core/scss/base/placeholders/_nav.scss +26 -0
- package/src/styles/@core/scss/base/placeholders/_vertical-nav.scss +84 -0
- package/src/styles/@core/scss/base/skins/_bordered.scss +60 -0
- package/src/styles/@core/scss/base/skins/_index.scss +1 -0
- package/src/styles/@core/scss/template/_components.scss +1035 -0
- package/src/styles/@core/scss/template/_default-layout-w-vertical-nav.scss +20 -0
- package/src/styles/@core/scss/template/_utilities.scss +20 -0
- package/src/styles/@core/scss/template/_variables.scss +67 -0
- package/src/styles/@core/scss/template/_vertical-nav.scss +41 -0
- package/src/styles/@core/scss/template/index.scss +15 -0
- package/src/styles/@core/scss/template/libs/apex-chart.scss +99 -0
- package/src/styles/@core/scss/template/libs/shepherd.scss +88 -0
- package/src/styles/@core/scss/template/libs/vuetify/_variables.scss +461 -0
- package/src/styles/@core/scss/template/libs/vuetify/index.scss +1 -0
- package/src/styles/@core/scss/template/pages/misc.scss +20 -0
- package/src/styles/@core/scss/template/placeholders/_default-layout-vertical-nav.scss +9 -0
- package/src/styles/@core/scss/template/placeholders/_index.scss +3 -0
- package/src/styles/@core/scss/template/placeholders/_nav.scss +15 -0
- package/src/styles/@core/scss/template/placeholders/_vertical-nav.scss +18 -0
- package/src/styles/@core/scss/template/skins/_bordered.scss +36 -0
- package/src/styles/@core/scss/template/skins/_index.scss +1 -0
- package/src/styles/@layouts/styles/_classes.scss +3 -0
- package/src/styles/@layouts/styles/_dashboard-layout.scss +43 -0
- package/src/styles/@layouts/styles/_global.scss +10 -0
- package/src/styles/@layouts/styles/_mixins.scss +28 -0
- package/src/styles/@layouts/styles/_placeholders.scss +53 -0
- package/src/styles/@layouts/styles/_rtl.scss +7 -0
- package/src/styles/@layouts/styles/_variables.scss +22 -0
- package/src/styles/@layouts/styles/index.scss +2 -0
- package/src/styles/assets/scss/styles.scss +246 -0
- package/src/styles/assets/scss/variables/_template.scss +1 -0
- package/src/styles/assets/scss/variables/_vuetify.scss +1 -0
|
@@ -0,0 +1,741 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/*
|
|
3
|
+
TODO: Add docs on when to use placeholder vs when to use SASS variable
|
|
4
|
+
|
|
5
|
+
Placeholder
|
|
6
|
+
- When we want to keep customization to our self between templates use it
|
|
7
|
+
|
|
8
|
+
Variables
|
|
9
|
+
- When we want to allow customization from both user and our side
|
|
10
|
+
- You can also use variable for consistency (e.g. mx 1 rem should be applied to both vertical nav items and vertical nav header)
|
|
11
|
+
*/
|
|
12
|
+
/*
|
|
13
|
+
❗ Heads up
|
|
14
|
+
==================
|
|
15
|
+
Here we assume we will always use shorthand property which will apply same padding on four side
|
|
16
|
+
This is because this have been used as value of top property by `.popper-content`
|
|
17
|
+
*/
|
|
18
|
+
.text-xs {
|
|
19
|
+
font-size: 0.6875rem;
|
|
20
|
+
line-height: 0.9375rem;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.text-sm {
|
|
24
|
+
font-size: 0.8125rem;
|
|
25
|
+
line-height: 1.25rem;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.text-base {
|
|
29
|
+
font-size: 0.9375rem;
|
|
30
|
+
line-height: 1.3125rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.text-lg {
|
|
34
|
+
font-size: 1.125rem;
|
|
35
|
+
line-height: 1.5rem;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.text-xl {
|
|
39
|
+
font-size: 1.375rem;
|
|
40
|
+
line-height: 1.875rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.text-2xl {
|
|
44
|
+
font-size: 1.625rem;
|
|
45
|
+
line-height: 2.25rem;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.text-3xl {
|
|
49
|
+
font-size: 2rem;
|
|
50
|
+
line-height: 2.75rem;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.text-4xl {
|
|
54
|
+
font-size: 2.375rem;
|
|
55
|
+
line-height: 3.25rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.text-5xl {
|
|
59
|
+
font-size: 3rem;
|
|
60
|
+
line-height: 1;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.text-6xl {
|
|
64
|
+
font-size: 3.5rem;
|
|
65
|
+
line-height: 1;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.text-7xl {
|
|
69
|
+
font-size: 4rem;
|
|
70
|
+
line-height: 1;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.text-8xl {
|
|
74
|
+
font-size: 4.5rem;
|
|
75
|
+
line-height: 1;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.text-9xl {
|
|
79
|
+
font-size: 5.25rem;
|
|
80
|
+
line-height: 1;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.truncate {
|
|
84
|
+
overflow: hidden;
|
|
85
|
+
text-overflow: ellipsis;
|
|
86
|
+
white-space: nowrap;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.gap-0 {
|
|
90
|
+
gap: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.gap-x-0 {
|
|
94
|
+
column-gap: 0;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.gap-y-0 {
|
|
98
|
+
row-gap: 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.gap-1 {
|
|
102
|
+
gap: 0.25rem;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.gap-x-1 {
|
|
106
|
+
column-gap: 0.25rem;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.gap-y-1 {
|
|
110
|
+
row-gap: 0.25rem;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.gap-2 {
|
|
114
|
+
gap: 0.5rem;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.gap-x-2 {
|
|
118
|
+
column-gap: 0.5rem;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.gap-y-2 {
|
|
122
|
+
row-gap: 0.5rem;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.gap-3 {
|
|
126
|
+
gap: 0.75rem;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.gap-x-3 {
|
|
130
|
+
column-gap: 0.75rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.gap-y-3 {
|
|
134
|
+
row-gap: 0.75rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.gap-4 {
|
|
138
|
+
gap: 1rem;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.gap-x-4 {
|
|
142
|
+
column-gap: 1rem;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.gap-y-4 {
|
|
146
|
+
row-gap: 1rem;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.gap-5 {
|
|
150
|
+
gap: 1.25rem;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.gap-x-5 {
|
|
154
|
+
column-gap: 1.25rem;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.gap-y-5 {
|
|
158
|
+
row-gap: 1.25rem;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.gap-6 {
|
|
162
|
+
gap: 1.5rem;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.gap-x-6 {
|
|
166
|
+
column-gap: 1.5rem;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.gap-y-6 {
|
|
170
|
+
row-gap: 1.5rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.gap-7 {
|
|
174
|
+
gap: 1.75rem;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.gap-x-7 {
|
|
178
|
+
column-gap: 1.75rem;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.gap-y-7 {
|
|
182
|
+
row-gap: 1.75rem;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.gap-8 {
|
|
186
|
+
gap: 2rem;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.gap-x-8 {
|
|
190
|
+
column-gap: 2rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.gap-y-8 {
|
|
194
|
+
row-gap: 2rem;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.gap-9 {
|
|
198
|
+
gap: 2.25rem;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.gap-x-9 {
|
|
202
|
+
column-gap: 2.25rem;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.gap-y-9 {
|
|
206
|
+
row-gap: 2.25rem;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.gap-10 {
|
|
210
|
+
gap: 2.5rem;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.gap-x-10 {
|
|
214
|
+
column-gap: 2.5rem;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.gap-y-10 {
|
|
218
|
+
row-gap: 2.5rem;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.gap-11 {
|
|
222
|
+
gap: 2.75rem;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.gap-x-11 {
|
|
226
|
+
column-gap: 2.75rem;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.gap-y-11 {
|
|
230
|
+
row-gap: 2.75rem;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.gap-12 {
|
|
234
|
+
gap: 3rem;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.gap-x-12 {
|
|
238
|
+
column-gap: 3rem;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.gap-y-12 {
|
|
242
|
+
row-gap: 3rem;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.gap-14 {
|
|
246
|
+
gap: 3.5rem;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.gap-x-14 {
|
|
250
|
+
column-gap: 3.5rem;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.gap-y-14 {
|
|
254
|
+
row-gap: 3.5rem;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.gap-16 {
|
|
258
|
+
gap: 4rem;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.gap-x-16 {
|
|
262
|
+
column-gap: 4rem;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.gap-y-16 {
|
|
266
|
+
row-gap: 4rem;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.gap-20 {
|
|
270
|
+
gap: 5rem;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.gap-x-20 {
|
|
274
|
+
column-gap: 5rem;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.gap-y-20 {
|
|
278
|
+
row-gap: 5rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.gap-24 {
|
|
282
|
+
gap: 6rem;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.gap-x-24 {
|
|
286
|
+
column-gap: 6rem;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.gap-y-24 {
|
|
290
|
+
row-gap: 6rem;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.gap-28 {
|
|
294
|
+
gap: 7rem;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.gap-x-28 {
|
|
298
|
+
column-gap: 7rem;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.gap-y-28 {
|
|
302
|
+
row-gap: 7rem;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.gap-32 {
|
|
306
|
+
gap: 8rem;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.gap-x-32 {
|
|
310
|
+
column-gap: 8rem;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.gap-y-32 {
|
|
314
|
+
row-gap: 8rem;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.gap-36 {
|
|
318
|
+
gap: 9rem;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.gap-x-36 {
|
|
322
|
+
column-gap: 9rem;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.gap-y-36 {
|
|
326
|
+
row-gap: 9rem;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.gap-40 {
|
|
330
|
+
gap: 10rem;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.gap-x-40 {
|
|
334
|
+
column-gap: 10rem;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.gap-y-40 {
|
|
338
|
+
row-gap: 10rem;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.gap-44 {
|
|
342
|
+
gap: 11rem;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.gap-x-44 {
|
|
346
|
+
column-gap: 11rem;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.gap-y-44 {
|
|
350
|
+
row-gap: 11rem;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.gap-48 {
|
|
354
|
+
gap: 12rem;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.gap-x-48 {
|
|
358
|
+
column-gap: 12rem;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.gap-y-48 {
|
|
362
|
+
row-gap: 12rem;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.gap-52 {
|
|
366
|
+
gap: 13rem;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.gap-x-52 {
|
|
370
|
+
column-gap: 13rem;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.gap-y-52 {
|
|
374
|
+
row-gap: 13rem;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.gap-56 {
|
|
378
|
+
gap: 14rem;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.gap-x-56 {
|
|
382
|
+
column-gap: 14rem;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.gap-y-56 {
|
|
386
|
+
row-gap: 14rem;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.gap-60 {
|
|
390
|
+
gap: 15rem;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.gap-x-60 {
|
|
394
|
+
column-gap: 15rem;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.gap-y-60 {
|
|
398
|
+
row-gap: 15rem;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.gap-64 {
|
|
402
|
+
gap: 16rem;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.gap-x-64 {
|
|
406
|
+
column-gap: 16rem;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.gap-y-64 {
|
|
410
|
+
row-gap: 16rem;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.gap-72 {
|
|
414
|
+
gap: 18rem;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.gap-x-72 {
|
|
418
|
+
column-gap: 18rem;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.gap-y-72 {
|
|
422
|
+
row-gap: 18rem;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.gap-80 {
|
|
426
|
+
gap: 20rem;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.gap-x-80 {
|
|
430
|
+
column-gap: 20rem;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.gap-y-80 {
|
|
434
|
+
row-gap: 20rem;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.gap-96 {
|
|
438
|
+
gap: 24rem;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.gap-x-96 {
|
|
442
|
+
column-gap: 24rem;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.gap-y-96 {
|
|
446
|
+
row-gap: 24rem;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.list-none {
|
|
450
|
+
list-style-type: none;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.v-application__wrap {
|
|
454
|
+
/* stylelint-disable-next-line liberty/use-logical-spec */
|
|
455
|
+
min-height: calc(var(--vh, 1vh) * 100);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
h1,
|
|
459
|
+
h2,
|
|
460
|
+
h3,
|
|
461
|
+
h4,
|
|
462
|
+
h5,
|
|
463
|
+
h6,
|
|
464
|
+
.text-h1,
|
|
465
|
+
.text-h2,
|
|
466
|
+
.text-h3,
|
|
467
|
+
.text-h4,
|
|
468
|
+
.text-h5,
|
|
469
|
+
.text-h6,
|
|
470
|
+
.text-button,
|
|
471
|
+
.text-overline,
|
|
472
|
+
.v-card-title {
|
|
473
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.v-application,
|
|
477
|
+
.text-body-1,
|
|
478
|
+
.text-body-2,
|
|
479
|
+
.text-subtitle-1,
|
|
480
|
+
.text-subtitle-2 {
|
|
481
|
+
color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity));
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.v-row .v-col .v-input__details,
|
|
485
|
+
.v-row [class^="v-col-*"] .v-input__details {
|
|
486
|
+
margin-block-end: 0;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.v-btn--disabled {
|
|
490
|
+
opacity: 0.65;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.v-btn--density-compact.v-btn--size-default .v-btn__content > svg {
|
|
494
|
+
block-size: 22px;
|
|
495
|
+
font-size: 22px;
|
|
496
|
+
inline-size: 22px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.v-card-subtitle {
|
|
500
|
+
color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity));
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.v-card-text + .v-card-text {
|
|
504
|
+
padding-block-start: 0 !important;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/*
|
|
508
|
+
Checkbox & Radio Ripple
|
|
509
|
+
|
|
510
|
+
TODO Checkbox and switch component. Remove it when vuetify resolve the extra spacing: https://github.com/vuetifyjs/vuetify/issues/15519
|
|
511
|
+
We need this because form elements likes checkbox and switches are by default set to height of textfield height which is way big than we want
|
|
512
|
+
Tested with checkbox & switches
|
|
513
|
+
*/
|
|
514
|
+
.v-checkbox.v-input,
|
|
515
|
+
.v-switch.v-input {
|
|
516
|
+
--v-input-control-height: auto;
|
|
517
|
+
flex: unset;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.v-selection-control--density-comfortable.v-checkbox-btn .v-selection-control__wrapper, .v-selection-control--density-comfortable.v-radio .v-selection-control__wrapper, .v-selection-control--density-comfortable.v-radio-btn .v-selection-control__wrapper {
|
|
521
|
+
margin-inline-start: -0.5625rem;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.v-selection-control--density-compact.v-radio .v-selection-control__wrapper, .v-selection-control--density-compact.v-radio-btn .v-selection-control__wrapper, .v-selection-control--density-compact.v-checkbox-btn .v-selection-control__wrapper {
|
|
525
|
+
margin-inline-start: -0.3125rem;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.v-selection-control--density-default.v-checkbox-btn .v-selection-control__wrapper, .v-selection-control--density-default.v-radio .v-selection-control__wrapper, .v-selection-control--density-default.v-radio-btn .v-selection-control__wrapper {
|
|
529
|
+
margin-inline-start: -0.6875rem;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.v-radio-group .v-selection-control-group .v-radio:not(:last-child) {
|
|
533
|
+
margin-inline-end: 0.9rem;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
/*
|
|
537
|
+
Tabs
|
|
538
|
+
Disable tab transition
|
|
539
|
+
|
|
540
|
+
This is for tabs where we don't have card wrapper to tabs and have multiple cards as tab content.
|
|
541
|
+
|
|
542
|
+
This class will disable transition and adds `overflow: unset` on `VWindow` to allow spreading shadow
|
|
543
|
+
*/
|
|
544
|
+
.disable-tab-transition {
|
|
545
|
+
overflow: unset !important;
|
|
546
|
+
}
|
|
547
|
+
.disable-tab-transition .v-window__container {
|
|
548
|
+
block-size: auto !important;
|
|
549
|
+
}
|
|
550
|
+
.disable-tab-transition .v-window-item:not(.v-window-item--active) {
|
|
551
|
+
display: none !important;
|
|
552
|
+
}
|
|
553
|
+
.disable-tab-transition .v-window__container .v-window-item {
|
|
554
|
+
transform: none !important;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.v-list .v-list-item__prepend > .v-icon,
|
|
558
|
+
.v-list .v-list-item__append > .v-icon {
|
|
559
|
+
opacity: 1;
|
|
560
|
+
}
|
|
561
|
+
.v-list .v-list-item:not(.v-list-item--active):hover {
|
|
562
|
+
background: rgb(var(--v-theme-gray-200)) !important;
|
|
563
|
+
}
|
|
564
|
+
.v-list .v-list-item:not(.v-list-item--active):hover .v-list-item__overlay {
|
|
565
|
+
opacity: 0;
|
|
566
|
+
}
|
|
567
|
+
.v-list .v-list-item:not(.v-list-item--active):hover .v-list-item__content {
|
|
568
|
+
color: rgb(var(--v-theme-on-primary)) !important;
|
|
569
|
+
}
|
|
570
|
+
.v-list .v-list-item:not(.v-list-item--active):hover .v-list-item__content .v-list-item-title {
|
|
571
|
+
color: rgb(var(--v-theme-on-primary)) !important;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/*
|
|
575
|
+
ℹ️ Custom class
|
|
576
|
+
|
|
577
|
+
Remove list spacing inside card
|
|
578
|
+
|
|
579
|
+
This is because card title gets padding of 20px and list item have padding of 16px. Moreover, list container have padding-bottom as well.
|
|
580
|
+
*/
|
|
581
|
+
.card-list {
|
|
582
|
+
--v-card-list-gap: 20px;
|
|
583
|
+
}
|
|
584
|
+
.card-list.v-list {
|
|
585
|
+
padding-block: 0;
|
|
586
|
+
}
|
|
587
|
+
.card-list .v-list-item {
|
|
588
|
+
min-block-size: unset;
|
|
589
|
+
min-block-size: auto !important;
|
|
590
|
+
padding-block: 0 !important;
|
|
591
|
+
padding-inline: 0 !important;
|
|
592
|
+
}
|
|
593
|
+
.card-list .v-list-item > .v-ripple__container {
|
|
594
|
+
opacity: 0;
|
|
595
|
+
}
|
|
596
|
+
.card-list .v-list-item:not(:last-child) {
|
|
597
|
+
padding-block-end: var(--v-card-list-gap) !important;
|
|
598
|
+
}
|
|
599
|
+
.card-list .v-list-item:hover > .v-list-item__overlay,
|
|
600
|
+
.card-list .v-list-item:focus > .v-list-item__overlay,
|
|
601
|
+
.card-list .v-list-item:active > .v-list-item__overlay,
|
|
602
|
+
.card-list .v-list-item.active > .v-list-item__overlay {
|
|
603
|
+
opacity: 0 !important;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.v-divider {
|
|
607
|
+
color: rgb(var(--v-border-color));
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.v-data-table {
|
|
611
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
612
|
+
font-size: 13px;
|
|
613
|
+
}
|
|
614
|
+
.v-data-table .v-checkbox-btn .v-selection-control__wrapper {
|
|
615
|
+
margin-inline-start: 0 !important;
|
|
616
|
+
}
|
|
617
|
+
.v-data-table .v-selection-control {
|
|
618
|
+
display: flex !important;
|
|
619
|
+
}
|
|
620
|
+
.v-data-table .v-pagination {
|
|
621
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.v-data-table-footer {
|
|
625
|
+
margin-block-start: 1rem;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.v-field:hover .v-field__outline {
|
|
629
|
+
--v-field-border-opacity: var(--v-medium-emphasis-opacity);
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.v-label {
|
|
633
|
+
opacity: 1 !important;
|
|
634
|
+
}
|
|
635
|
+
.v-label:not(.v-field-label--floating) {
|
|
636
|
+
color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity));
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.v-overlay__scrim {
|
|
640
|
+
background: rgba(var(--v-overlay-scrim-background), var(--v-overlay-scrim-opacity)) !important;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.v-messages {
|
|
644
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
645
|
+
opacity: 1;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.v-alert__close .v-btn--icon .v-icon {
|
|
649
|
+
--v-icon-size-multiplier: 1.5;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.v-badge__badge {
|
|
653
|
+
display: flex;
|
|
654
|
+
align-items: center;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.v-btn:focus-visible::after {
|
|
658
|
+
opacity: 0 !important;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.v-input:not(.v-select--chips) .v-select__selection .v-chip {
|
|
662
|
+
margin-block: 2px var(--select-chips-margin-bottom);
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.v-list-item-subtitle {
|
|
666
|
+
color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity));
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.v-field__input {
|
|
670
|
+
height: 40px;
|
|
671
|
+
font-size: 13px !important;
|
|
672
|
+
}
|
|
673
|
+
.v-field__input input::placeholder,
|
|
674
|
+
input.v-field__input::placeholder,
|
|
675
|
+
textarea.v-field__input::placeholder {
|
|
676
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) !important;
|
|
677
|
+
opacity: 1 !important;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.v-autocomplete--multiple .v-field__input {
|
|
681
|
+
height: auto;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
input::-webkit-outer-spin-button,
|
|
685
|
+
input::-webkit-inner-spin-button {
|
|
686
|
+
-webkit-appearance: none;
|
|
687
|
+
margin: 0;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.app-autocomplete__content,
|
|
691
|
+
.app-inner-list,
|
|
692
|
+
.v-autocomplete__content {
|
|
693
|
+
box-shadow: 0 0px 9px rgba(var(--v-shadow-key-umbra-color), 0.3), 0 0 transparent, 0 0 transparent !important;
|
|
694
|
+
}
|
|
695
|
+
.app-autocomplete__content .v-list-item .v-list-item-title,
|
|
696
|
+
.app-inner-list .v-list-item .v-list-item-title,
|
|
697
|
+
.v-autocomplete__content .v-list-item .v-list-item-title {
|
|
698
|
+
font-size: 13px !important;
|
|
699
|
+
text-transform: capitalize !important;
|
|
700
|
+
}
|
|
701
|
+
.app-autocomplete__content .v-list-item.v-list-item--active,
|
|
702
|
+
.app-inner-list .v-list-item.v-list-item--active,
|
|
703
|
+
.v-autocomplete__content .v-list-item.v-list-item--active {
|
|
704
|
+
background: rgb(var(--v-nav-background)) !important;
|
|
705
|
+
color: rgb(var(--v-theme-on-primary)) !important;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.v-card--variant-elevated {
|
|
709
|
+
box-shadow: 0 0 18px rgba(var(--v-shadow-key-umbra-color), 0.12), 0 0 transparent, 0 0 transparent !important;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.otp-input .v-field__input {
|
|
713
|
+
direction: ltr !important;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.v-input--disabled .v-input__control .v-field__field {
|
|
717
|
+
border: 1px solid rgba(var(--v-border-color), var(--v-border-opacity)) !important;
|
|
718
|
+
border-radius: inherit !important;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.v-messages[role=alert] {
|
|
722
|
+
color: rgb(var(--v-theme-error)) !important;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.v-input--disabled .v-input__details {
|
|
726
|
+
opacity: 1 !important;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.v-field__input {
|
|
730
|
+
padding-top: 2px !important;
|
|
731
|
+
padding-bottom: 2px !important;
|
|
732
|
+
}
|
|
733
|
+
.v-field__input input {
|
|
734
|
+
margin-top: 3px !important;
|
|
735
|
+
margin-bottom: 2px !important;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.v-input__details {
|
|
739
|
+
min-height: 10px !important;
|
|
740
|
+
padding-top: 3px !important;
|
|
741
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@use '../../../base/libs/vuetify';
|