una-nuxt-module 1.0.2
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 +84 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +6 -0
- package/dist/module.d.ts +6 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +105 -0
- package/dist/runtime/assets/scss/styles.css +1249 -0
- package/dist/runtime/classes/FetchClient.d.ts +61 -0
- package/dist/runtime/classes/FetchClient.js +71 -0
- package/dist/runtime/components/layout/footer/Footer.vue +16 -0
- package/dist/runtime/components/layout/header/BtnExtendMenu.vue +29 -0
- package/dist/runtime/components/layout/header/Header.vue +7 -0
- package/dist/runtime/components/layout/header/HeaderMenu.vue +41 -0
- package/dist/runtime/components/layout/header/HeaderMenuTabs.vue +102 -0
- package/dist/runtime/components/layout/sidebar/NavCollapse.vue +38 -0
- package/dist/runtime/components/layout/sidebar/NavGroup.vue +9 -0
- package/dist/runtime/components/layout/sidebar/NavItem.vue +25 -0
- package/dist/runtime/components/layout/sidebar/SideBar.vue +74 -0
- package/dist/runtime/components/layout/sidebar/SideBarFooter.vue +69 -0
- package/dist/runtime/components/layout/sidebar/TopSideBarLogo.vue +25 -0
- package/dist/runtime/components/shared/authorization/AuthorizedRenderer.vue +41 -0
- package/dist/runtime/components/shared/buttons/BtnBack.vue +19 -0
- package/dist/runtime/components/shared/buttons/BtnCancel.vue +13 -0
- package/dist/runtime/components/shared/buttons/BtnConfirm.vue +14 -0
- package/dist/runtime/components/shared/containers/JsonViewer.vue +13 -0
- package/dist/runtime/components/shared/dates/DatePicker.vue +91 -0
- package/dist/runtime/components/shared/dialogs/DialogConfirmDelete.vue +32 -0
- package/dist/runtime/components/shared/dialogs/DialogExportTable.vue +42 -0
- package/dist/runtime/components/shared/feedback/LoadingSession.vue +17 -0
- package/dist/runtime/components/shared/feedback/SnackBar.vue +36 -0
- package/dist/runtime/components/shared/forms/FormBuilder/FieldBuilder.vue +251 -0
- package/dist/runtime/components/shared/forms/FormBuilder/FieldSlotMissed.vue +20 -0
- package/dist/runtime/components/shared/forms/FormBuilder/FormBuilder.vue +213 -0
- package/dist/runtime/components/shared/forms/FormBuilder/SteppersBuilder.vue +32 -0
- package/dist/runtime/components/shared/forms/FormBuilder/TabsBuilder.vue +30 -0
- package/dist/runtime/components/shared/forms/FormDialogWrapper.vue +48 -0
- package/dist/runtime/components/shared/forms/FormPageWrapper.vue +19 -0
- package/dist/runtime/components/shared/forms/FormSubmitSection.vue +48 -0
- package/dist/runtime/components/shared/navigation/BreadCrumbs.vue +21 -0
- package/dist/runtime/components/shared/tables/CustomTable.vue +261 -0
- package/dist/runtime/components/shared/tables/CustomTableHeader.vue +25 -0
- package/dist/runtime/components/shared/tables/NoDataMessage.vue +12 -0
- package/dist/runtime/components/shared/tables/TableSearchBar.vue +22 -0
- package/dist/runtime/components/shared/tables/buttons/BtnAdd.vue +25 -0
- package/dist/runtime/components/shared/tables/buttons/BtnDelete.vue +32 -0
- package/dist/runtime/components/shared/tables/buttons/BtnEdit.vue +30 -0
- package/dist/runtime/components/shared/tables/buttons/BtnExport.vue +17 -0
- package/dist/runtime/components/shared/tables/buttons/BtnFilter.vue +21 -0
- package/dist/runtime/components/shared/tables/pagination/ItemsPerPageCombo.vue +24 -0
- package/dist/runtime/components/shared/tables/pagination/ItemsPerPageLabel.vue +5 -0
- package/dist/runtime/components/shared/tables/pagination/PageSelector.vue +16 -0
- package/dist/runtime/components/shared/tables/pagination/PaginationInfo.vue +31 -0
- package/dist/runtime/composables/useAuthorization.d.ts +32 -0
- package/dist/runtime/composables/useAuthorization.js +95 -0
- package/dist/runtime/constants/form.d.ts +44 -0
- package/dist/runtime/constants/form.js +58 -0
- package/dist/runtime/constants/index.d.ts +4 -0
- package/dist/runtime/constants/index.js +4 -0
- package/dist/runtime/constants/pagination.d.ts +13 -0
- package/dist/runtime/constants/pagination.js +8 -0
- package/dist/runtime/constants/request.d.ts +5 -0
- package/dist/runtime/constants/request.js +6 -0
- package/dist/runtime/constants/tables.d.ts +4 -0
- package/dist/runtime/constants/tables.js +15 -0
- package/dist/runtime/enums/EAsyncDataRequestStatus.d.ts +9 -0
- package/dist/runtime/enums/EAsyncDataRequestStatus.js +7 -0
- package/dist/runtime/enums/EAuthorization.d.ts +8 -0
- package/dist/runtime/enums/EAuthorization.js +6 -0
- package/dist/runtime/enums/EFormField.d.ts +14 -0
- package/dist/runtime/enums/EFormField.js +12 -0
- package/dist/runtime/enums/EFormMode.d.ts +7 -0
- package/dist/runtime/enums/EFormMode.js +5 -0
- package/dist/runtime/enums/ERequestMethod.d.ts +9 -0
- package/dist/runtime/enums/ERequestMethod.js +7 -0
- package/dist/runtime/enums/ETheme.d.ts +7 -0
- package/dist/runtime/enums/ETheme.js +5 -0
- package/dist/runtime/enums/EVuetifyDateFormats.d.ts +32 -0
- package/dist/runtime/enums/EVuetifyDateFormats.js +30 -0
- package/dist/runtime/enums/index.d.ts +6 -0
- package/dist/runtime/enums/index.js +6 -0
- package/dist/runtime/i18n/config.d.ts +61 -0
- package/dist/runtime/i18n/config.js +10 -0
- package/dist/runtime/i18n/locales/es.json +55 -0
- package/dist/runtime/i18n/service.d.ts +72 -0
- package/dist/runtime/i18n/service.js +3 -0
- package/dist/runtime/i18n/vueI18n.d.ts +5 -0
- package/dist/runtime/i18n/vueI18n.js +3 -0
- package/dist/runtime/index.d.ts +9 -0
- package/dist/runtime/layouts/default.vue +31 -0
- package/dist/runtime/layouts/empty.vue +12 -0
- package/dist/runtime/middleware/authentication.d.ts +10 -0
- package/dist/runtime/middleware/authentication.js +30 -0
- package/dist/runtime/middleware/authorization.d.ts +7 -0
- package/dist/runtime/middleware/authorization.js +39 -0
- package/dist/runtime/pages/401.vue +34 -0
- package/dist/runtime/pages/403.vue +35 -0
- package/dist/runtime/pages/ssoCallback.vue +14 -0
- package/dist/runtime/plugins/auth.d.ts +12 -0
- package/dist/runtime/plugins/auth.js +83 -0
- package/dist/runtime/plugins/vue-json.d.ts +12 -0
- package/dist/runtime/plugins/vue-json.js +5 -0
- package/dist/runtime/public/images/logos/UNA_LogoMark_Black.png +0 -0
- package/dist/runtime/public/images/logos/UNA_LogoType_LogoMark_Red.png +0 -0
- package/dist/runtime/server/tsconfig.json +3 -0
- package/dist/runtime/stores/UiCustomizer.d.ts +22 -0
- package/dist/runtime/stores/UiCustomizer.js +34 -0
- package/dist/runtime/stores/appStatus.d.ts +63 -0
- package/dist/runtime/stores/appStatus.js +101 -0
- package/dist/runtime/stores/auth.d.ts +76 -0
- package/dist/runtime/stores/auth.js +66 -0
- package/dist/runtime/stores/formModeTracker.d.ts +14 -0
- package/dist/runtime/stores/formModeTracker.js +10 -0
- package/dist/runtime/types/index.d.ts +584 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/runtime/utils/buildSortQueryParams.d.ts +10 -0
- package/dist/runtime/utils/buildSortQueryParams.js +3 -0
- package/dist/runtime/utils/getCurrentPath.d.ts +7 -0
- package/dist/runtime/utils/getCurrentPath.js +4 -0
- package/dist/runtime/utils/getDateTimeInISO8601.d.ts +11 -0
- package/dist/runtime/utils/getDateTimeInISO8601.js +3 -0
- package/dist/runtime/utils/getFromLocalStorage.d.ts +9 -0
- package/dist/runtime/utils/getFromLocalStorage.js +6 -0
- package/dist/runtime/utils/isNumberInRange.d.ts +11 -0
- package/dist/runtime/utils/isNumberInRange.js +5 -0
- package/dist/runtime/utils/onlyNumbers.d.ts +9 -0
- package/dist/runtime/utils/onlyNumbers.js +3 -0
- package/dist/runtime/utils/stringToBoolean.d.ts +9 -0
- package/dist/runtime/utils/stringToBoolean.js +3 -0
- package/dist/types.d.mts +7 -0
- package/dist/types.d.ts +7 -0
- package/package.json +69 -0
|
@@ -0,0 +1,1249 @@
|
|
|
1
|
+
html .bg-success,
|
|
2
|
+
html .bg-info,
|
|
3
|
+
html .bg-warning {
|
|
4
|
+
color: white !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.v-row + .v-row {
|
|
8
|
+
margin-top: 0px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.v-divider {
|
|
12
|
+
border-color: rgb(var(--v-theme-borderLight));
|
|
13
|
+
--v-border-opacity: 1 !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.border-blue-right {
|
|
17
|
+
border-right: 1px solid rgba(var(--v-theme-borderLight), 0.36);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.link-hover {
|
|
21
|
+
text-decoration: unset;
|
|
22
|
+
}
|
|
23
|
+
.link-hover:hover {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.v-selection-control {
|
|
28
|
+
flex: unset;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.customizer-btn .icon {
|
|
32
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
|
33
|
+
transform-origin: center center;
|
|
34
|
+
transition: all 0.2s ease-in-out;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.no-spacer .v-list-item__spacer {
|
|
38
|
+
display: none !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@keyframes progress-circular-rotate {
|
|
42
|
+
100% {
|
|
43
|
+
transform: rotate(270deg);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
header.v-toolbar--border {
|
|
47
|
+
border-color: rgb(var(--v-theme-borderLight));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.v-toolbar.v-app-bar {
|
|
51
|
+
border-bottom: 1px solid rgba(var(--v-theme-borderLight), 0.8);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.v-sheet--border {
|
|
55
|
+
border: 1px solid rgba(var(--v-theme-borderLight), 0.8);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.v-expansion-panel {
|
|
59
|
+
border: 1px solid rgb(var(--v-theme-borderLight));
|
|
60
|
+
}
|
|
61
|
+
.v-expansion-panel:not(:first-child) {
|
|
62
|
+
margin-top: -1px;
|
|
63
|
+
}
|
|
64
|
+
.v-expansion-panel .v-expansion-panel-text__wrapper {
|
|
65
|
+
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
66
|
+
padding: 16px 24px;
|
|
67
|
+
}
|
|
68
|
+
.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
69
|
+
background-color: rgb(var(--v-theme-gray100));
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
73
|
+
min-height: unset;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
77
|
+
color: rgba(var(--v-theme-on-surface), 0.15);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
html {
|
|
81
|
+
overflow-y: auto;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.horizontalLayout .page-wrapper .v-container {
|
|
85
|
+
padding-top: 20px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@media (min-width: 1540px) {
|
|
89
|
+
.v-container:not(.v-container--fluid) {
|
|
90
|
+
max-width: 1500px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
.spacer {
|
|
94
|
+
padding: 100px 0;
|
|
95
|
+
}
|
|
96
|
+
@media (max-width: 1264px) {
|
|
97
|
+
.spacer {
|
|
98
|
+
padding: 72px 0;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@media (max-width: 800px) {
|
|
103
|
+
.spacer {
|
|
104
|
+
padding: 40px 0;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
.cursor-pointer {
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.page-wrapper .v-container {
|
|
112
|
+
padding: 15px;
|
|
113
|
+
}
|
|
114
|
+
.page-wrapper .v-container:first-child {
|
|
115
|
+
min-height: calc(100vh - 139px);
|
|
116
|
+
}
|
|
117
|
+
@media (max-width: 1550px) {
|
|
118
|
+
.page-wrapper .v-container {
|
|
119
|
+
max-width: 100%;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
@media (min-width: 768px) {
|
|
123
|
+
.page-wrapper .v-container {
|
|
124
|
+
padding-inline: 40px;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.maxWidth {
|
|
129
|
+
max-width: 1200px;
|
|
130
|
+
margin: 0 auto;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.display-1 {
|
|
134
|
+
font-size: 44px;
|
|
135
|
+
line-height: 54px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.display-2 {
|
|
139
|
+
font-size: 40px;
|
|
140
|
+
line-height: 50px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.display-3 {
|
|
144
|
+
font-size: 30px;
|
|
145
|
+
line-height: 40px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.h1 {
|
|
149
|
+
font-size: 36px;
|
|
150
|
+
line-height: 46px;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.h2 {
|
|
154
|
+
font-size: 30px;
|
|
155
|
+
line-height: 40px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.h3 {
|
|
159
|
+
font-size: 21px;
|
|
160
|
+
line-height: 31px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.h4 {
|
|
164
|
+
font-size: 18px;
|
|
165
|
+
line-height: 28px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.h5 {
|
|
169
|
+
font-size: 16px;
|
|
170
|
+
line-height: 26px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.h6 {
|
|
174
|
+
font-size: 14px;
|
|
175
|
+
line-height: 24px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.text-8 {
|
|
179
|
+
font-size: 8px;
|
|
180
|
+
line-height: 18px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.text-10 {
|
|
184
|
+
font-size: 10px;
|
|
185
|
+
line-height: 20px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.text-13 {
|
|
189
|
+
font-size: 13px;
|
|
190
|
+
line-height: 23px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.text-18 {
|
|
194
|
+
font-size: 18px;
|
|
195
|
+
line-height: 28px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.text-20 {
|
|
199
|
+
font-size: 20px;
|
|
200
|
+
line-height: 30px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.text-24 {
|
|
204
|
+
font-size: 24px;
|
|
205
|
+
line-height: 34px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.body-text-1 {
|
|
209
|
+
font-size: 10px;
|
|
210
|
+
line-height: 20px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.customizer-btn .icon {
|
|
214
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
|
215
|
+
transform-origin: center center;
|
|
216
|
+
transition: all 0.2s ease-in-out;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.fixed-width {
|
|
220
|
+
max-width: 1300px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.h-100 {
|
|
224
|
+
height: 100%;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.w-100 {
|
|
228
|
+
width: 100%;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.h-100vh {
|
|
232
|
+
height: 100vh;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.gap-2 {
|
|
236
|
+
gap: 8px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.gap-3 {
|
|
240
|
+
gap: 16px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.gap-4 {
|
|
244
|
+
gap: 24px;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.text-white {
|
|
248
|
+
color: rgb(255, 255, 255) !important;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.themeDefault,
|
|
252
|
+
.themeDarkDefault {
|
|
253
|
+
border: 1px solid #1677ff;
|
|
254
|
+
background-color: #1677ff;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.themeLightTheme1,
|
|
258
|
+
.themeDark1 {
|
|
259
|
+
border: 1px solid #3366ff;
|
|
260
|
+
background-color: #3366ff;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.themeLightTheme2,
|
|
264
|
+
.themeDark2 {
|
|
265
|
+
border: 1px solid #7265e6;
|
|
266
|
+
background-color: #7265e6;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.themeLightTheme3,
|
|
270
|
+
.themeDark3 {
|
|
271
|
+
border: 1px solid #068e44;
|
|
272
|
+
background-color: #068e44;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.themeLightTheme4,
|
|
276
|
+
.themeDark4 {
|
|
277
|
+
border: 1px solid #3c64d0;
|
|
278
|
+
background-color: #3c64d0;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.themeLightTheme5,
|
|
282
|
+
.themeDark5 {
|
|
283
|
+
border: 1px solid #f27013;
|
|
284
|
+
background-color: #f27013;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.themeLightTheme6,
|
|
288
|
+
.themeDark6 {
|
|
289
|
+
border: 1px solid #2aa1af;
|
|
290
|
+
background-color: #2aa1af;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.themeLightTheme7,
|
|
294
|
+
.themeDark7 {
|
|
295
|
+
border: 1px solid #00a854;
|
|
296
|
+
background-color: #00a854;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.themeLightTheme8,
|
|
300
|
+
.themeDark8 {
|
|
301
|
+
border: 1px solid #009688;
|
|
302
|
+
background-color: #009688;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
body {
|
|
306
|
+
font-family: "Public sans", sans-serif;
|
|
307
|
+
}
|
|
308
|
+
body .Roboto {
|
|
309
|
+
font-family: "Roboto", sans-serif !important;
|
|
310
|
+
}
|
|
311
|
+
body .Poppins {
|
|
312
|
+
font-family: "Poppins", sans-serif !important;
|
|
313
|
+
}
|
|
314
|
+
body .Inter {
|
|
315
|
+
font-family: "Inter", sans-serif !important;
|
|
316
|
+
}
|
|
317
|
+
body .Public {
|
|
318
|
+
font-family: "Public sans", sans-serif !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
@keyframes slideY {
|
|
322
|
+
0%, 50%, 100% {
|
|
323
|
+
transform: translateY(0px);
|
|
324
|
+
}
|
|
325
|
+
25% {
|
|
326
|
+
transform: translateY(-10px);
|
|
327
|
+
}
|
|
328
|
+
75% {
|
|
329
|
+
transform: translateY(10px);
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
.opacity-50 {
|
|
333
|
+
opacity: 0.5;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.link {
|
|
337
|
+
color: rgb(var(--v-theme-lightText));
|
|
338
|
+
text-decoration: none;
|
|
339
|
+
}
|
|
340
|
+
.link:hover {
|
|
341
|
+
color: rgb(var(--v-theme-primary));
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
/*This is for the logo*/
|
|
345
|
+
.leftSidebar {
|
|
346
|
+
border: 0px;
|
|
347
|
+
box-shadow: none !important;
|
|
348
|
+
border-right: 1px solid rgba(var(--v-theme-borderLight), 0.8);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/*This is for the Vertical sidebar*/
|
|
352
|
+
.scrollnavbar {
|
|
353
|
+
height: calc(100vh - 151px);
|
|
354
|
+
/*General Menu css*/
|
|
355
|
+
/*This is for the dropdown*/
|
|
356
|
+
}
|
|
357
|
+
.scrollnavbar .smallCap {
|
|
358
|
+
padding: 0px 0 0 20px !important;
|
|
359
|
+
}
|
|
360
|
+
.scrollnavbar .v-list {
|
|
361
|
+
color: rgb(var(--v-theme-lightText));
|
|
362
|
+
padding: 0;
|
|
363
|
+
}
|
|
364
|
+
.scrollnavbar .v-list .v-list-item--one-line.v-list-item--active {
|
|
365
|
+
border-right: 2px solid rgb(var(--v-theme-primary));
|
|
366
|
+
}
|
|
367
|
+
.scrollnavbar .v-list .v-list-group .v-list-item--one-line.v-list-item--active.v-list-item--link {
|
|
368
|
+
border-right: 2px solid rgb(var(--v-theme-primary));
|
|
369
|
+
}
|
|
370
|
+
.scrollnavbar .v-list .v-list-group .v-list-item--one-line.v-list-item--active.v-list-group__header {
|
|
371
|
+
border-right: none;
|
|
372
|
+
background: transparent;
|
|
373
|
+
}
|
|
374
|
+
.scrollnavbar .v-list .v-list-group .v-list-group__items .v-list-item--link .v-list-item__prepend,
|
|
375
|
+
.scrollnavbar .v-list .v-list-group .v-list-group__items .v-list-item .v-list-item__prepend {
|
|
376
|
+
margin-inline-end: 1px;
|
|
377
|
+
}
|
|
378
|
+
.scrollnavbar .v-list-group__items .v-list-item,
|
|
379
|
+
.scrollnavbar .v-list-item {
|
|
380
|
+
border-radius: 0;
|
|
381
|
+
padding-inline-start: calc(20px + var(--indent-padding) / 2) !important;
|
|
382
|
+
}
|
|
383
|
+
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__prepend,
|
|
384
|
+
.scrollnavbar .v-list-item .v-list-item__prepend {
|
|
385
|
+
margin-inline-end: -20px;
|
|
386
|
+
}
|
|
387
|
+
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append,
|
|
388
|
+
.scrollnavbar .v-list-item .v-list-item__append {
|
|
389
|
+
font-size: 0.875rem;
|
|
390
|
+
}
|
|
391
|
+
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append .v-icon,
|
|
392
|
+
.scrollnavbar .v-list-item .v-list-item__append .v-icon {
|
|
393
|
+
margin-inline-start: 13px;
|
|
394
|
+
}
|
|
395
|
+
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append > .v-icon,
|
|
396
|
+
.scrollnavbar .v-list-item .v-list-item__append > .v-icon {
|
|
397
|
+
--v-medium-emphasis-opacity: 0.8;
|
|
398
|
+
}
|
|
399
|
+
.scrollnavbar .v-list-group__items .v-list-item .v-list-item-title,
|
|
400
|
+
.scrollnavbar .v-list-item .v-list-item-title {
|
|
401
|
+
font-size: 0.875rem;
|
|
402
|
+
color: rgb(var(--v-theme-darkText));
|
|
403
|
+
}
|
|
404
|
+
.scrollnavbar .v-list-group__items .v-list-item.v-list-item--active .v-list-item-title,
|
|
405
|
+
.scrollnavbar .v-list-item.v-list-item--active .v-list-item-title {
|
|
406
|
+
color: rgb(var(--v-theme-primary));
|
|
407
|
+
}
|
|
408
|
+
.scrollnavbar .v-list .v-list-item--active .v-list-item-title {
|
|
409
|
+
font-weight: 500;
|
|
410
|
+
}
|
|
411
|
+
.scrollnavbar .v-list .sidebarchip .v-icon {
|
|
412
|
+
margin-inline-start: -3px;
|
|
413
|
+
}
|
|
414
|
+
.scrollnavbar .v-list .v-list-group .v-list-item:focus-visible > .v-list-item__overlay {
|
|
415
|
+
opacity: 0;
|
|
416
|
+
}
|
|
417
|
+
.scrollnavbar .v-list > .v-list-group {
|
|
418
|
+
position: relative;
|
|
419
|
+
}
|
|
420
|
+
.scrollnavbar .v-list > .v-list-group > .v-list-item--active,
|
|
421
|
+
.scrollnavbar .v-list > .v-list-group > .v-list-item:hover {
|
|
422
|
+
background: rgb(var(--v-theme-primary), 0.05);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
/* This is for the collapse mode */
|
|
426
|
+
.v-navigation-drawer--rail .scrollnavbar .v-list .v-list-group__items,
|
|
427
|
+
.v-navigation-drawer--rail .hide-menu {
|
|
428
|
+
display: none;
|
|
429
|
+
}
|
|
430
|
+
.v-navigation-drawer--rail .v-navigation-drawer__content:hover .v-list .v-list-group__items {
|
|
431
|
+
opacity: 1;
|
|
432
|
+
display: inline;
|
|
433
|
+
}
|
|
434
|
+
.v-navigation-drawer--rail .scrollnavbar .v-list-item .v-list-item__prepend {
|
|
435
|
+
margin-left: 5px;
|
|
436
|
+
}
|
|
437
|
+
.v-navigation-drawer--rail .scrollnavbar .v-list-group__items .v-list-item,
|
|
438
|
+
.v-navigation-drawer--rail .scrollnavbar .v-list-item {
|
|
439
|
+
padding-inline-start: calc(12px + var(--indent-padding) / 2) !important;
|
|
440
|
+
}
|
|
441
|
+
.v-navigation-drawer--rail .sidebar-user {
|
|
442
|
+
margin-left: -6px;
|
|
443
|
+
}
|
|
444
|
+
.v-navigation-drawer--rail .leftPadding {
|
|
445
|
+
margin-left: 0px;
|
|
446
|
+
}
|
|
447
|
+
.v-navigation-drawer--rail.leftSidebar .v-list-subheader {
|
|
448
|
+
display: none;
|
|
449
|
+
}
|
|
450
|
+
.v-navigation-drawer--rail.leftSidebar:hover .v-list-subheader {
|
|
451
|
+
display: inline-flex;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.SideBarFooter .v-list-item {
|
|
455
|
+
border-radius: 0;
|
|
456
|
+
padding-inline-start: calc(20px + var(--indent-padding) / 2) !important;
|
|
457
|
+
}
|
|
458
|
+
.SideBarFooter .v-list-item .v-list-item__prepend {
|
|
459
|
+
margin-inline-end: -20px;
|
|
460
|
+
}
|
|
461
|
+
.SideBarFooter .v-list-item .v-list-item__append {
|
|
462
|
+
font-size: 0.875rem;
|
|
463
|
+
}
|
|
464
|
+
.SideBarFooter .v-list-item .v-list-item__append .v-icon {
|
|
465
|
+
margin-inline-start: 13px;
|
|
466
|
+
}
|
|
467
|
+
.SideBarFooter .v-list-item .v-list-item__append > .v-icon {
|
|
468
|
+
--v-medium-emphasis-opacity: 0.8;
|
|
469
|
+
}
|
|
470
|
+
.SideBarFooter .v-list-item .v-list-item-title {
|
|
471
|
+
font-size: 0.875rem;
|
|
472
|
+
color: rgb(var(--v-theme-darkText));
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
@media only screen and (min-width: 1170px) {
|
|
476
|
+
.mini-sidebar .logo {
|
|
477
|
+
width: 40px;
|
|
478
|
+
overflow: hidden;
|
|
479
|
+
}
|
|
480
|
+
.mini-sidebar .leftSidebar:hover {
|
|
481
|
+
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08) !important;
|
|
482
|
+
}
|
|
483
|
+
.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .logo {
|
|
484
|
+
width: 100%;
|
|
485
|
+
}
|
|
486
|
+
.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .v-list .v-list-group__items,
|
|
487
|
+
.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .hide-menu {
|
|
488
|
+
opacity: 1;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
.v-footer {
|
|
492
|
+
background: rgb(var(--v-theme-containerbg));
|
|
493
|
+
padding: 24px 16px 0px;
|
|
494
|
+
margin-top: auto;
|
|
495
|
+
position: unset;
|
|
496
|
+
}
|
|
497
|
+
.v-footer a {
|
|
498
|
+
text-decoration: unset;
|
|
499
|
+
}
|
|
500
|
+
.v-footer a:hover {
|
|
501
|
+
text-decoration: underline;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
@media (max-width: 475px) {
|
|
505
|
+
.footer {
|
|
506
|
+
text-align: center;
|
|
507
|
+
}
|
|
508
|
+
.footer .v-col-6 {
|
|
509
|
+
flex: 0 0 100%;
|
|
510
|
+
max-width: 100%;
|
|
511
|
+
}
|
|
512
|
+
.footer .v-col-6.text-right {
|
|
513
|
+
text-align: center !important;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
.profileBtn {
|
|
517
|
+
height: 44px !important;
|
|
518
|
+
margin: 0 20px 0 10px !important;
|
|
519
|
+
padding: 0 6px;
|
|
520
|
+
}
|
|
521
|
+
.profileBtn .v-avatar {
|
|
522
|
+
width: 32px;
|
|
523
|
+
height: 32px;
|
|
524
|
+
}
|
|
525
|
+
.profileBtn .v-avatar img {
|
|
526
|
+
width: 32px;
|
|
527
|
+
height: 32px;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
@media (max-width: 600px) {
|
|
531
|
+
.profileBtn {
|
|
532
|
+
min-width: 42px;
|
|
533
|
+
margin: 0 12px 0 0 !important;
|
|
534
|
+
}
|
|
535
|
+
.profileBtn .v-avatar {
|
|
536
|
+
width: 24px;
|
|
537
|
+
height: 24px;
|
|
538
|
+
}
|
|
539
|
+
.profileBtn .v-avatar img {
|
|
540
|
+
width: 24px;
|
|
541
|
+
height: 24px;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
@media (max-width: 460px) {
|
|
545
|
+
.notification-dropdown {
|
|
546
|
+
width: 332px !important;
|
|
547
|
+
}
|
|
548
|
+
.notification-dropdown .v-list-item__content .d-inline-flex .text-caption {
|
|
549
|
+
min-width: 50px;
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
.loginBox {
|
|
553
|
+
max-width: 475px;
|
|
554
|
+
margin: 0 auto;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.externalLink {
|
|
558
|
+
color: rgb(var(--v-theme-primary));
|
|
559
|
+
text-decoration: none;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.single-line-alert .v-alert__close,
|
|
563
|
+
.single-line-alert .v-alert__prepend {
|
|
564
|
+
align-self: center !important;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.v-alert__prepend {
|
|
568
|
+
align-self: center;
|
|
569
|
+
}
|
|
570
|
+
.v-alert__prepend .mdi {
|
|
571
|
+
width: 18px !important;
|
|
572
|
+
height: 18px !important;
|
|
573
|
+
font-size: 18px !important;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.v-alert--variant-tonal.with-border.text-primary {
|
|
577
|
+
border: 1px solid rgba(var(--v-theme-primary), 0.3);
|
|
578
|
+
}
|
|
579
|
+
.v-alert--variant-tonal.with-border.text-secondary {
|
|
580
|
+
border: 1px solid rgba(var(--v-theme-secondary), 0.3);
|
|
581
|
+
}
|
|
582
|
+
.v-alert--variant-tonal.with-border.text-success {
|
|
583
|
+
border: 1px solid rgba(var(--v-theme-success), 0.3);
|
|
584
|
+
}
|
|
585
|
+
.v-alert--variant-tonal.with-border.text-info {
|
|
586
|
+
border: 1px solid rgba(var(--v-theme-info), 0.3);
|
|
587
|
+
}
|
|
588
|
+
.v-alert--variant-tonal.with-border.text-warning {
|
|
589
|
+
border: 1px solid rgba(var(--v-theme-warning), 0.3);
|
|
590
|
+
}
|
|
591
|
+
.v-alert--variant-tonal.with-border.text-error {
|
|
592
|
+
border: 1px solid rgba(var(--v-theme-error), 0.3);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
@media (max-width: 500px) {
|
|
596
|
+
.single-line-alert {
|
|
597
|
+
display: flex;
|
|
598
|
+
flex-wrap: wrap;
|
|
599
|
+
}
|
|
600
|
+
.single-line-alert .v-alert__append {
|
|
601
|
+
margin-inline-start: 0px;
|
|
602
|
+
}
|
|
603
|
+
.single-line-alert .v-alert__close {
|
|
604
|
+
margin-left: auto;
|
|
605
|
+
}
|
|
606
|
+
.single-line-alert .v-alert__content {
|
|
607
|
+
width: 100%;
|
|
608
|
+
margin-top: 5px;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
.v-list-item.v-list-item--border {
|
|
612
|
+
border-color: rgb(var(--v-border-color));
|
|
613
|
+
border-width: 0 0 1px 0;
|
|
614
|
+
}
|
|
615
|
+
.v-list-item.v-list-item--border:last-child {
|
|
616
|
+
border-width: 0;
|
|
617
|
+
}
|
|
618
|
+
.v-list-item.v-list-item--variant-tonal {
|
|
619
|
+
background: rgb(var(--v-theme-gray100));
|
|
620
|
+
}
|
|
621
|
+
.v-list-item.v-list-item--variant-tonal .v-list-item__underlay {
|
|
622
|
+
background: transparent;
|
|
623
|
+
}
|
|
624
|
+
.v-list-item:last-child .v-list-item__content .v-divider--inset {
|
|
625
|
+
display: none;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.v-list[aria-busy=true] {
|
|
629
|
+
cursor: context-menu;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.v-list-group__items .v-list-item {
|
|
633
|
+
padding-inline-start: 40px !important;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.v-list-item__content .v-divider--inset:not(.v-divider--vertical) {
|
|
637
|
+
max-width: 100%;
|
|
638
|
+
margin-inline-start: 0;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.v-list--border .v-list-item + .v-list-item {
|
|
642
|
+
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.v-btn.bg-lightprimary:hover, .v-btn.bg-lightprimary:active, .v-btn.bg-lightprimary:focus {
|
|
646
|
+
background-color: rgb(var(--v-theme-primary)) !important;
|
|
647
|
+
color: #fff !important;
|
|
648
|
+
}
|
|
649
|
+
.v-btn.bg-lightsecondary:hover, .v-btn.bg-lightsecondary:active, .v-btn.bg-lightsecondary:focus {
|
|
650
|
+
background-color: rgb(var(--v-theme-secondary)) !important;
|
|
651
|
+
color: #fff !important;
|
|
652
|
+
}
|
|
653
|
+
.v-btn.text-facebook:hover, .v-btn.text-facebook:active, .v-btn.text-facebook:focus {
|
|
654
|
+
background-color: rgb(var(--v-theme-facebook)) !important;
|
|
655
|
+
color: #fff !important;
|
|
656
|
+
}
|
|
657
|
+
.v-btn.text-twitter:hover, .v-btn.text-twitter:active, .v-btn.text-twitter:focus {
|
|
658
|
+
background-color: rgb(var(--v-theme-twitter)) !important;
|
|
659
|
+
color: #fff !important;
|
|
660
|
+
}
|
|
661
|
+
.v-btn.text-linkedin:hover, .v-btn.text-linkedin:active, .v-btn.text-linkedin:focus {
|
|
662
|
+
background-color: rgb(var(--v-theme-linkedin)) !important;
|
|
663
|
+
color: #fff !important;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.v-btn {
|
|
667
|
+
text-transform: capitalize;
|
|
668
|
+
letter-spacing: 0;
|
|
669
|
+
font-weight: 400;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.v-btn--icon.v-btn--density-default {
|
|
673
|
+
width: calc(var(--v-btn-height) + 6px);
|
|
674
|
+
height: calc(var(--v-btn-height) + 6px);
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.v-btn-group .v-btn {
|
|
678
|
+
height: inherit !important;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.v-btn-group {
|
|
682
|
+
border-color: rgba(var(--v-border-color), 1);
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
686
|
+
border-inline-end-color: rgba(var(--v-border-color), 1);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.primary-dashed {
|
|
690
|
+
border: 1px dashed rgb(var(--v-theme-primary));
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.secondary-dashed {
|
|
694
|
+
border: 1px dashed rgb(var(--v-theme-secondary));
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.success-dashed {
|
|
698
|
+
border: 1px dashed rgb(var(--v-theme-success));
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.info-dashed {
|
|
702
|
+
border: 1px dashed rgb(var(--v-theme-info));
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.warning-dashed {
|
|
706
|
+
border: 1px dashed rgb(var(--v-theme-warning));
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.error-dashed {
|
|
710
|
+
border: 1px dashed rgb(var(--v-theme-error));
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.v-card--variant-outlined {
|
|
714
|
+
border-color: rgba(var(--v-theme-borderLight), 1);
|
|
715
|
+
}
|
|
716
|
+
.v-card--variant-outlined .v-divider {
|
|
717
|
+
border-color: rgba(var(--v-theme-borderLight), 0.8);
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.v-card-text {
|
|
721
|
+
padding: 20px;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.v-card-actions {
|
|
725
|
+
padding: 14px 20px 14px;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.v-card {
|
|
729
|
+
width: 100%;
|
|
730
|
+
overflow: visible;
|
|
731
|
+
}
|
|
732
|
+
.v-card.withbg {
|
|
733
|
+
background-color: rgb(var(--v-theme-background));
|
|
734
|
+
}
|
|
735
|
+
.v-card.w-auto {
|
|
736
|
+
width: auto !important;
|
|
737
|
+
}
|
|
738
|
+
.v-card.overflow-hidden {
|
|
739
|
+
overflow: hidden;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.v-card-item {
|
|
743
|
+
padding: 20px;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.v-card-subtitle {
|
|
747
|
+
font-size: 0.75rem;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.title-card .v-card-text {
|
|
751
|
+
background-color: rgb(var(--v-theme-background));
|
|
752
|
+
border: 1px solid rgba(var(--v-theme-borderLight), 1);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.v-chip.v-chip--variant-tonal.combined {
|
|
756
|
+
border: 1px solid rgba(var(--v-theme-secondary), 0.5);
|
|
757
|
+
}
|
|
758
|
+
.v-chip.v-chip--variant-tonal.combined.text-primary {
|
|
759
|
+
border: 1px solid rgba(var(--v-theme-primary), 0.5);
|
|
760
|
+
}
|
|
761
|
+
.v-chip.v-chip--variant-tonal.combined.text-secondary {
|
|
762
|
+
border: 1px solid rgba(var(--v-theme-secondary), 0.5);
|
|
763
|
+
}
|
|
764
|
+
.v-chip.v-chip--variant-tonal.combined.text-success {
|
|
765
|
+
border: 1px solid rgba(var(--v-theme-success), 0.5);
|
|
766
|
+
}
|
|
767
|
+
.v-chip.v-chip--variant-tonal.combined.text-info {
|
|
768
|
+
border: 1px solid rgba(var(--v-theme-info), 0.5);
|
|
769
|
+
}
|
|
770
|
+
.v-chip.v-chip--variant-tonal.combined.text-warning {
|
|
771
|
+
border: 1px solid rgba(var(--v-theme-warning), 0.5);
|
|
772
|
+
}
|
|
773
|
+
.v-chip.v-chip--variant-tonal.combined.text-error {
|
|
774
|
+
border: 1px solid rgba(var(--v-theme-error), 0.5);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.v-badge__badge {
|
|
778
|
+
min-width: 16px;
|
|
779
|
+
height: 16px;
|
|
780
|
+
padding: 4px;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.v-badge--dot .v-badge__badge {
|
|
784
|
+
height: 8px;
|
|
785
|
+
width: 8px;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.v-breadcrumbs-item--link {
|
|
789
|
+
color: rgb(var(--v-theme-lightText));
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.v-breadcrumbs .v-breadcrumbs-item--disabled {
|
|
793
|
+
--v-disabled-opacity: 1;
|
|
794
|
+
}
|
|
795
|
+
.v-breadcrumbs .v-breadcrumbs-item--disabled .v-breadcrumbs-item--link {
|
|
796
|
+
color: rgb(var(--v-theme-darkText));
|
|
797
|
+
}
|
|
798
|
+
.v-breadcrumbs .v-breadcrumbs-divider {
|
|
799
|
+
color: rgb(var(--v-theme-lightText));
|
|
800
|
+
margin-left: -10px;
|
|
801
|
+
margin-right: -10px;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.v-field--variant-outlined .v-field__outline__start.v-locale--is-ltr,
|
|
805
|
+
.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
|
|
806
|
+
border-radius: 4px 0 0 4px;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.v-field--variant-outlined .v-field__outline__end.v-locale--is-ltr,
|
|
810
|
+
.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end {
|
|
811
|
+
border-radius: 0 4px 4px 0;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.v-input--density-default:not(.v-autocomplete--multiple),
|
|
815
|
+
.v-field--variant-solo,
|
|
816
|
+
.v-field--variant-filled {
|
|
817
|
+
--v-input-control-height: 39px;
|
|
818
|
+
--v-input-padding-top: 2px;
|
|
819
|
+
}
|
|
820
|
+
.v-input--density-default:not(.v-autocomplete--multiple) input.v-field__input,
|
|
821
|
+
.v-field--variant-solo input.v-field__input,
|
|
822
|
+
.v-field--variant-filled input.v-field__input {
|
|
823
|
+
padding-bottom: 2px;
|
|
824
|
+
}
|
|
825
|
+
.v-input--density-default:not(.v-autocomplete--multiple) .v-field__input,
|
|
826
|
+
.v-field--variant-solo .v-field__input,
|
|
827
|
+
.v-field--variant-filled .v-field__input {
|
|
828
|
+
padding-bottom: 2px;
|
|
829
|
+
}
|
|
830
|
+
.v-input--density-default:not(.v-autocomplete--multiple) textarea,
|
|
831
|
+
.v-field--variant-solo textarea,
|
|
832
|
+
.v-field--variant-filled textarea {
|
|
833
|
+
margin-top: 8px;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.v-input--density-default .v-field__input {
|
|
837
|
+
min-height: 41px;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.v-field--variant-outlined.v-field--focused .v-field__outline {
|
|
841
|
+
--v-field-border-width: 1px;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.remove-details .v-input__details {
|
|
845
|
+
display: none;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.v-input .v-input__details {
|
|
849
|
+
padding-inline: 0;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.v-input--density-comfortable {
|
|
853
|
+
--v-input-control-height: 56px;
|
|
854
|
+
--v-input-padding-top: 17px;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.v-label {
|
|
858
|
+
font-size: 0.875rem;
|
|
859
|
+
--v-medium-emphasis-opacity: 0.8;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.v-switch .v-label,
|
|
863
|
+
.v-checkbox .v-label {
|
|
864
|
+
opacity: 1;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
textarea.v-field__input {
|
|
868
|
+
font-size: 14px;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.textarea-input .v-label {
|
|
872
|
+
top: 15px;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.v-navigation-drawer__scrim.fade-transition-leave-to {
|
|
876
|
+
display: none;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.elevation-24 {
|
|
880
|
+
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08) !important;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.v-menu > .v-overlay__content > .v-sheet {
|
|
884
|
+
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.primary-shadow {
|
|
888
|
+
box-shadow: 0 14px 12px rgba(var(--v-theme-primary), 0.2);
|
|
889
|
+
}
|
|
890
|
+
.primary-shadow:hover {
|
|
891
|
+
box-shadow: none;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.secondary-shadow {
|
|
895
|
+
box-shadow: 0 14px 12px rgba(var(--v-theme-secondary), 0.2);
|
|
896
|
+
}
|
|
897
|
+
.secondary-shadow:hover {
|
|
898
|
+
box-shadow: none;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.success-shadow {
|
|
902
|
+
box-shadow: 0 14px 12px rgba(var(--v-theme-success), 0.2);
|
|
903
|
+
}
|
|
904
|
+
.success-shadow:hover {
|
|
905
|
+
box-shadow: none;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.info-shadow {
|
|
909
|
+
box-shadow: 0 14px 12px rgba(var(--v-theme-info), 0.2);
|
|
910
|
+
}
|
|
911
|
+
.info-shadow:hover {
|
|
912
|
+
box-shadow: none;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.warning-shadow {
|
|
916
|
+
box-shadow: 0 14px 12px rgba(var(--v-theme-warning), 0.2);
|
|
917
|
+
}
|
|
918
|
+
.warning-shadow:hover {
|
|
919
|
+
box-shadow: none;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.error-shadow {
|
|
923
|
+
box-shadow: 0 14px 12px rgba(var(--v-theme-error), 0.2);
|
|
924
|
+
}
|
|
925
|
+
.error-shadow:hover {
|
|
926
|
+
box-shadow: none;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.v-text-field input {
|
|
930
|
+
font-size: 0.875rem;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.v-select .v-field {
|
|
934
|
+
font-size: 0.875rem;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.pwdInput {
|
|
938
|
+
position: relative;
|
|
939
|
+
}
|
|
940
|
+
.pwdInput .v-input__append {
|
|
941
|
+
position: absolute;
|
|
942
|
+
right: 0;
|
|
943
|
+
top: 50%;
|
|
944
|
+
transform: translateY(-50%);
|
|
945
|
+
}
|
|
946
|
+
.pwdInput .v-field__append-inner {
|
|
947
|
+
right: -10px;
|
|
948
|
+
position: absolute;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.v-textarea input {
|
|
952
|
+
font-size: 0.875rem;
|
|
953
|
+
font-weight: 500;
|
|
954
|
+
}
|
|
955
|
+
.v-textarea input::placeholder {
|
|
956
|
+
color: rgba(0, 0, 0, 0.38);
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.v-tabs {
|
|
960
|
+
border-radius: 4px;
|
|
961
|
+
border-left: 1px solid rgb(var(--v-theme-borderLight));
|
|
962
|
+
border-right: 1px solid rgb(var(--v-theme-borderLight));
|
|
963
|
+
}
|
|
964
|
+
.v-tabs .v-tab {
|
|
965
|
+
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
966
|
+
border-bottom: 1px solid rgb(var(--v-theme-borderLight));
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.rounded-square {
|
|
970
|
+
width: 20px;
|
|
971
|
+
height: 20px;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.icon-scale {
|
|
975
|
+
position: absolute;
|
|
976
|
+
left: -17px;
|
|
977
|
+
bottom: -27px;
|
|
978
|
+
transform: rotate(25deg);
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.tabBtn .v-tab--selected .v-tab__slider {
|
|
982
|
+
opacity: 0;
|
|
983
|
+
}
|
|
984
|
+
.tabBtn .v-btn--variant-outlined:not(.v-tab--selected) {
|
|
985
|
+
border: none;
|
|
986
|
+
color: rgb(var(--v-theme-lightText));
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.headerWithBtn .v-card-item {
|
|
990
|
+
padding: 14px;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.groupingAvatar .v-avatar {
|
|
994
|
+
cursor: pointer;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.widget-gradient {
|
|
998
|
+
position: relative;
|
|
999
|
+
}
|
|
1000
|
+
.widget-gradient::before, .widget-gradient::after {
|
|
1001
|
+
content: "";
|
|
1002
|
+
width: 100%;
|
|
1003
|
+
height: 100%;
|
|
1004
|
+
position: absolute;
|
|
1005
|
+
background: linear-gradient(90deg, rgba(255, 255, 255, 0.0001) 22.07%, rgba(255, 255, 255, 0.15) 83.21%);
|
|
1006
|
+
transform: matrix(0.9, 0.44, -0.44, 0.9, 0, 0);
|
|
1007
|
+
}
|
|
1008
|
+
.widget-gradient:after {
|
|
1009
|
+
top: 50%;
|
|
1010
|
+
right: -20px;
|
|
1011
|
+
}
|
|
1012
|
+
.widget-gradient::before {
|
|
1013
|
+
right: -70px;
|
|
1014
|
+
bottom: 80%;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.hover-icon-card .hover-icon {
|
|
1018
|
+
transition: 0.5s;
|
|
1019
|
+
}
|
|
1020
|
+
.hover-icon-card:hover .hover-icon {
|
|
1021
|
+
opacity: 1;
|
|
1022
|
+
transform: scale(1.2);
|
|
1023
|
+
transition: 0.5s;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.widget-progress .v-progress-linear .v-progress-linear__background {
|
|
1027
|
+
background-color: rgb(var(--v-theme-lightsuccess)) !important;
|
|
1028
|
+
opacity: 1;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.readMedia {
|
|
1032
|
+
position: absolute;
|
|
1033
|
+
bottom: -7px;
|
|
1034
|
+
right: 0;
|
|
1035
|
+
width: 182px;
|
|
1036
|
+
height: 144px;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.CustomTable > .v-table__wrapper {
|
|
1040
|
+
max-height: 580px;
|
|
1041
|
+
}
|
|
1042
|
+
.CustomTable > .v-table__wrapper > table {
|
|
1043
|
+
/* Borde de la tabla */
|
|
1044
|
+
border: 1px solid rgb(var(--v-theme-borderLight));
|
|
1045
|
+
border-radius: 5px;
|
|
1046
|
+
}
|
|
1047
|
+
.CustomTable > .v-table__wrapper > table > thead > tr > th {
|
|
1048
|
+
background: rgb(var(--v-theme-gray100));
|
|
1049
|
+
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
1050
|
+
}
|
|
1051
|
+
.CustomTable > .v-table__wrapper > table > tbody > tr td {
|
|
1052
|
+
/* Borde superior de las filas */
|
|
1053
|
+
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
1054
|
+
}
|
|
1055
|
+
.CustomTable > .v-table__wrapper > table > tbody > tr:hover td {
|
|
1056
|
+
/* Filas on hover */
|
|
1057
|
+
background: rgb(var(--v-theme-gray100));
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.json-container-view {
|
|
1061
|
+
border: 1px solid #423b3b;
|
|
1062
|
+
border-radius: 3px;
|
|
1063
|
+
padding: 20px;
|
|
1064
|
+
background-color: #f7f7f7;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.vjs-tree-brackets {
|
|
1068
|
+
cursor: pointer;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.vjs-tree-brackets:hover {
|
|
1072
|
+
color: #1890ff;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.vjs-check-controller {
|
|
1076
|
+
position: absolute;
|
|
1077
|
+
left: 0;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.vjs-check-controller.is-checked .vjs-check-controller-inner {
|
|
1081
|
+
background-color: #1890ff;
|
|
1082
|
+
border-color: #0076e4;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.vjs-check-controller.is-checked .vjs-check-controller-inner.is-checkbox:after {
|
|
1086
|
+
transform: rotate(45deg) scaleY(1);
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.vjs-check-controller.is-checked .vjs-check-controller-inner.is-radio:after {
|
|
1090
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.vjs-check-controller .vjs-check-controller-inner {
|
|
1094
|
+
display: inline-block;
|
|
1095
|
+
position: relative;
|
|
1096
|
+
border: 1px solid #bfcbd9;
|
|
1097
|
+
border-radius: 2px;
|
|
1098
|
+
vertical-align: middle;
|
|
1099
|
+
box-sizing: border-box;
|
|
1100
|
+
width: 16px;
|
|
1101
|
+
height: 16px;
|
|
1102
|
+
background-color: #fff;
|
|
1103
|
+
z-index: 1;
|
|
1104
|
+
cursor: pointer;
|
|
1105
|
+
transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.vjs-check-controller .vjs-check-controller-inner:after {
|
|
1109
|
+
box-sizing: content-box;
|
|
1110
|
+
content: "";
|
|
1111
|
+
border: 2px solid #fff;
|
|
1112
|
+
border-left: 0;
|
|
1113
|
+
border-top: 0;
|
|
1114
|
+
height: 8px;
|
|
1115
|
+
left: 4px;
|
|
1116
|
+
position: absolute;
|
|
1117
|
+
top: 1px;
|
|
1118
|
+
transform: rotate(45deg) scaleY(0);
|
|
1119
|
+
width: 4px;
|
|
1120
|
+
transition: transform 0.15s cubic-bezier(0.71, -0.46, 0.88, 0.6) 0.05s;
|
|
1121
|
+
transform-origin: center;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.vjs-check-controller .vjs-check-controller-inner.is-radio {
|
|
1125
|
+
border-radius: 100%;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.vjs-check-controller .vjs-check-controller-inner.is-radio:after {
|
|
1129
|
+
border-radius: 100%;
|
|
1130
|
+
height: 4px;
|
|
1131
|
+
background-color: #fff;
|
|
1132
|
+
left: 50%;
|
|
1133
|
+
top: 50%;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.vjs-check-controller .vjs-check-controller-original {
|
|
1137
|
+
opacity: 0;
|
|
1138
|
+
outline: none;
|
|
1139
|
+
position: absolute;
|
|
1140
|
+
z-index: -1;
|
|
1141
|
+
top: 0;
|
|
1142
|
+
left: 0;
|
|
1143
|
+
right: 0;
|
|
1144
|
+
bottom: 0;
|
|
1145
|
+
margin: 0;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.vjs-carets {
|
|
1149
|
+
position: absolute;
|
|
1150
|
+
right: 0;
|
|
1151
|
+
cursor: pointer;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
.vjs-carets svg {
|
|
1155
|
+
transition: transform 0.3s;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.vjs-carets:hover {
|
|
1159
|
+
color: #1890ff;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.vjs-carets-close {
|
|
1163
|
+
transform: rotate(-90deg);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.vjs-tree-node {
|
|
1167
|
+
display: flex;
|
|
1168
|
+
position: relative;
|
|
1169
|
+
line-height: 20px;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.vjs-tree-node.has-carets {
|
|
1173
|
+
padding-left: 15px;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.vjs-tree-node.has-carets.has-selector,
|
|
1177
|
+
.vjs-tree-node.has-selector {
|
|
1178
|
+
padding-left: 30px;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.vjs-tree-node.is-highlight,
|
|
1182
|
+
.vjs-tree-node:hover {
|
|
1183
|
+
background-color: #f3f8ff;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.vjs-tree-node .vjs-indent {
|
|
1187
|
+
display: flex;
|
|
1188
|
+
position: relative;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.vjs-tree-node .vjs-indent-unit {
|
|
1192
|
+
width: 1em;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.vjs-tree-node .vjs-indent-unit.has-line {
|
|
1196
|
+
border-left: 1px dashed #bfcbd9;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.vjs-tree-node.dark.is-highlight,
|
|
1200
|
+
.vjs-tree-node.dark:hover {
|
|
1201
|
+
background-color: #2e4558;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.vjs-node-index {
|
|
1205
|
+
position: absolute;
|
|
1206
|
+
right: 100%;
|
|
1207
|
+
margin-right: 4px;
|
|
1208
|
+
user-select: none;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.vjs-colon {
|
|
1212
|
+
white-space: pre;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.vjs-comment {
|
|
1216
|
+
color: #bfcbd9;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.vjs-value {
|
|
1220
|
+
word-break: break-word;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.vjs-value-null,
|
|
1224
|
+
.vjs-value-undefined {
|
|
1225
|
+
color: #d55fde;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.vjs-value-boolean,
|
|
1229
|
+
.vjs-value-number {
|
|
1230
|
+
color: #1d8ce0;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.vjs-value-string {
|
|
1234
|
+
color: #f05941;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.vjs-tree {
|
|
1238
|
+
font-family: Monaco, Menlo, Consolas, Bitstream Vera Sans Mono, monospace;
|
|
1239
|
+
font-size: 12px;
|
|
1240
|
+
text-align: left;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
.vjs-tree.is-virtual {
|
|
1244
|
+
overflow: auto;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.vjs-tree.is-virtual .vjs-tree-node {
|
|
1248
|
+
white-space: nowrap;
|
|
1249
|
+
}
|