@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,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
|
+
}
|
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
@use '../../../assets/scss/variables/template' as variables;
|
|
2
|
+
@use '../../../@layouts/styles/mixins' as layoutsMixins;
|
|
3
|
+
|
|
4
|
+
// Demo spacers
|
|
5
|
+
// TODO: Use vuetify SCSS variable here
|
|
6
|
+
$card-spacer-content: 16px;
|
|
7
|
+
|
|
8
|
+
.demo-space-x {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-wrap: wrap;
|
|
11
|
+
align-items: center;
|
|
12
|
+
margin-block-start: -$card-spacer-content;
|
|
13
|
+
|
|
14
|
+
& > * {
|
|
15
|
+
margin-block-start: $card-spacer-content;
|
|
16
|
+
margin-inline-end: $card-spacer-content;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.demo-space-y {
|
|
21
|
+
& > * {
|
|
22
|
+
margin-block-end: $card-spacer-content;
|
|
23
|
+
|
|
24
|
+
&:last-child {
|
|
25
|
+
margin-block-end: 0;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Card match height
|
|
31
|
+
.match-height.v-row {
|
|
32
|
+
.v-card {
|
|
33
|
+
block-size: 100%;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// Whitespace
|
|
38
|
+
.whitespace-no-wrap {
|
|
39
|
+
white-space: nowrap;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Colors
|
|
43
|
+
|
|
44
|
+
/*
|
|
45
|
+
ℹ️ Vuetify is applying `.text-white` class to badge icon but don't provide its styles
|
|
46
|
+
Moreover, we also use this class in some places
|
|
47
|
+
|
|
48
|
+
ℹ️ In vuetify 2 with `$color-pack: false` SCSS var config this class was getting generated but this is not the case in v3
|
|
49
|
+
|
|
50
|
+
ℹ️ We also need !important to get correct color in badge icon
|
|
51
|
+
*/
|
|
52
|
+
.text-white {
|
|
53
|
+
color: #fff !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.bg-var-theme-background {
|
|
57
|
+
background-color: rgba(var(--v-theme-on-background), 0.08) !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// [/^bg-light-(\w+)$/, ([, w]) => ({ backgroundColor: `rgba(var(--v-theme-${w}), var(--v-activated-opacity))` })],
|
|
61
|
+
@each $color-name in variables.$theme-colors-name {
|
|
62
|
+
.bg-light-#{$color-name} {
|
|
63
|
+
background-color: rgba(var(--v-theme-#{$color-name}), var(--v-activated-opacity)) !important;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// clamp text
|
|
68
|
+
.clamp-text {
|
|
69
|
+
display: -webkit-box;
|
|
70
|
+
overflow: hidden;
|
|
71
|
+
-webkit-box-orient: vertical;
|
|
72
|
+
-webkit-line-clamp: 2;
|
|
73
|
+
text-overflow: ellipsis;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.leading-normal {
|
|
77
|
+
line-height: normal !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// for rtl only
|
|
81
|
+
.flip-in-rtl {
|
|
82
|
+
@include layoutsMixins.rtl {
|
|
83
|
+
transform: scaleX(-1);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Carousel
|
|
88
|
+
.carousel-delimiter-top-end {
|
|
89
|
+
.v-carousel__controls {
|
|
90
|
+
justify-content: end;
|
|
91
|
+
block-size: 40px;
|
|
92
|
+
inset-block-start: 0;
|
|
93
|
+
padding-inline: 1rem;
|
|
94
|
+
|
|
95
|
+
.v-btn--icon.v-btn--density-default {
|
|
96
|
+
block-size: calc(var(--v-btn-height) + -10px);
|
|
97
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
98
|
+
inline-size: calc(var(--v-btn-height) + -8px);
|
|
99
|
+
|
|
100
|
+
&.v-btn--active {
|
|
101
|
+
color: #fff;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.v-btn__overlay {
|
|
105
|
+
opacity: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.v-ripple__container {
|
|
109
|
+
display: none;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.v-btn__content {
|
|
113
|
+
.v-icon {
|
|
114
|
+
block-size: 8px !important;
|
|
115
|
+
inline-size: 8px !important;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
@each $color-name in variables.$theme-colors-name {
|
|
122
|
+
&.dots-active-#{$color-name} {
|
|
123
|
+
.v-carousel__controls {
|
|
124
|
+
.v-btn--active {
|
|
125
|
+
color: rgb(var(--v-theme-#{$color-name})) !important;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Pagination small-select dropdown for table
|
|
133
|
+
// TODO: remove this class after vuetify datatable implememtation
|
|
134
|
+
|
|
135
|
+
.per-page-select {
|
|
136
|
+
margin-block: auto;
|
|
137
|
+
|
|
138
|
+
.v-field__input {
|
|
139
|
+
align-items: center;
|
|
140
|
+
padding: 2px;
|
|
141
|
+
font-size: 14px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.v-field__append-inner {
|
|
145
|
+
align-items: center;
|
|
146
|
+
padding: 0;
|
|
147
|
+
margin-inline-start: -2.5rem;
|
|
148
|
+
|
|
149
|
+
.v-icon {
|
|
150
|
+
margin-inline-start: 0 !important;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.v-timeline-item {
|
|
156
|
+
.app-timeline-title {
|
|
157
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
158
|
+
font-size: 16px;
|
|
159
|
+
font-weight: 500;
|
|
160
|
+
line-height: 1.3125rem;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.app-timeline-meta {
|
|
164
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
|
165
|
+
font-size: 12px;
|
|
166
|
+
line-height: 0.875rem;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.app-timeline-text {
|
|
170
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
171
|
+
font-size: 14px;
|
|
172
|
+
line-height: 1.25rem;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
@for $i from 1 through 1100 {
|
|
177
|
+
.app-z-#{$i} {
|
|
178
|
+
z-index: $i * 1;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
@for $i from 1 through 100 {
|
|
183
|
+
.app-gap-#{$i} {
|
|
184
|
+
gap: $i * 0.25rem;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.app-font-weight-semibold {
|
|
189
|
+
font-weight: 600 !important;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.app-font-size-12 {
|
|
193
|
+
font-size: 12px !important;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.app-font-size-13 {
|
|
197
|
+
font-size: 13px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.app-font-size-15 {
|
|
201
|
+
font-size: 15px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.app-font-size-16 {
|
|
205
|
+
font-size: 15px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.app-font-size-18 {
|
|
209
|
+
font-size: 18px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.app-font-size-22 {
|
|
213
|
+
font-size: 22px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.app-font-size-24 {
|
|
217
|
+
font-size: 24px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
@for $i from 1 through 400 {
|
|
221
|
+
.app-w-#{$i}px {
|
|
222
|
+
width: $i * 1px;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
@for $i from 1 through 400 {
|
|
227
|
+
.app-min-w-#{$i}px {
|
|
228
|
+
min-width: $i * 1px;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
@for $i from 1 through 200 {
|
|
233
|
+
.app-max-w-#{$i}px {
|
|
234
|
+
width: $i * 1px;
|
|
235
|
+
}
|
|
236
|
+
.\!app-max-w-#{$i}px {
|
|
237
|
+
width: $i * 1px !important;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
@for $i from 1 through 100 {
|
|
242
|
+
.app-w-#{$i}rem {
|
|
243
|
+
width: $i * 0.25rem;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
@for $i from 1 through 300 {
|
|
248
|
+
.app-h-#{$i}px {
|
|
249
|
+
height: $i * 1px;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@for $i from 1 through 300 {
|
|
254
|
+
.app-min-h-#{$i}px {
|
|
255
|
+
min-height: $i * 1px;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.app-min-h-250px {
|
|
260
|
+
min-height: 250px;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@for $i from 1 through 100 {
|
|
264
|
+
.app-h-#{$i}vh {
|
|
265
|
+
height: $i * 1vh;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
@for $i from -100 through 100 {
|
|
270
|
+
.app-top-#{$i}px {
|
|
271
|
+
top: $i * 1px;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
@for $i from -100 through 100 {
|
|
276
|
+
.app-left-#{$i}px {
|
|
277
|
+
left: $i * 1px;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@for $i from -100 through 100 {
|
|
282
|
+
.app-right-#{$i}px {
|
|
283
|
+
right: $i * 1px;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
@for $i from -100 through 100 {
|
|
288
|
+
.app-bottom-#{$i}px {
|
|
289
|
+
bottom: $i * 1px;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.app-rounded-6 {
|
|
294
|
+
border-radius: 6px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.slide-in-right {
|
|
298
|
+
-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
|
|
299
|
+
animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
@-webkit-keyframes slide-in-right {
|
|
303
|
+
0% {
|
|
304
|
+
-webkit-transform: translateX(50px);
|
|
305
|
+
transform: translateX(50px);
|
|
306
|
+
opacity: 0;
|
|
307
|
+
}
|
|
308
|
+
100% {
|
|
309
|
+
-webkit-transform: translateX(0);
|
|
310
|
+
transform: translateX(0);
|
|
311
|
+
opacity: 1;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
@keyframes slide-in-right {
|
|
316
|
+
0% {
|
|
317
|
+
-webkit-transform: translateX(50px);
|
|
318
|
+
transform: translateX(50px);
|
|
319
|
+
opacity: 0;
|
|
320
|
+
}
|
|
321
|
+
100% {
|
|
322
|
+
-webkit-transform: translateX(0);
|
|
323
|
+
transform: translateX(0);
|
|
324
|
+
opacity: 1;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.slide-out-right {
|
|
329
|
+
-webkit-animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
|
|
330
|
+
animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
@-webkit-keyframes slide-out-right {
|
|
334
|
+
0% {
|
|
335
|
+
-webkit-transform: translateX(0);
|
|
336
|
+
transform: translateX(0);
|
|
337
|
+
opacity: 1;
|
|
338
|
+
}
|
|
339
|
+
100% {
|
|
340
|
+
-webkit-transform: translateX(50px);
|
|
341
|
+
transform: translateX(50px);
|
|
342
|
+
opacity: 0;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
@keyframes slide-out-right {
|
|
347
|
+
0% {
|
|
348
|
+
-webkit-transform: translateX(0);
|
|
349
|
+
transform: translateX(0);
|
|
350
|
+
opacity: 1;
|
|
351
|
+
}
|
|
352
|
+
100% {
|
|
353
|
+
-webkit-transform: translateX(50px);
|
|
354
|
+
transform: translateX(50px);
|
|
355
|
+
opacity: 0;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.app-w-fit {
|
|
360
|
+
width: fit-content;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.app-h-fit {
|
|
364
|
+
height: fit-content;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.app-cursor-pointer {
|
|
368
|
+
cursor: pointer;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.app-pointer-events-all {
|
|
372
|
+
pointer-events: all;
|
|
373
|
+
}
|
|
374
|
+
.app-min-h-screen {
|
|
375
|
+
min-height: 100vh;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.app-aspect-ratio-1 {
|
|
379
|
+
aspect-ratio: 1;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.app-flex-1 {
|
|
383
|
+
flex: 1 1 0%;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@for $i from 0 through 100 {
|
|
387
|
+
.app-opacity-#{$i} {
|
|
388
|
+
opacity: $i * 1%;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.app-border-silver {
|
|
393
|
+
border: 1px solid rgba(var(--v-theme-silver));
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.app-inset-inline-end-9px {
|
|
397
|
+
inset-inline-end: 9px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.app-h-fit {
|
|
401
|
+
height: fit-content !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.app-border-yellow {
|
|
405
|
+
border: 1px solid rgb(var(--v-theme-yellow));
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.app-border-dark-gray {
|
|
409
|
+
border: 1px solid rgb(var(--v-theme-dark-gray));
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.app-border-primary {
|
|
413
|
+
border-color: rgb(var(--v-theme-primary)) !important;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.app-dir-ltr {
|
|
417
|
+
direction: ltr !important;
|
|
418
|
+
}
|