@bagelink/vue 1.12.19 → 1.12.25
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/dist/components/calendar/CalendarTypes.d.ts.map +1 -1
- package/dist/components/calendar/Index.vue.d.ts.map +1 -1
- package/dist/components/calendar/views/WeekView.vue.d.ts.map +1 -1
- package/dist/components/dataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/ArrayInput.vue.d.ts.map +1 -1
- package/dist/components/layout/AppLayout.vue.d.ts.map +1 -1
- package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
- package/dist/dialog/DialogForm.vue.d.ts.map +1 -1
- package/dist/form-flow/FormFlow.vue.d.ts.map +1 -1
- package/dist/form-flow/form-flow.d.ts.map +1 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.cjs +124 -124
- package/dist/index.mjs +13282 -13011
- package/dist/plugins/bagel.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Pagination.vue +1 -1
- package/src/components/calendar/CalendarTypes.ts +11 -0
- package/src/components/calendar/Index.vue +25 -4
- package/src/components/calendar/views/WeekView.vue +260 -16
- package/src/components/dataTable/DataTable.vue +10 -0
- package/src/components/form/inputs/ArrayInput.vue +4 -3
- package/src/components/layout/AppLayout.vue +4 -2
- package/src/components/layout/AppSidebar.vue +21 -8
- package/src/dialog/DialogForm.vue +7 -9
- package/src/form-flow/FormFlow.vue +14 -1
- package/src/form-flow/MultiStepForm.vue +1 -1
- package/src/form-flow/form-flow.ts +2 -2
- package/src/i18n/locales/en.json +48 -0
- package/src/i18n/locales/es.json +1 -0
- package/src/i18n/locales/fr.json +1 -0
- package/src/i18n/locales/he.json +48 -0
- package/src/i18n/locales/it.json +1 -0
- package/src/i18n/locales/ru.json +1 -0
- package/src/plugins/bagel.ts +2 -0
- package/src/plugins/useModal.ts +2 -2
- package/src/styles/buttons.css +6 -4
- package/src/styles/layout.css +48 -2
- package/src/styles/mobilLayout.css +41 -0
- package/src/styles/text.css +1759 -1755
- package/src/types/index.ts +4 -3
- package/src/utils/elementUtils.ts +1 -1
|
@@ -348,7 +348,7 @@ defineExpose({
|
|
|
348
348
|
</script>
|
|
349
349
|
|
|
350
350
|
<template>
|
|
351
|
-
<form ref="formElement" :class="schema._class" @submit="handleSubmit">
|
|
351
|
+
<form ref="formElement" class="grid-form" :class="schema._class" @submit="handleSubmit">
|
|
352
352
|
<template v-if="formState === 'success'">
|
|
353
353
|
<slot name="success" :form-data="formData" />
|
|
354
354
|
</template>
|
|
@@ -376,6 +376,19 @@ defineExpose({
|
|
|
376
376
|
</ArrayInput>
|
|
377
377
|
</template>
|
|
378
378
|
|
|
379
|
+
<!-- Array field with primitive string item type e.g. $.array('Label', 'text') -->
|
|
380
|
+
<template v-else-if="field._type === 'array' && typeof field._config.schema === 'string'">
|
|
381
|
+
<ArrayInput v-bind="getFieldProps(field, key)">
|
|
382
|
+
<template #default="{ item }">
|
|
383
|
+
<component
|
|
384
|
+
:is="getFieldComponent(field._config.schema as string)"
|
|
385
|
+
:model-value="(item.value as string | number | undefined)"
|
|
386
|
+
@update:model-value="(val: any) => { item.value = val }"
|
|
387
|
+
/>
|
|
388
|
+
</template>
|
|
389
|
+
</ArrayInput>
|
|
390
|
+
</template>
|
|
391
|
+
|
|
379
392
|
<!-- Array field with custom component -->
|
|
380
393
|
<template v-else-if="field._type === 'array' && field._config.schema">
|
|
381
394
|
<ArrayInput v-bind="getFieldProps(field, key)">
|
|
@@ -360,7 +360,7 @@ defineExpose({
|
|
|
360
360
|
<!-- Default: Use FormFlow -->
|
|
361
361
|
<FormFlow v-model="formData" :schema="currentStepSchema" :components="components" :errors="stepErrors">
|
|
362
362
|
<!-- Pass through field slots -->
|
|
363
|
-
<template v-for="(_, name) in $slots" #[name]="slotProps">
|
|
363
|
+
<template v-for="(_, name) in ($slots as Record<string, unknown>)" #[name]="slotProps">
|
|
364
364
|
<slot :name="name" v-bind="slotProps" />
|
|
365
365
|
</template>
|
|
366
366
|
</FormFlow>
|
|
@@ -285,8 +285,8 @@ export const $ = {
|
|
|
285
285
|
},
|
|
286
286
|
|
|
287
287
|
richtext(
|
|
288
|
-
labelOrConfig?: string | (BaseFieldConfig & { autoheight?: boolean, basic?: boolean }),
|
|
289
|
-
config?: BaseFieldConfig & { autoheight?: boolean, basic?: boolean }
|
|
288
|
+
labelOrConfig?: string | (BaseFieldConfig & { autoheight?: boolean, basic?: boolean, simple?: boolean }),
|
|
289
|
+
config?: BaseFieldConfig & { autoheight?: boolean, basic?: boolean, simple?: boolean }
|
|
290
290
|
): FieldBuilder<string> {
|
|
291
291
|
return new Field('richtext', parseArgs(labelOrConfig, config))
|
|
292
292
|
},
|
package/src/i18n/locales/en.json
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
"closeEditor": "Close Editor (ESC)",
|
|
183
183
|
"blockNotEditable": "This block's content comes from a data source",
|
|
184
184
|
"blockNotEditableDesc": "and cannot be edited here.",
|
|
185
|
+
"dataSourceHint": "Some content in this block may come from a data source. To change it, edit the data directly.",
|
|
185
186
|
"screenTooSmall": "The screen is too small for this editor. Try reducing zoom or using a larger screen.",
|
|
186
187
|
"cancel": "Cancel",
|
|
187
188
|
"publish": "Publish",
|
|
@@ -210,6 +211,53 @@
|
|
|
210
211
|
"production": "Production",
|
|
211
212
|
"publishFailed": "Publish failed"
|
|
212
213
|
},
|
|
214
|
+
"collection": {
|
|
215
|
+
"loadError": "Loading failed",
|
|
216
|
+
"newItemTitle": "New item — {label}",
|
|
217
|
+
"createSubmit": "Create",
|
|
218
|
+
"editTitle": "Edit",
|
|
219
|
+
"saveSubmit": "Save",
|
|
220
|
+
"importTitle": "Import JSON — {label}",
|
|
221
|
+
"importSubmit": "Import",
|
|
222
|
+
"importJsonLabel": "JSON content",
|
|
223
|
+
"importJsonHint": "Array of objects [ {...}, {...} ] or a single object",
|
|
224
|
+
"importSummary": "{imported} imported · {failed} failed",
|
|
225
|
+
"deleteItemTitle": "Delete item",
|
|
226
|
+
"deleteItemMessage": "Delete this item?",
|
|
227
|
+
"deleteConfirm": "Delete",
|
|
228
|
+
"batchDeleteTitle": "Batch delete",
|
|
229
|
+
"batchDeleteMessage": "Delete {count} items?",
|
|
230
|
+
"batchDeleteSummary": "{deleted} deleted · {failed} failed",
|
|
231
|
+
"batchUpdateTitle": "Batch update — {count} items",
|
|
232
|
+
"updateAllSubmit": "Update all",
|
|
233
|
+
"batchUpdateSummary": "Updated · {failed} failed",
|
|
234
|
+
"selectedCount": "{count} selected",
|
|
235
|
+
"updateBtn": "Update",
|
|
236
|
+
"deleteBtn": "Delete",
|
|
237
|
+
"searchPlaceholder": "Search...",
|
|
238
|
+
"refreshTooltip": "Refresh",
|
|
239
|
+
"importTooltip": "Import JSON",
|
|
240
|
+
"newItemBtn": "New item",
|
|
241
|
+
"deleteTooltip": "Delete",
|
|
242
|
+
"reorderTooltip": "Reorder",
|
|
243
|
+
"reorderSaving": "Saving order..."
|
|
244
|
+
},
|
|
245
|
+
"datastores": {
|
|
246
|
+
"selectCollection": "Select a collection from the list",
|
|
247
|
+
"fieldName": "Name",
|
|
248
|
+
"fieldStore": "Store",
|
|
249
|
+
"fieldStoreHint": "e.g.: default",
|
|
250
|
+
"fieldCollection": "Collection",
|
|
251
|
+
"fieldCollectionHint": "e.g.: my_collection",
|
|
252
|
+
"fieldDescription": "Description",
|
|
253
|
+
"createTitle": "Create new Datastore",
|
|
254
|
+
"createSubmit": "Create",
|
|
255
|
+
"editTitle": "Edit {name}",
|
|
256
|
+
"saveSubmit": "Save",
|
|
257
|
+
"addBtn": "Add Datastore",
|
|
258
|
+
"empty": "No Datastores yet",
|
|
259
|
+
"deleteConfirm": "Delete \"{name}\"?"
|
|
260
|
+
},
|
|
213
261
|
"admin": {
|
|
214
262
|
"content": "Content",
|
|
215
263
|
"blox": "Blox",
|
package/src/i18n/locales/es.json
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
"closeEditor": "Cerrar editor (ESC)",
|
|
183
183
|
"blockNotEditable": "El contenido de este bloque proviene de una fuente de datos",
|
|
184
184
|
"blockNotEditableDesc": "y no se puede editar aquí.",
|
|
185
|
+
"dataSourceHint": "Parte del contenido de este bloque proviene de una fuente de datos. Para cambiarlo, edita los datos directamente.",
|
|
185
186
|
"screenTooSmall": "La pantalla es demasiado pequeña para este editor. Prueba reducir el zoom o usar una pantalla más grande.",
|
|
186
187
|
"cancel": "Cancelar",
|
|
187
188
|
"publish": "Publicar",
|
package/src/i18n/locales/fr.json
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
"closeEditor": "Fermer l'éditeur (ESC)",
|
|
183
183
|
"blockNotEditable": "Le contenu de ce bloc provient d'une source de données",
|
|
184
184
|
"blockNotEditableDesc": "et ne peut pas être édité ici.",
|
|
185
|
+
"dataSourceHint": "Une partie du contenu de ce bloc provient d'une source de données. Pour le modifier, éditez les données directement.",
|
|
185
186
|
"screenTooSmall": "L'écran est trop petit pour cet éditeur. Essayez de réduire le zoom ou d'utiliser un écran plus grand.",
|
|
186
187
|
"cancel": "Annuler",
|
|
187
188
|
"publish": "Publier",
|
package/src/i18n/locales/he.json
CHANGED
|
@@ -203,6 +203,7 @@
|
|
|
203
203
|
"closeEditor": "סגור עורך (ESC)",
|
|
204
204
|
"blockNotEditable": "תוכן הבלוק הזה מגיע ממקור נתונים",
|
|
205
205
|
"blockNotEditableDesc": "ואינו ניתן לעריכה כאן.",
|
|
206
|
+
"dataSourceHint": "ייתכן שחלק מהתוכן בבלוק זה מגיע ממקור נתונים. כדי לשנות אותו, ערוך את הדאטה ישירות.",
|
|
206
207
|
"screenTooSmall": "המסך קטן מדי לעורך הזה. נסו להקטין זום או להשתמש במסך גדול יותר.",
|
|
207
208
|
"cancel": "ביטול",
|
|
208
209
|
"publish": "פרסום",
|
|
@@ -231,6 +232,53 @@
|
|
|
231
232
|
"production": "פרודקשן",
|
|
232
233
|
"publishFailed": "פרסום נכשל"
|
|
233
234
|
},
|
|
235
|
+
"collection": {
|
|
236
|
+
"loadError": "טעינה נכשלה",
|
|
237
|
+
"newItemTitle": "פריט חדש — {label}",
|
|
238
|
+
"createSubmit": "יצירה",
|
|
239
|
+
"editTitle": "עריכה",
|
|
240
|
+
"saveSubmit": "שמירה",
|
|
241
|
+
"importTitle": "ייבוא JSON — {label}",
|
|
242
|
+
"importSubmit": "ייבוא",
|
|
243
|
+
"importJsonLabel": "תוכן JSON",
|
|
244
|
+
"importJsonHint": "מערך של אובייקטים [ {...}, {...} ] או אובייקט בודד",
|
|
245
|
+
"importSummary": "{imported} יובאו · {failed} נכשלו",
|
|
246
|
+
"deleteItemTitle": "מחיקת פריט",
|
|
247
|
+
"deleteItemMessage": "האם למחוק פריט זה?",
|
|
248
|
+
"deleteConfirm": "מחיקה",
|
|
249
|
+
"batchDeleteTitle": "מחיקה קבוצתית",
|
|
250
|
+
"batchDeleteMessage": "האם למחוק {count} פריטים?",
|
|
251
|
+
"batchDeleteSummary": "{deleted} נמחקו · {failed} נכשלו",
|
|
252
|
+
"batchUpdateTitle": "עדכון קבוצתי — {count} פריטים",
|
|
253
|
+
"updateAllSubmit": "עדכן הכל",
|
|
254
|
+
"batchUpdateSummary": "עודכנו · {failed} נכשלו",
|
|
255
|
+
"selectedCount": "{count} נבחרו",
|
|
256
|
+
"updateBtn": "עדכון",
|
|
257
|
+
"deleteBtn": "מחיקה",
|
|
258
|
+
"searchPlaceholder": "חיפוש...",
|
|
259
|
+
"refreshTooltip": "ריענון",
|
|
260
|
+
"importTooltip": "ייבוא JSON",
|
|
261
|
+
"newItemBtn": "פריט חדש",
|
|
262
|
+
"deleteTooltip": "מחיקה",
|
|
263
|
+
"reorderTooltip": "שינוי סדר",
|
|
264
|
+
"reorderSaving": "שומר סדר..."
|
|
265
|
+
},
|
|
266
|
+
"datastores": {
|
|
267
|
+
"selectCollection": "בחרו קולקציה מהרשימה",
|
|
268
|
+
"fieldName": "שם",
|
|
269
|
+
"fieldStore": "Store",
|
|
270
|
+
"fieldStoreHint": "לדוגמה: default",
|
|
271
|
+
"fieldCollection": "Collection",
|
|
272
|
+
"fieldCollectionHint": "לדוגמה: my_collection",
|
|
273
|
+
"fieldDescription": "תיאור",
|
|
274
|
+
"createTitle": "יצירת Datastore חדש",
|
|
275
|
+
"createSubmit": "יצירה",
|
|
276
|
+
"editTitle": "עריכת {name}",
|
|
277
|
+
"saveSubmit": "שמירה",
|
|
278
|
+
"addBtn": "הוספת Datastore",
|
|
279
|
+
"empty": "אין Datastores עדיין",
|
|
280
|
+
"deleteConfirm": "למחוק את \"{name}\"?"
|
|
281
|
+
},
|
|
234
282
|
"admin": {
|
|
235
283
|
"content": "תוכן",
|
|
236
284
|
"blox": "בלוקס",
|
package/src/i18n/locales/it.json
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
"closeEditor": "Chiudi editor (ESC)",
|
|
183
183
|
"blockNotEditable": "Il contenuto di questo blocco proviene da una fonte di dati",
|
|
184
184
|
"blockNotEditableDesc": "e non può essere modificato qui.",
|
|
185
|
+
"dataSourceHint": "Parte del contenuto di questo blocco proviene da una fonte di dati. Per modificarlo, modifica i dati direttamente.",
|
|
185
186
|
"screenTooSmall": "Lo schermo è troppo piccolo per questo editor. Prova a ridurre lo zoom o utilizzare uno schermo più grande.",
|
|
186
187
|
"cancel": "Annulla",
|
|
187
188
|
"publish": "Pubblica",
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
"closeEditor": "Закрыть редактор (ESC)",
|
|
183
183
|
"blockNotEditable": "Содержимое этого блока поступает из источника данных",
|
|
184
184
|
"blockNotEditableDesc": "и не может быть отредактировано здесь.",
|
|
185
|
+
"dataSourceHint": "Часть содержимого этого блока поступает из источника данных. Чтобы изменить его, отредактируйте данные напрямую.",
|
|
185
186
|
"screenTooSmall": "Экран слишком мал для этого редактора. Попробуйте уменьшить масштаб или использовать большой экран.",
|
|
186
187
|
"cancel": "Отмена",
|
|
187
188
|
"publish": "Опубликовать",
|
package/src/plugins/bagel.ts
CHANGED
|
@@ -5,6 +5,7 @@ import type { BagelToastOptions } from './useToast'
|
|
|
5
5
|
import { configure } from '@bagelink/utils'
|
|
6
6
|
import FloatingVue from 'floating-vue'
|
|
7
7
|
import lightboxPlugin from '../components/lightbox/index'
|
|
8
|
+
import { DialogPlugin } from '../dialog/useDialog'
|
|
8
9
|
import { ripple, pattern } from '../directives'
|
|
9
10
|
import { createI18n, getI18n } from '../i18n'
|
|
10
11
|
import clickOutside from '../utils/clickOutside'
|
|
@@ -27,6 +28,7 @@ export const BagelVue: Plugin<BagelOptions> = {
|
|
|
27
28
|
|
|
28
29
|
// Install UI plugins
|
|
29
30
|
app.use(lightboxPlugin)
|
|
31
|
+
app.use(DialogPlugin)
|
|
30
32
|
app.use(ModalPlugin)
|
|
31
33
|
app.use(ToastPlugin, options.toast || {})
|
|
32
34
|
|
package/src/plugins/useModal.ts
CHANGED
|
@@ -9,7 +9,7 @@ import type {
|
|
|
9
9
|
ConfirmModalUserOptions,
|
|
10
10
|
ModalConfirmOptions
|
|
11
11
|
} from './modalTypes'
|
|
12
|
-
import { createApp, defineComponent, h, inject, reactive } from 'vue'
|
|
12
|
+
import { createApp, defineComponent, h, inject, reactive, shallowReactive } from 'vue'
|
|
13
13
|
import { Modal, ModalConfirm, ModalForm } from '../components'
|
|
14
14
|
|
|
15
15
|
export interface ModalApi {
|
|
@@ -65,7 +65,7 @@ export const ModalPlugin: Plugin = {
|
|
|
65
65
|
return new Promise((resolve) => {
|
|
66
66
|
const confirmOptions = typeof options === 'string' ? { title: '', message: options } : options
|
|
67
67
|
modalStack.push({
|
|
68
|
-
modalOptions:
|
|
68
|
+
modalOptions: shallowReactive({ ...confirmOptions, resolve }),
|
|
69
69
|
modalType: 'confirmModal',
|
|
70
70
|
componentSlots: {},
|
|
71
71
|
})
|
package/src/styles/buttons.css
CHANGED
|
@@ -57,10 +57,16 @@
|
|
|
57
57
|
filter: brightness(90%);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
|
|
60
61
|
.hover:active {
|
|
61
62
|
filter: brightness(80%);
|
|
62
63
|
}
|
|
63
64
|
|
|
65
|
+
.hover-transparent:hover,
|
|
66
|
+
.hover-transparent:active {
|
|
67
|
+
background: var(--bgl-black-10);
|
|
68
|
+
}
|
|
69
|
+
|
|
64
70
|
.line-hover,
|
|
65
71
|
.underline-hover,
|
|
66
72
|
.hover-line,
|
|
@@ -83,10 +89,6 @@
|
|
|
83
89
|
border: 1px solid var(--border-color);
|
|
84
90
|
}
|
|
85
91
|
|
|
86
|
-
.border-primary {
|
|
87
|
-
border: 1px solid var(--bgl-primary);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
92
|
.outline {
|
|
91
93
|
outline: 1px solid var(--border-color);
|
|
92
94
|
}
|
package/src/styles/layout.css
CHANGED
|
@@ -198,7 +198,8 @@
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.justify-content,
|
|
201
|
-
.justify-content-center
|
|
201
|
+
.justify-content-center,
|
|
202
|
+
.justify-center {
|
|
202
203
|
justify-content: center;
|
|
203
204
|
}
|
|
204
205
|
|
|
@@ -226,7 +227,8 @@
|
|
|
226
227
|
align-items: flex-start !important;
|
|
227
228
|
}
|
|
228
229
|
|
|
229
|
-
.align-items-center
|
|
230
|
+
.align-items-center,
|
|
231
|
+
.align-center {
|
|
230
232
|
align-items: center !important;
|
|
231
233
|
}
|
|
232
234
|
|
|
@@ -3364,6 +3366,46 @@
|
|
|
3364
3366
|
height: 10px !important;
|
|
3365
3367
|
}
|
|
3366
3368
|
|
|
3369
|
+
.max-h-10p {
|
|
3370
|
+
max-height: 10%;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
.max-h-20p {
|
|
3374
|
+
max-height: 20%;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
.max-h-30p {
|
|
3378
|
+
max-height: 30%;
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3381
|
+
.max-h-40p {
|
|
3382
|
+
max-height: 40%;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
.max-h-50p {
|
|
3386
|
+
max-height: 50%;
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
.max-h-60p {
|
|
3390
|
+
max-height: 60%;
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3393
|
+
.max-h-70p {
|
|
3394
|
+
max-height: 70%;
|
|
3395
|
+
}
|
|
3396
|
+
|
|
3397
|
+
.max-h-80p {
|
|
3398
|
+
max-height: 80%;
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
.max-h-90p {
|
|
3402
|
+
max-height: 90%;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
.max-h-100p {
|
|
3406
|
+
max-height: 100%;
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3367
3409
|
.hm-10px,
|
|
3368
3410
|
.max-h-10px,
|
|
3369
3411
|
.h-max-10px,
|
|
@@ -3651,6 +3693,10 @@
|
|
|
3651
3693
|
max-height: 100px;
|
|
3652
3694
|
}
|
|
3653
3695
|
|
|
3696
|
+
.max-h-100p {
|
|
3697
|
+
max-height: 100%;
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3654
3700
|
.hm-100vh,
|
|
3655
3701
|
.max-h-100vh,
|
|
3656
3702
|
.h-max-100vh,
|
|
@@ -2609,6 +2609,47 @@
|
|
|
2609
2609
|
height: 10vh !important;
|
|
2610
2610
|
}
|
|
2611
2611
|
|
|
2612
|
+
|
|
2613
|
+
.m_max-h-10p {
|
|
2614
|
+
max-height: 10%;
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2617
|
+
.m_max-h-20p {
|
|
2618
|
+
max-height: 20%;
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
.m_max-h-30p {
|
|
2622
|
+
max-height: 30%;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
.m_max-h-40p {
|
|
2626
|
+
max-height: 40%;
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
.m_max-h-50p {
|
|
2630
|
+
max-height: 50%;
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
.m_max-h-60p {
|
|
2634
|
+
max-height: 60%;
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
.m_max-h-70p {
|
|
2638
|
+
max-height: 70%;
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
.m_max-h-80p {
|
|
2642
|
+
max-height: 80%;
|
|
2643
|
+
}
|
|
2644
|
+
|
|
2645
|
+
.m_max-h-90p {
|
|
2646
|
+
max-height: 90%;
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
.m_max-h-100p {
|
|
2650
|
+
max-height: 100%;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2612
2653
|
.m_h-10px,
|
|
2613
2654
|
.m_h10px {
|
|
2614
2655
|
height: 10px !important;
|