@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,164 @@
|
|
|
1
|
+
@use 'mixins';
|
|
2
|
+
@use '../../../@layouts/styles/placeholders';
|
|
3
|
+
@use '../../../assets/scss/variables/template' as variables;
|
|
4
|
+
|
|
5
|
+
// Avatar group
|
|
6
|
+
.v-avatar-group {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
|
|
10
|
+
> * {
|
|
11
|
+
&:not(:first-child) {
|
|
12
|
+
margin-inline-start: -0.8rem;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
transition: transform 0.25s ease, box-shadow 0.15s ease;
|
|
16
|
+
|
|
17
|
+
&:hover {
|
|
18
|
+
z-index: 2;
|
|
19
|
+
transform: translateY(-5px) scale(1.05);
|
|
20
|
+
|
|
21
|
+
@include mixins.elevation(3);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
> .v-avatar {
|
|
26
|
+
border: 2px solid rgb(var(--v-theme-surface));
|
|
27
|
+
transition: transform 0.15s ease;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// Button outline with default color border color
|
|
32
|
+
.v-alert--variant-outlined,
|
|
33
|
+
.v-avatar--variant-outlined,
|
|
34
|
+
.v-btn.v-btn--variant-outlined,
|
|
35
|
+
.v-card--variant-outlined,
|
|
36
|
+
.v-chip--variant-outlined,
|
|
37
|
+
.v-list-item--variant-outlined {
|
|
38
|
+
&:not([class*='text-']) {
|
|
39
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.text-default {
|
|
43
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Custom Input
|
|
48
|
+
.v-label.custom-input {
|
|
49
|
+
padding: 1rem;
|
|
50
|
+
border: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
51
|
+
opacity: 1;
|
|
52
|
+
white-space: normal;
|
|
53
|
+
height: auto;
|
|
54
|
+
|
|
55
|
+
&:hover {
|
|
56
|
+
border-color: rgba(var(--v-border-color), 0.25);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.active {
|
|
60
|
+
border-color: rgb(var(--v-theme-primary));
|
|
61
|
+
|
|
62
|
+
.v-icon {
|
|
63
|
+
color: rgb(var(--v-theme-primary)) !important;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// Dialog responsive width
|
|
69
|
+
.v-dialog {
|
|
70
|
+
// dialog custom close btn
|
|
71
|
+
.v-dialog-close-btn {
|
|
72
|
+
position: absolute;
|
|
73
|
+
z-index: 1;
|
|
74
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) !important;
|
|
75
|
+
inset-block-start: 0.9375rem;
|
|
76
|
+
inset-inline-end: 0.9375rem;
|
|
77
|
+
|
|
78
|
+
.v-btn__overlay {
|
|
79
|
+
display: none;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.v-card {
|
|
84
|
+
@extend %style-scroll-bar;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@media (min-width: 600px) {
|
|
89
|
+
.v-dialog {
|
|
90
|
+
&.v-dialog-sm,
|
|
91
|
+
&.v-dialog-lg,
|
|
92
|
+
&.v-dialog-xl {
|
|
93
|
+
.v-overlay__content {
|
|
94
|
+
inline-size: 565px !important;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@media (min-width: 960px) {
|
|
101
|
+
.v-dialog {
|
|
102
|
+
&.v-dialog-lg,
|
|
103
|
+
&.v-dialog-xl {
|
|
104
|
+
.v-overlay__content {
|
|
105
|
+
inline-size: 865px !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@media (min-width: 1264px) {
|
|
112
|
+
.v-dialog.v-dialog-xl {
|
|
113
|
+
.v-overlay__content {
|
|
114
|
+
inline-size: 1165px !important;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// v-tab with pill support
|
|
120
|
+
|
|
121
|
+
.v-tabs.v-tabs-pill {
|
|
122
|
+
.v-tab.v-btn {
|
|
123
|
+
border-radius: 6px !important;
|
|
124
|
+
transition: none;
|
|
125
|
+
|
|
126
|
+
&:not(.v-tab--selected):hover {
|
|
127
|
+
background-color: rgb(var(--v-theme-gray-200));
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.v-tab__slider {
|
|
131
|
+
visibility: hidden;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// loop for all colors bg
|
|
137
|
+
@each $color-name in variables.$theme-colors-name {
|
|
138
|
+
.v-tabs.v-tabs-pill {
|
|
139
|
+
.v-slide-group-item--active.v-tab--selected.text-#{$color-name} {
|
|
140
|
+
background-color: rgb(var(--v-theme-#{$color-name}));
|
|
141
|
+
color: rgb(var(--v-theme-on-#{$color-name})) !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
&:not(.v-tab--selected) {
|
|
145
|
+
button {
|
|
146
|
+
background-color: rgb(var(--v-theme-#{gray-100}));
|
|
147
|
+
color: rgb(var(--v-theme-on-#{gray-100})) !important;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.v-tabs.v-tabs-pill .v-slide-group-item--active.v-tab--selected.text-primary {
|
|
154
|
+
color: rgb(var(--v-theme-button-on-primary)) !important;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// ℹ️ We are make even width of all v-timeline body
|
|
158
|
+
.v-timeline--vertical.v-timeline {
|
|
159
|
+
.v-timeline-item {
|
|
160
|
+
.v-timeline-item__body {
|
|
161
|
+
justify-self: stretch !important;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@use '../../../assets/scss/variables/template' as variables;
|
|
2
|
+
|
|
3
|
+
// ————————————————————————————————————
|
|
4
|
+
// * ——— Perfect Scrollbar
|
|
5
|
+
// ————————————————————————————————————
|
|
6
|
+
|
|
7
|
+
.v-application.v-theme--dark {
|
|
8
|
+
.ps__rail-y,
|
|
9
|
+
.ps__rail-x {
|
|
10
|
+
background-color: transparent !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ps__thumb-y {
|
|
14
|
+
background-color: variables.$plugin-ps-thumb-y-dark;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
@use '../../../assets/scss/variables/template' as variables;
|
|
2
|
+
@use 'placeholders' as *;
|
|
3
|
+
@use '../template/placeholders' as *;
|
|
4
|
+
@use 'misc';
|
|
5
|
+
@use 'mixins';
|
|
6
|
+
|
|
7
|
+
$header: '.layout-navbar';
|
|
8
|
+
|
|
9
|
+
@if variables.$layout-vertical-nav-navbar-is-contained {
|
|
10
|
+
$header: '.layout-navbar .navbar-content-container';
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.layout-wrapper.layout-nav-type-vertical {
|
|
14
|
+
// SECTION Layout Navbar
|
|
15
|
+
// Elevated navbar
|
|
16
|
+
@if variables.$vertical-nav-navbar-style == 'elevated' {
|
|
17
|
+
// Add transition
|
|
18
|
+
#{$header} {
|
|
19
|
+
transition: padding 0.2s ease, background-color 0.18s ease;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// If navbar is contained => Add border radius to header
|
|
23
|
+
@if variables.$layout-vertical-nav-navbar-is-contained {
|
|
24
|
+
#{$header} {
|
|
25
|
+
border-radius: 0
|
|
26
|
+
0
|
|
27
|
+
variables.$default-layout-with-vertical-nav-navbar-footer-roundness
|
|
28
|
+
variables.$default-layout-with-vertical-nav-navbar-footer-roundness;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Scrolled styles for sticky navbar
|
|
33
|
+
@at-root {
|
|
34
|
+
/* ℹ️ This html selector with not selector is required when:
|
|
35
|
+
dialog is opened and window don't have any scroll. This removes window-scrolled class from layout and out style broke
|
|
36
|
+
*/
|
|
37
|
+
html.v-overlay-scroll-blocked:not([style*='--v-body-scroll-y:0px;']) .layout-navbar-sticky,
|
|
38
|
+
&.window-scrolled.layout-navbar-sticky {
|
|
39
|
+
#{$header} {
|
|
40
|
+
@extend %default-layout-vertical-nav-scrolled-sticky-elevated-nav;
|
|
41
|
+
@extend %default-layout-vertical-nav-floating-navbar-and-sticky-elevated-navbar-scrolled;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.navbar-blur#{$header} {
|
|
45
|
+
@extend %blurry-bg;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Floating navbar
|
|
52
|
+
@else if variables.$vertical-nav-navbar-style == 'floating' {
|
|
53
|
+
// ℹ️ Regardless of navbar is contained or not => Apply overlay to .layout-navbar
|
|
54
|
+
.layout-navbar {
|
|
55
|
+
&.navbar-blur {
|
|
56
|
+
@extend %default-layout-vertical-nav-floating-navbar-overlay;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&:not(.layout-navbar-sticky) {
|
|
61
|
+
#{$header} {
|
|
62
|
+
margin-block-start: variables.$vertical-nav-floating-navbar-top;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#{$header} {
|
|
67
|
+
@if variables.$layout-vertical-nav-navbar-is-contained {
|
|
68
|
+
border-radius: variables.$default-layout-with-vertical-nav-navbar-footer-roundness;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
background-color: rgb(var(--v-theme-surface));
|
|
72
|
+
|
|
73
|
+
@extend %default-layout-vertical-nav-floating-navbar-and-sticky-elevated-navbar-scrolled;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.navbar-blur#{$header} {
|
|
77
|
+
@extend %blurry-bg;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// !SECTION
|
|
82
|
+
|
|
83
|
+
// Layout footer
|
|
84
|
+
.layout-footer {
|
|
85
|
+
$ele-layout-footer: &;
|
|
86
|
+
|
|
87
|
+
.footer-content-container {
|
|
88
|
+
border-radius: variables.$default-layout-with-vertical-nav-navbar-footer-roundness
|
|
89
|
+
variables.$default-layout-with-vertical-nav-navbar-footer-roundness 0 0;
|
|
90
|
+
|
|
91
|
+
// Sticky footer
|
|
92
|
+
@at-root {
|
|
93
|
+
// ℹ️ .layout-footer-sticky#{$ele-layout-footer} => .layout-footer-sticky.layout-wrapper.layout-nav-type-vertical .layout-footer
|
|
94
|
+
.layout-footer-sticky#{$ele-layout-footer} {
|
|
95
|
+
.footer-content-container {
|
|
96
|
+
background-color: rgb(var(--v-theme-surface));
|
|
97
|
+
padding-block: 0;
|
|
98
|
+
padding-inline: 1.2rem;
|
|
99
|
+
|
|
100
|
+
@include mixins.elevation(3);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
// Layout
|
|
4
|
+
@use 'vertical-nav';
|
|
5
|
+
@use 'default-layout';
|
|
6
|
+
@use 'default-layout-w-vertical-nav';
|
|
7
|
+
|
|
8
|
+
// Layouts package
|
|
9
|
+
@use 'layouts';
|
|
10
|
+
|
|
11
|
+
// Skins
|
|
12
|
+
@use 'skins';
|
|
13
|
+
|
|
14
|
+
// Components
|
|
15
|
+
@use 'components';
|
|
16
|
+
|
|
17
|
+
// Utilities
|
|
18
|
+
@use 'utilities';
|
|
19
|
+
|
|
20
|
+
// Route Transitions
|
|
21
|
+
@use 'route-transitions';
|
|
22
|
+
|
|
23
|
+
// Misc
|
|
24
|
+
@use 'misc';
|
|
25
|
+
|
|
26
|
+
// Dark
|
|
27
|
+
@use 'dark';
|
|
28
|
+
|
|
29
|
+
// libs
|
|
30
|
+
@use 'libs/perfect-scrollbar';
|
|
31
|
+
|
|
32
|
+
a {
|
|
33
|
+
color: rgb(var(--v-theme-blue));
|
|
34
|
+
text-decoration: none;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Vuetify 3 don't provide margin bottom style like vuetify 2
|
|
39
|
+
p {
|
|
40
|
+
margin-block-end: 1rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Iconify icon size
|
|
44
|
+
svg.iconify {
|
|
45
|
+
block-size: 1em;
|
|
46
|
+
inline-size: 1em;
|
|
47
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
@use '../../../assets/scss/variables/template' as variables;
|
|
2
|
+
|
|
3
|
+
/* ℹ️ This styles extends the existing layout package's styles for handling cases that aren't related to layouts package */
|
|
4
|
+
|
|
5
|
+
/*
|
|
6
|
+
ℹ️ When we use v-layout as immediate first child of `.page-content-container`, it adds display:flex and page doesn't get contained height
|
|
7
|
+
*/
|
|
8
|
+
// .layout-wrapper.layout-nav-type-vertical {
|
|
9
|
+
// &.layout-content-height-fixed {
|
|
10
|
+
// .page-content-container {
|
|
11
|
+
// > .v-layout:first-child > :not(.v-navigation-drawer):first-child {
|
|
12
|
+
// flex-grow: 1;
|
|
13
|
+
// block-size: 100%;
|
|
14
|
+
// }
|
|
15
|
+
// }
|
|
16
|
+
// }
|
|
17
|
+
// }
|
|
18
|
+
.layout-wrapper.layout-nav-type-vertical {
|
|
19
|
+
&.layout-content-height-fixed {
|
|
20
|
+
.page-content-container {
|
|
21
|
+
> .v-layout:first-child {
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
min-block-size: 100%;
|
|
24
|
+
|
|
25
|
+
> .v-main {
|
|
26
|
+
// overflow-y: auto;
|
|
27
|
+
|
|
28
|
+
.v-main__wrap > :first-child {
|
|
29
|
+
block-size: 100%;
|
|
30
|
+
overflow-y: auto;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// ℹ️ Let div/v-layout take full height. E.g. Email App
|
|
39
|
+
.layout-wrapper.layout-nav-type-horizontal {
|
|
40
|
+
&.layout-content-height-fixed {
|
|
41
|
+
> .layout-page-content {
|
|
42
|
+
display: flex;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Floating navbar styles
|
|
48
|
+
@if variables.$vertical-nav-navbar-style == 'floating' {
|
|
49
|
+
// ℹ️ Add spacing above navbar if navbar is floating (was in %layout-navbar-sticky placeholder)
|
|
50
|
+
.layout-wrapper.layout-nav-type-vertical.layout-navbar-sticky {
|
|
51
|
+
.layout-navbar {
|
|
52
|
+
inset-block-start: variables.$vertical-nav-floating-navbar-top;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/*
|
|
56
|
+
ℹ️ If it's floating navbar
|
|
57
|
+
Add `vertical-nav-floating-navbar-top` as margin top to .layout-page-content
|
|
58
|
+
*/
|
|
59
|
+
.layout-page-content {
|
|
60
|
+
margin-block-start: variables.$vertical-nav-floating-navbar-top;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// ℹ️ scrollable-content allows creating fixed header and scrollable content for VNavigationDrawer (Used when perfect scrollbar is used)
|
|
2
|
+
.scrollable-content {
|
|
3
|
+
&.v-navigation-drawer {
|
|
4
|
+
.v-navigation-drawer__content {
|
|
5
|
+
display: flex;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// ℹ️ adding styling for code tag
|
|
13
|
+
code {
|
|
14
|
+
border-radius: 3px;
|
|
15
|
+
color: rgb(var(--v-code-color));
|
|
16
|
+
font-size: 90%;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
padding-block: 0.2em;
|
|
19
|
+
padding-inline: 0.4em;
|
|
20
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '../../../assets/scss/variables/vuetify.scss';
|
|
3
|
+
|
|
4
|
+
@mixin elevation($z, $important: false) {
|
|
5
|
+
box-shadow: map.get(vuetify.$shadow-key-umbra, $z), map.get(vuetify.$shadow-key-penumbra, $z),
|
|
6
|
+
map.get(vuetify.$shadow-key-ambient, $z) if($important, !important, null);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// ℹ️ This mixin is inspired from vuetify for adding hover styles via before pseudo element
|
|
10
|
+
@mixin before-pseudo() {
|
|
11
|
+
position: relative;
|
|
12
|
+
|
|
13
|
+
&::before {
|
|
14
|
+
position: absolute;
|
|
15
|
+
border-radius: inherit;
|
|
16
|
+
background: var(--v-hover-color);
|
|
17
|
+
block-size: 100%;
|
|
18
|
+
content: '';
|
|
19
|
+
inline-size: 100%;
|
|
20
|
+
inset: 0;
|
|
21
|
+
opacity: 0;
|
|
22
|
+
pointer-events: none;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@mixin bordered-skin($component, $border-property: 'border', $important: false) {
|
|
27
|
+
#{$component} {
|
|
28
|
+
// background-color: rgb(var(--v-theme-background));
|
|
29
|
+
box-shadow: none !important;
|
|
30
|
+
#{$border-property}: 1px solid rgba(var(--v-border-color), var(--v-border-opacity))
|
|
31
|
+
if($important, !important, null);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// ℹ️ Inspired from vuetify's active-states mixin
|
|
36
|
+
// focus => 0.12 & selected => 0.08
|
|
37
|
+
@mixin selected-states($selector) {
|
|
38
|
+
// #{$selector} {
|
|
39
|
+
// opacity: calc(#{map.get(vuetify.$states, "selected")} * var(--v-theme-overlay-multiplier));
|
|
40
|
+
// }
|
|
41
|
+
|
|
42
|
+
// &:hover
|
|
43
|
+
// #{$selector} {
|
|
44
|
+
// opacity: calc(#{map.get(vuetify.$states, "selected") + map.get(vuetify.$states, "hover")} * var(--v-theme-overlay-multiplier));
|
|
45
|
+
// }
|
|
46
|
+
|
|
47
|
+
// &:focus-visible
|
|
48
|
+
// #{$selector} {
|
|
49
|
+
// opacity: calc(#{map.get(vuetify.$states, "selected") + map.get(vuetify.$states, "focus")} * var(--v-theme-overlay-multiplier));
|
|
50
|
+
// }
|
|
51
|
+
|
|
52
|
+
// @supports not selector(:focus-visible) {
|
|
53
|
+
// &:focus {
|
|
54
|
+
// #{$selector} {
|
|
55
|
+
// opacity: calc(#{map.get(vuetify.$states, "selected") + map.get(vuetify.$states, "focus")} * var(--v-theme-overlay-multiplier));
|
|
56
|
+
// }
|
|
57
|
+
// }
|
|
58
|
+
// }
|
|
59
|
+
#{$selector} {
|
|
60
|
+
opacity: calc(var(--v-selected-opacity) * var(--v-theme-overlay-multiplier));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&:hover #{$selector} {
|
|
64
|
+
opacity: calc(
|
|
65
|
+
var(--v-selected-opacity) + var(--v-hover-opacity) * var(--v-theme-overlay-multiplier)
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&:focus-visible #{$selector} {
|
|
70
|
+
opacity: calc(
|
|
71
|
+
var(--v-selected-opacity) + var(--v-focus-opacity) * var(--v-theme-overlay-multiplier)
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@supports not selector(:focus-visible) {
|
|
76
|
+
&:focus {
|
|
77
|
+
#{$selector} {
|
|
78
|
+
opacity: calc(
|
|
79
|
+
var(--v-selected-opacity) + var(--v-focus-opacity) * var(--v-theme-overlay-multiplier)
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Zoom fade
|
|
2
|
+
.app-transition-zoom-fade-enter-active,
|
|
3
|
+
.app-transition-zoom-fade-leave-active {
|
|
4
|
+
transition: transform 0.35s, opacity 0.28s ease-in-out;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.app-transition-zoom-fade-enter-from {
|
|
8
|
+
opacity: 0;
|
|
9
|
+
transform: scale(0.98);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.app-transition-zoom-fade-leave-to {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
transform: scale(1.02);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// Fade
|
|
18
|
+
.app-transition-fade-enter-active,
|
|
19
|
+
.app-transition-fade-leave-active {
|
|
20
|
+
transition: opacity 0.25s ease-in-out;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.app-transition-fade-enter-from,
|
|
24
|
+
.app-transition-fade-leave-to {
|
|
25
|
+
opacity: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// Fade bottom
|
|
29
|
+
.app-transition-fade-bottom-enter-active,
|
|
30
|
+
.app-transition-fade-bottom-leave-active {
|
|
31
|
+
transition: opacity 0.3s, transform 0.35s;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.app-transition-fade-bottom-enter-from {
|
|
35
|
+
opacity: 0;
|
|
36
|
+
transform: translateY(-0.6rem);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.app-transition-fade-bottom-leave-to {
|
|
40
|
+
opacity: 0;
|
|
41
|
+
transform: translateY(0.6rem);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Slide fade
|
|
45
|
+
.app-transition-slide-fade-enter-active,
|
|
46
|
+
.app-transition-slide-fade-leave-active {
|
|
47
|
+
transition: opacity 0.3s, transform 0.35s;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.app-transition-slide-fade-enter-from {
|
|
51
|
+
opacity: 0;
|
|
52
|
+
transform: translateX(-0.6rem);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.app-transition-slide-fade-leave-to {
|
|
56
|
+
opacity: 0;
|
|
57
|
+
transform: translateX(0.6rem);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Zoom out
|
|
61
|
+
.app-transition-zoom-out-enter-active,
|
|
62
|
+
.app-transition-zoom-out-leave-active {
|
|
63
|
+
transition: opacity 0.26s ease-in-out, transform 0.3s ease-out;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.app-transition-zoom-out-enter-from,
|
|
67
|
+
.app-transition-zoom-out-leave-to {
|
|
68
|
+
opacity: 0;
|
|
69
|
+
transform: scale(0.98);
|
|
70
|
+
}
|