@mediusinc/mng-commons 0.2.5 → 0.2.9
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 +46 -0
- package/assets/i18n/en.json +202 -147
- package/assets/i18n/sl.json +202 -147
- package/esm2020/lib/api/models/builders/query-param.builder.mjs +1 -1
- package/esm2020/lib/api/models/filter-match-type.model.mjs +1 -1
- package/esm2020/lib/api/models/filter-param.model.mjs +16 -27
- package/esm2020/lib/api/models/mappers.mjs +7 -7
- package/esm2020/lib/api/models/query-mode.model.mjs +1 -1
- package/esm2020/lib/api/models/query-param.model.mjs +38 -37
- package/esm2020/lib/api/models/query-result.model.mjs +14 -13
- package/esm2020/lib/api/services/crud-api.abstract.service.mjs +28 -21
- package/esm2020/lib/api/utils/medius-rest.util.mjs +11 -7
- package/esm2020/lib/api/utils/object-serializer.util.mjs +34 -27
- package/esm2020/lib/components/action/action.component.mjs +10 -7
- package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +17 -14
- package/esm2020/lib/components/action/models/action-confirmation-service.model.mjs +1 -1
- package/esm2020/lib/components/action/models/action-execution.model.mjs +1 -1
- package/esm2020/lib/components/action/route/action-route.component.mjs +8 -6
- package/esm2020/lib/components/form/autocomplete/autocomplete.component.mjs +16 -14
- package/esm2020/lib/components/form/dropdown/dropdown.component.mjs +16 -15
- package/esm2020/lib/components/form/editor/form-editor.component.mjs +21 -24
- package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +3 -3
- package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +3 -3
- package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +4 -4
- package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +8 -4
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +13 -14
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +12 -11
- package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +4 -4
- package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +1 -3
- package/esm2020/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.mjs +1 -3
- package/esm2020/lib/components/form/models/form-editor.event.mjs +1 -1
- package/esm2020/lib/components/layout/breadcrumb.component.mjs +3 -3
- package/esm2020/lib/components/layout/footer.component.mjs +3 -3
- package/esm2020/lib/components/layout/main-layout.component.mjs +4 -4
- package/esm2020/lib/components/layout/menu-item.component.mjs +36 -34
- package/esm2020/lib/components/layout/menu.component.mjs +3 -3
- package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +4 -1
- package/esm2020/lib/components/layout/topbar.component.mjs +5 -4
- package/esm2020/lib/components/tableview/index.mjs +2 -1
- package/esm2020/lib/components/tableview/models/table.event.mjs +1 -1
- package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +4 -4
- package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +33 -0
- package/esm2020/lib/components/tableview/services/tableview.component.service.mjs +9 -5
- package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +4 -3
- package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +1 -1
- package/esm2020/lib/components/tableview/table/table.component.mjs +29 -27
- package/esm2020/lib/components/tableview/tableview.component.mjs +11 -3
- package/esm2020/lib/config/formly.config.mjs +30 -22
- package/esm2020/lib/config/models/mng-config.model.mjs +1 -1
- package/esm2020/lib/data-providers/base.data-provider.mjs +1 -8
- package/esm2020/lib/data-providers/editor.data-provider.mjs +2 -2
- package/esm2020/lib/data-providers/lookup.data-provider.mjs +1 -1
- package/esm2020/lib/data-providers/tableview.data-provider.mjs +2 -2
- package/esm2020/lib/descriptors/action.descriptor.mjs +3 -5
- package/esm2020/lib/descriptors/editor.descriptor.mjs +105 -72
- package/esm2020/lib/descriptors/field.validator.mjs +1 -1
- package/esm2020/lib/descriptors/lookup.descriptor.mjs +1 -1
- package/esm2020/lib/descriptors/model.descriptor.mjs +3 -3
- package/esm2020/lib/descriptors/table.descriptor.mjs +52 -43
- package/esm2020/lib/descriptors/tableview.descriptor.mjs +7 -7
- package/esm2020/lib/directives/component.directive.mjs +2 -2
- package/esm2020/lib/directives/template.directive.mjs +2 -3
- package/esm2020/lib/mng-commons.module.mjs +36 -41
- package/esm2020/lib/models/enum.model.mjs +2 -0
- package/esm2020/lib/models/index.mjs +2 -2
- package/esm2020/lib/models/user.model.mjs +1 -1
- package/esm2020/lib/pipes/boolean.pipe.mjs +1 -1
- package/esm2020/lib/pipes/i18n-property.pipe.mjs +18 -0
- package/esm2020/lib/pipes/index.mjs +2 -1
- package/esm2020/lib/pipes/property-path.pipe.mjs +1 -1
- package/esm2020/lib/router/index.mjs +2 -0
- package/esm2020/lib/router/models/index.mjs +2 -0
- package/esm2020/lib/router/models/router.model.mjs +2 -0
- package/esm2020/lib/router/route-builder.mjs +293 -0
- package/esm2020/lib/services/action.service.mjs +19 -15
- package/esm2020/lib/services/commons.service.mjs +15 -23
- package/esm2020/lib/services/configuration.service.mjs +3 -4
- package/esm2020/lib/services/navigation.service.mjs +2 -2
- package/esm2020/lib/services/providers/config-service.provider.mjs +2 -2
- package/esm2020/lib/services/providers/formly-config.provider.mjs +1 -1
- package/esm2020/lib/services/tokens/browser-storage.token.mjs +1 -1
- package/esm2020/lib/types/type.decorator.mjs +7 -1
- package/esm2020/lib/types/type.model.mjs +1 -1
- package/esm2020/lib/utils/editor-formly.util.mjs +10 -21
- package/esm2020/lib/utils/enum.util.mjs +61 -0
- package/esm2020/lib/utils/i18n.util.mjs +39 -27
- package/esm2020/lib/utils/index.mjs +2 -1
- package/esm2020/lib/utils/model.util.mjs +1 -1
- package/esm2020/lib/utils/route.util.mjs +24 -0
- package/esm2020/lib/utils/toast.util.mjs +3 -2
- package/esm2020/lib/utils/type.util.mjs +40 -2
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/mediusinc-mng-commons.mjs +3138 -2599
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +3129 -2589
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/api/models/filter-param.model.d.ts +1 -1
- package/lib/api/services/crud-api.abstract.service.d.ts +6 -6
- package/lib/api/utils/medius-rest.util.d.ts +1 -1
- package/lib/api/utils/object-serializer.util.d.ts +6 -5
- package/lib/components/action/action.component.d.ts +3 -3
- package/lib/components/action/dialog/action-dialog.component.d.ts +9 -8
- package/lib/components/action/models/action-execution.model.d.ts +1 -1
- package/lib/components/action/route/action-route.component.d.ts +2 -2
- package/lib/components/form/autocomplete/autocomplete.component.d.ts +4 -3
- package/lib/components/form/dropdown/dropdown.component.d.ts +4 -3
- package/lib/components/form/editor/form-editor.component.d.ts +7 -6
- package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +2 -1
- package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +2 -1
- package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +1 -1
- package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +1 -3
- package/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.d.ts +1 -3
- package/lib/components/layout/main-layout.component.d.ts +3 -3
- package/lib/components/layout/menu-item.component.d.ts +7 -7
- package/lib/components/layout/services/main-layout.component.service.d.ts +1 -1
- package/lib/components/layout/topbar.component.d.ts +4 -4
- package/lib/components/tableview/index.d.ts +1 -0
- package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +4 -3
- package/lib/components/tableview/route/tableview-route.component.d.ts +15 -0
- package/lib/components/tableview/services/tableview.component.service.d.ts +3 -2
- package/lib/components/tableview/table/table.component.d.ts +21 -19
- package/lib/components/tableview/tableview.component.d.ts +6 -4
- package/lib/config/formly.config.d.ts +2 -1
- package/lib/data-providers/base.data-provider.d.ts +0 -3
- package/lib/descriptors/action.descriptor.d.ts +2 -2
- package/lib/descriptors/editor.descriptor.d.ts +40 -33
- package/lib/descriptors/lookup.descriptor.d.ts +1 -1
- package/lib/descriptors/table.descriptor.d.ts +19 -16
- package/lib/descriptors/tableview.descriptor.d.ts +9 -9
- package/lib/mng-commons.module.d.ts +68 -65
- package/lib/models/enum.model.d.ts +5 -0
- package/lib/models/index.d.ts +1 -1
- package/lib/pipes/i18n-property.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/router/index.d.ts +1 -0
- package/lib/router/models/index.d.ts +1 -0
- package/lib/router/models/router.model.d.ts +22 -0
- package/lib/router/route-builder.d.ts +66 -0
- package/lib/services/action.service.d.ts +3 -3
- package/lib/services/commons.service.d.ts +6 -6
- package/lib/services/navigation.service.d.ts +1 -1
- package/lib/services/providers/formly-config.provider.d.ts +1 -1
- package/lib/types/type.decorator.d.ts +2 -0
- package/lib/types/type.model.d.ts +2 -2
- package/lib/utils/editor-formly.util.d.ts +1 -1
- package/lib/utils/enum.util.d.ts +39 -0
- package/lib/utils/i18n.util.d.ts +6 -2
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/model.util.d.ts +1 -1
- package/lib/utils/route.util.d.ts +4 -0
- package/lib/utils/toast.util.d.ts +1 -1
- package/lib/utils/type.util.d.ts +22 -1
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
- package/scss/common/layout/_breadcrumb.scss +6 -6
- package/scss/common/layout/_config.scss +7 -8
- package/scss/common/layout/_exception.scss +12 -11
- package/scss/common/layout/_footer.scss +3 -3
- package/scss/common/layout/_help.scss +8 -9
- package/scss/common/layout/_inlinemenu.scss +3 -3
- package/scss/common/layout/_invoice.scss +16 -16
- package/scss/common/layout/_landing.scss +57 -60
- package/scss/common/layout/_loader.scss +0 -1
- package/scss/common/layout/_login.scss +3 -4
- package/scss/common/layout/_main.scss +3 -3
- package/scss/common/layout/_mixins.scss +28 -20
- package/scss/common/layout/_rightmenu.scss +5 -5
- package/scss/common/layout/_topbar.scss +7 -5
- package/scss/common/layout/_typography.scss +11 -6
- package/scss/common/layout/_utils.scss +1 -1
- package/scss/common/layout/_widgets.scss +20 -19
- package/scss/common/layout/menu/_menu_common.scss +6 -6
- package/scss/common/layout/menu/_menu_overlay.scss +1 -1
- package/scss/common/layout/menu/_menu_sidebar.scss +6 -5
- package/scss/common/layout/menu/_menu_slim.scss +2 -3
- package/scss/common/layout/menu/_menu_static.scss +1 -1
- package/scss/common/layout/menu/_menu_theme.scss +2 -3
- package/scss/common/theme/designer/_colors.scss +11 -12
- package/scss/common/theme/designer/_common.scss +4 -3
- package/scss/common/theme/designer/_mixins.scss +56 -56
- package/scss/common/theme/designer/components/button/_button.scss +32 -20
- package/scss/common/theme/designer/components/button/_speeddial.scss +1 -1
- package/scss/common/theme/designer/components/button/_splitbutton.scss +2 -1
- package/scss/common/theme/designer/components/data/_carousel.scss +1 -1
- package/scss/common/theme/designer/components/data/_datatable.scss +5 -5
- package/scss/common/theme/designer/components/data/_filter.scss +2 -3
- package/scss/common/theme/designer/components/data/_fullcalendar.scss +10 -10
- package/scss/common/theme/designer/components/data/_orderlist.scss +2 -2
- package/scss/common/theme/designer/components/data/_paginator.scss +1 -1
- package/scss/common/theme/designer/components/data/_picklist.scss +1 -1
- package/scss/common/theme/designer/components/data/_timeline.scss +3 -6
- package/scss/common/theme/designer/components/data/_tree.scss +2 -2
- package/scss/common/theme/designer/components/data/_treetable.scss +2 -3
- package/scss/common/theme/designer/components/input/_autocomplete.scss +8 -8
- package/scss/common/theme/designer/components/input/_calendar.scss +6 -6
- package/scss/common/theme/designer/components/input/_cascadeselect.scss +1 -1
- package/scss/common/theme/designer/components/input/_checkbox.scss +4 -4
- package/scss/common/theme/designer/components/input/_chips.scss +4 -4
- package/scss/common/theme/designer/components/input/_colorpicker.scss +2 -2
- package/scss/common/theme/designer/components/input/_dropdown.scss +2 -2
- package/scss/common/theme/designer/components/input/_editor.scss +7 -7
- package/scss/common/theme/designer/components/input/_inputgroup.scss +1 -1
- package/scss/common/theme/designer/components/input/_inputmask.scss +1 -1
- package/scss/common/theme/designer/components/input/_inputnumber.scss +1 -1
- package/scss/common/theme/designer/components/input/_inputswitch.scss +2 -2
- package/scss/common/theme/designer/components/input/_inputtext.scss +3 -3
- package/scss/common/theme/designer/components/input/_listbox.scss +1 -1
- package/scss/common/theme/designer/components/input/_multiselect.scss +5 -6
- package/scss/common/theme/designer/components/input/_radiobutton.scss +2 -2
- package/scss/common/theme/designer/components/input/_rating.scss +1 -1
- package/scss/common/theme/designer/components/input/_selectbutton.scss +1 -1
- package/scss/common/theme/designer/components/input/_togglebutton.scss +1 -1
- package/scss/common/theme/designer/components/input/_treeselect.scss +2 -2
- package/scss/common/theme/designer/components/menu/_contextmenu.scss +3 -2
- package/scss/common/theme/designer/components/menu/_dock.scss +4 -4
- package/scss/common/theme/designer/components/menu/_megamenu.scss +10 -9
- package/scss/common/theme/designer/components/menu/_menu.scss +2 -2
- package/scss/common/theme/designer/components/menu/_menubar.scss +12 -11
- package/scss/common/theme/designer/components/menu/_panelmenu.scss +1 -2
- package/scss/common/theme/designer/components/menu/_slidemenu.scss +3 -2
- package/scss/common/theme/designer/components/menu/_steps.scss +1 -2
- package/scss/common/theme/designer/components/menu/_tieredmenu.scss +3 -2
- package/scss/common/theme/designer/components/messages/_message.scss +1 -1
- package/scss/common/theme/designer/components/messages/_toast.scss +1 -2
- package/scss/common/theme/designer/components/misc/_avatar.scss +1 -1
- package/scss/common/theme/designer/components/misc/_badge.scss +1 -1
- package/scss/common/theme/designer/components/misc/_blockui.scss +1 -1
- package/scss/common/theme/designer/components/misc/_chip.scss +2 -2
- package/scss/common/theme/designer/components/misc/_inplace.scss +0 -1
- package/scss/common/theme/designer/components/misc/_scrolltop.scss +1 -1
- package/scss/common/theme/designer/components/misc/_skeleton.scss +1 -1
- package/scss/common/theme/designer/components/misc/_tag.scss +1 -1
- package/scss/common/theme/designer/components/misc/_terminal.scss +8 -8
- package/scss/common/theme/designer/components/multimedia/_galleria.scss +1 -1
- package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +2 -4
- package/scss/common/theme/designer/components/overlay/_dialog.scss +3 -3
- package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +2 -4
- package/scss/common/theme/designer/components/panel/_accordion.scss +2 -2
- package/scss/common/theme/designer/components/panel/_divider.scss +1 -1
- package/scss/common/theme/designer/components/panel/_scrollpanel.scss +1 -1
- package/scss/common/theme/designer/components/panel/_splitter.scss +1 -1
- package/scss/common/theme/extensions/_button.scss +18 -6
- package/scss/common/theme/extensions/_orderlist.scss +0 -1
- package/scss/common/theme/extensions/_picklist.scss +0 -1
- package/scss/common/theme/extensions/_tree.scss +0 -1
- package/scss/common/variables/layout/_common.scss +9 -9
- package/scss/common/variables/layout/_layout_dark.scss +12 -12
- package/scss/common/variables/layout/_layout_light.scss +13 -13
- package/scss/common/variables/theme/_theme_dark.scss +76 -76
- package/scss/common/variables/theme/_theme_light.scss +80 -80
- package/scss/layout/default/_mng-variables-layout-dark.scss +1 -1
- package/scss/mng-commons-dark.scss +2 -2
- package/scss/mng-commons-light.scss +2 -2
- package/scss/mng-overrides/_layout_dialog.scss +4 -3
- package/scss/mng-overrides/_layout_forms.scss +6 -1
- package/scss/mng-overrides/_layout_radio.scss +1 -1
- package/scss/mng-overrides/_theme_datepicker.scss +7 -0
- package/scss/mng-overrides/_theme_dialog.scss +0 -1
- package/scss/mng-overrides/_theme_dropdown.scss +0 -1
- package/scss/mng-overrides/_theme_styles.scss +1 -0
- package/scss/mng-overrides/_theme_tableview.scss +6 -6
- package/scss/theme/default/_mng-variables-theme-dark.scss +2 -1
- package/scss/theme/default/_mng-variables-theme-light.scss +2 -1
- package/esm2020/lib/models/router.model.mjs +0 -2
- package/lib/models/router.model.d.ts +0 -14
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
$colors: (
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
'blue': #2196f3,
|
|
3
|
+
'green': #4caf50,
|
|
4
|
+
'yellow': #fbc02d,
|
|
5
|
+
'cyan': #00bcd4,
|
|
6
|
+
'pink': #e91e63,
|
|
7
|
+
'indigo': #3f51b5,
|
|
8
|
+
'teal': #009688,
|
|
9
|
+
'orange': #f57c00,
|
|
10
|
+
'bluegray': #607d8b,
|
|
11
|
+
'purple': #9c27b0
|
|
12
12
|
);
|
|
13
13
|
|
|
14
14
|
//reused color variables
|
|
@@ -17,30 +17,30 @@ $shade100: rgba(68, 72, 109, 0.07) !default; //Alpha - 01
|
|
|
17
17
|
$shade200: rgba(68, 72, 109, 0.12) !default; //Alpha - 02
|
|
18
18
|
$shade300: rgba(68, 72, 109, 0.17) !default; //Alpha - 03
|
|
19
19
|
$shade400: rgba(255, 255, 255, 0.9) !default; //CardBg
|
|
20
|
-
$shade500: #
|
|
21
|
-
$shade600: #
|
|
22
|
-
$shade700: #
|
|
20
|
+
$shade500: #8a8ea6 !default; //text third color
|
|
21
|
+
$shade600: #676b89 !default; //text secondary color
|
|
22
|
+
$shade700: #44486d !default; //text color
|
|
23
23
|
|
|
24
24
|
$solidSurfaceColor: white;
|
|
25
25
|
|
|
26
26
|
//global
|
|
27
|
-
$fontFamily: -apple-system, BlinkMacSystemFont,
|
|
27
|
+
$fontFamily: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
|
|
28
28
|
$fontSize: 1rem !default;
|
|
29
29
|
$fontWeight: normal !default;
|
|
30
30
|
$textColor: $shade700 !default;
|
|
31
31
|
$textSecondaryColor: $shade600 !default;
|
|
32
32
|
$borderRadius: 6px !default;
|
|
33
|
-
$transitionDuration: .2s !default;
|
|
33
|
+
$transitionDuration: 0.2s !default;
|
|
34
34
|
$formElementTransition: background-color $transitionDuration, color $transitionDuration, border-color $transitionDuration, box-shadow $transitionDuration !default;
|
|
35
35
|
$actionIconTransition: background-color $transitionDuration, color $transitionDuration, box-shadow $transitionDuration !default;
|
|
36
36
|
$listItemTransition: box-shadow $transitionDuration !default;
|
|
37
37
|
$primeIconFontSize: 1rem !default;
|
|
38
38
|
$divider: 1px solid $shade300 !default;
|
|
39
|
-
$inlineSpacing: .5rem !default;
|
|
40
|
-
$disabledOpacity: .6 !default;
|
|
39
|
+
$inlineSpacing: 0.5rem !default;
|
|
40
|
+
$disabledOpacity: 0.6 !default;
|
|
41
41
|
$maskBg: rgba(0, 0, 0, 0.05) !default;
|
|
42
42
|
$loadingIconFontSize: 2rem !default;
|
|
43
|
-
$errorColor: #
|
|
43
|
+
$errorColor: #fc6161 !default;
|
|
44
44
|
|
|
45
45
|
//scale
|
|
46
46
|
$scaleSM: 0.875 !default;
|
|
@@ -107,14 +107,14 @@ $inputListHeaderBorder: 0 none !default;
|
|
|
107
107
|
$inputOverlayBg: $solidSurfaceColor !default;
|
|
108
108
|
$inputOverlayHeaderBg: $inputListHeaderBg !default;
|
|
109
109
|
$inputOverlayBorder: 0 none !default;
|
|
110
|
-
$inputOverlayShadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12) !default;
|
|
110
|
+
$inputOverlayShadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
|
|
111
111
|
|
|
112
112
|
//password
|
|
113
113
|
$passwordPanelBg: $solidSurfaceColor !default;
|
|
114
114
|
$passwordMeterBg: $shade200 !default;
|
|
115
|
-
$passwordWeakBg: #
|
|
116
|
-
$passwordMediumBg: #
|
|
117
|
-
$passwordStrongBg: #
|
|
115
|
+
$passwordWeakBg: #d32f2f !default;
|
|
116
|
+
$passwordMediumBg: #fbc02d !default;
|
|
117
|
+
$passwordStrongBg: #689f38 !default;
|
|
118
118
|
|
|
119
119
|
//button
|
|
120
120
|
$buttonPadding: 0.429rem 0.571rem !default;
|
|
@@ -132,18 +132,18 @@ $buttonActiveBorderColor: $primaryDarkerColor !default;
|
|
|
132
132
|
$buttonShadow: 0px 0px 10px rgba($primaryColor, 0.25);
|
|
133
133
|
|
|
134
134
|
$selectbuttonShadow: none !default;
|
|
135
|
-
$raisedButtonShadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12) !default;
|
|
135
|
+
$raisedButtonShadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !default;
|
|
136
136
|
$roundedButtonBorderRadius: 2rem !default;
|
|
137
137
|
|
|
138
|
-
$textButtonHoverBgOpacity: .04 !default;
|
|
139
|
-
$textButtonActiveBgOpacity: .16 !default;
|
|
138
|
+
$textButtonHoverBgOpacity: 0.04 !default;
|
|
139
|
+
$textButtonActiveBgOpacity: 0.16 !default;
|
|
140
140
|
$outlinedButtonBorder: 1px solid !default;
|
|
141
141
|
$plainButtonTextColor: $textSecondaryColor !default;
|
|
142
142
|
$plainButtonHoverBgColor: $shade100 !default;
|
|
143
143
|
$plainButtonActiveBgColor: $shade300 !default;
|
|
144
144
|
|
|
145
145
|
$secondaryButtonBg: $shade100 !default;
|
|
146
|
-
$secondaryButtonTextColor: #
|
|
146
|
+
$secondaryButtonTextColor: #44486d !default;
|
|
147
147
|
$secondaryButtonBorder: 1px solid transparent !default;
|
|
148
148
|
$secondaryButtonHoverBg: $shade200 !default;
|
|
149
149
|
$secondaryButtonTextHoverColor: $secondaryButtonTextColor !default;
|
|
@@ -154,61 +154,61 @@ $secondaryButtonActiveBorderColor: transparent !default;
|
|
|
154
154
|
$secondaryButtonShadow: none !default;
|
|
155
155
|
$secondaryButtonFocusShadow: none !default;
|
|
156
156
|
|
|
157
|
-
$infoButtonBg: #
|
|
158
|
-
$infoButtonTextColor: #
|
|
157
|
+
$infoButtonBg: #873efe !default;
|
|
158
|
+
$infoButtonTextColor: #ffffff !default;
|
|
159
159
|
$infoButtonBorder: 1px solid transparent !default;
|
|
160
|
-
$infoButtonHoverBg: #
|
|
160
|
+
$infoButtonHoverBg: #6c1af2 !default;
|
|
161
161
|
$infoButtonTextHoverColor: $infoButtonTextColor !default;
|
|
162
162
|
$infoButtonHoverBorderColor: transparent !default;
|
|
163
|
-
$infoButtonActiveBg: #
|
|
163
|
+
$infoButtonActiveBg: #5310c1 !default;
|
|
164
164
|
$infoButtonTextActiveColor: $infoButtonTextColor !default;
|
|
165
165
|
$infoButtonActiveBorderColor: transparent !default;
|
|
166
166
|
$infoButtonShadow: 0px 0px 10px rgba(135, 62, 254, 0.25) !default;
|
|
167
167
|
$infoButtonFocusShadow: none !default;
|
|
168
168
|
|
|
169
169
|
$successButtonBg: #397289 !default;
|
|
170
|
-
$successButtonTextColor: #
|
|
170
|
+
$successButtonTextColor: #ffffff !default;
|
|
171
171
|
$successButtonBorder: 1px solid transparent !default;
|
|
172
|
-
$successButtonHoverBg: #
|
|
172
|
+
$successButtonHoverBg: #68a4bb !default;
|
|
173
173
|
$successButtonTextHoverColor: $successButtonTextColor !default;
|
|
174
174
|
$successButtonHoverBorderColor: transparent !default;
|
|
175
|
-
$successButtonActiveBg: #
|
|
175
|
+
$successButtonActiveBg: #264e5e !default;
|
|
176
176
|
$successButtonTextActiveColor: $successButtonTextColor !default;
|
|
177
177
|
$successButtonActiveBorderColor: transparent !default;
|
|
178
178
|
$successButtonShadow: 0px 0px 10px rgba(38, 78, 94, 0.3) !default;
|
|
179
179
|
$successButtonFocusShadow: none !default;
|
|
180
180
|
|
|
181
|
-
$warningButtonBg: #
|
|
182
|
-
$warningButtonTextColor: #
|
|
181
|
+
$warningButtonBg: #eee500 !default;
|
|
182
|
+
$warningButtonTextColor: #44486d !default;
|
|
183
183
|
$warningButtonBorder: 1px solid transparent !default;
|
|
184
|
-
$warningButtonHoverBg: #
|
|
184
|
+
$warningButtonHoverBg: #d1c901 !default;
|
|
185
185
|
$warningButtonTextHoverColor: $warningButtonTextColor !default;
|
|
186
186
|
$warningButtonHoverBorderColor: transparent !default;
|
|
187
|
-
$warningButtonActiveBg: #
|
|
187
|
+
$warningButtonActiveBg: #bab302 !default;
|
|
188
188
|
$warningButtonTextActiveColor: $warningButtonTextColor !default;
|
|
189
189
|
$warningButtonActiveBorderColor: transparent !default;
|
|
190
190
|
$warningButtonShadow: 0px 0px 10px rgba(238, 229, 0, 0.25) !default;
|
|
191
191
|
$warningButtonFocusShadow: none !default;
|
|
192
192
|
|
|
193
|
-
$helpButtonBg: #
|
|
194
|
-
$helpButtonTextColor: #
|
|
193
|
+
$helpButtonBg: #ec4dbc !default;
|
|
194
|
+
$helpButtonTextColor: #ffffff !default;
|
|
195
195
|
$helpButtonBorder: 1px solid transparent !default;
|
|
196
|
-
$helpButtonHoverBg: #
|
|
196
|
+
$helpButtonHoverBg: #e80ea6 !default;
|
|
197
197
|
$helpButtonTextHoverColor: $helpButtonTextColor !default;
|
|
198
198
|
$helpButtonHoverBorderColor: transparent !default;
|
|
199
|
-
$helpButtonActiveBg: #
|
|
199
|
+
$helpButtonActiveBg: #b30c81 !default;
|
|
200
200
|
$helpButtonTextActiveColor: $helpButtonTextColor !default;
|
|
201
201
|
$helpButtonActiveBorderColor: transparent !default;
|
|
202
202
|
$helpButtonShadow: 0px 0px 10px rgba(236, 77, 188, 0.25) !default;
|
|
203
203
|
$helpButtonFocusShadow: none !default;
|
|
204
204
|
|
|
205
|
-
$dangerButtonBg: #
|
|
206
|
-
$dangerButtonTextColor: #
|
|
205
|
+
$dangerButtonBg: #af1d1d !default;
|
|
206
|
+
$dangerButtonTextColor: #ffffff !default;
|
|
207
207
|
$dangerButtonBorder: 1px solid transparent !default;
|
|
208
|
-
$dangerButtonHoverBg: #
|
|
208
|
+
$dangerButtonHoverBg: #e73a3a !default;
|
|
209
209
|
$dangerButtonTextHoverColor: $dangerButtonTextColor !default;
|
|
210
210
|
$dangerButtonHoverBorderColor: transparent !default;
|
|
211
|
-
$dangerButtonActiveBg: #
|
|
211
|
+
$dangerButtonActiveBg: #c42424 !default;
|
|
212
212
|
$dangerButtonTextActiveColor: $dangerButtonTextColor !default;
|
|
213
213
|
$dangerButtonActiveBorderColor: transparent !default;
|
|
214
214
|
$dangerButtonShadow: 0px 0px 10px rgba(252, 97, 97, 0.25) !default;
|
|
@@ -222,9 +222,9 @@ $linkButtonFocusShadow: none !default;
|
|
|
222
222
|
//checkbox
|
|
223
223
|
$checkboxWidth: 20px !default;
|
|
224
224
|
$checkboxHeight: 20px !default;
|
|
225
|
-
$checkboxBorder: 2px solid #
|
|
225
|
+
$checkboxBorder: 2px solid #8a8ea6 !default;
|
|
226
226
|
$checkboxIconFontSize: 14px !default;
|
|
227
|
-
$checkboxHoverBorderColor: #
|
|
227
|
+
$checkboxHoverBorderColor: #676b89 !default;
|
|
228
228
|
$checkboxActiveBorderColor: $primaryColor !default;
|
|
229
229
|
$checkboxActiveBg: $primaryColor !default;
|
|
230
230
|
$checkboxIconActiveColor: $primaryTextColor !default;
|
|
@@ -235,9 +235,9 @@ $checkboxActiveHoverBorderColor: $primaryDarkerColor !default;
|
|
|
235
235
|
//radiobutton
|
|
236
236
|
$radiobuttonWidth: 20px !default;
|
|
237
237
|
$radiobuttonHeight: 20px !default;
|
|
238
|
-
$radiobuttonBorder: 2px solid #
|
|
238
|
+
$radiobuttonBorder: 2px solid #8a8ea6 !default;
|
|
239
239
|
$radiobuttonIconSize: 12px !default;
|
|
240
|
-
$radiobuttonHoverBorderColor: #
|
|
240
|
+
$radiobuttonHoverBorderColor: #676b89 !default;
|
|
241
241
|
$radiobuttonActiveBorderColor: $primaryColor !default;
|
|
242
242
|
$radiobuttonActiveBg: $primaryColor !default;
|
|
243
243
|
$radiobuttonIconActiveColor: $primaryTextColor !default;
|
|
@@ -277,8 +277,8 @@ $inplaceTextHoverColor: $shade700 !default;
|
|
|
277
277
|
|
|
278
278
|
//rating
|
|
279
279
|
$ratingIconFontSize: 1.286rem !default;
|
|
280
|
-
$ratingCancelIconColor: #
|
|
281
|
-
$ratingCancelIconHoverColor: #
|
|
280
|
+
$ratingCancelIconColor: #fc6161 !default;
|
|
281
|
+
$ratingCancelIconHoverColor: #fc6161 !default;
|
|
282
282
|
$ratingStarIconOffColor: $shade700 !default;
|
|
283
283
|
$ratingStarIconOnColor: $primaryColor !default;
|
|
284
284
|
$ratingStarIconHoverColor: $primaryColor !default;
|
|
@@ -298,7 +298,7 @@ $sliderHandleHoverBg: $primaryColor !default;
|
|
|
298
298
|
$sliderRangeBg: $primaryColor !default;
|
|
299
299
|
|
|
300
300
|
//calendar
|
|
301
|
-
$calendarTableMargin: .5rem 0 !default;
|
|
301
|
+
$calendarTableMargin: 0.5rem 0 !default;
|
|
302
302
|
$calendarPadding: 0.857rem !default;
|
|
303
303
|
$calendarBg: $solidSurfaceColor !default;
|
|
304
304
|
$calendarInlineBg: transparent !default;
|
|
@@ -306,7 +306,7 @@ $calendarTextColor: $shade700 !default;
|
|
|
306
306
|
$calendarBorder: $inputListBorder !default;
|
|
307
307
|
$calendarOverlayBorder: $inputOverlayBorder !default;
|
|
308
308
|
|
|
309
|
-
$calendarHeaderPadding: 0 0 .75rem 0 !default;
|
|
309
|
+
$calendarHeaderPadding: 0 0 0.75rem 0 !default;
|
|
310
310
|
$calendarHeaderBg: transparent !default;
|
|
311
311
|
$calendarInlineHeaderBg: $calendarInlineBg !default;
|
|
312
312
|
$calendarHeaderBorder: 0 none !default;
|
|
@@ -329,8 +329,8 @@ $calendarCellDateTodayBorderColor: $shade200 !default;
|
|
|
329
329
|
$calendarCellDateTodayTextColor: $shade700 !default;
|
|
330
330
|
|
|
331
331
|
$calendarButtonBarPadding: 1rem 0 !default;
|
|
332
|
-
$calendarTimePickerPadding: .5rem !default;
|
|
333
|
-
$calendarTimePickerElementPadding: 0 .5rem !default;
|
|
332
|
+
$calendarTimePickerPadding: 0.5rem !default;
|
|
333
|
+
$calendarTimePickerElementPadding: 0 0.5rem !default;
|
|
334
334
|
$calendarTimePickerTimeFontSize: 1.25rem !default;
|
|
335
335
|
|
|
336
336
|
$calendarBreakpoint: 769px !default;
|
|
@@ -343,13 +343,13 @@ $inputSwitchBorderRadius: 12px !default;
|
|
|
343
343
|
$inputSwitchHandleWidth: 1.143rem !default;
|
|
344
344
|
$inputSwitchHandleHeight: 1.143rem !default;
|
|
345
345
|
$inputSwitchHandleBorderRadius: 8px !default;
|
|
346
|
-
$inputSwitchSliderPadding: .25rem !default;
|
|
346
|
+
$inputSwitchSliderPadding: 0.25rem !default;
|
|
347
347
|
$inputSwitchSliderOffBg: $shade100 !default;
|
|
348
348
|
$inputSwitchHandleOffBg: $shade600 !default;
|
|
349
349
|
$inputSwitchSliderOffHoverBg: $shade200 !default;
|
|
350
350
|
$inputSwitchSliderOnBg: $primaryColor !default;
|
|
351
351
|
$inputSwitchSliderOnHoverBg: $primaryDarkColor !default;
|
|
352
|
-
$inputSwitchHandleOnBg: #
|
|
352
|
+
$inputSwitchHandleOnBg: #ffffff !default;
|
|
353
353
|
|
|
354
354
|
//panel
|
|
355
355
|
$panelHeaderBorderColor: $shade300 !default;
|
|
@@ -431,7 +431,7 @@ $tabviewContentTextColor: $panelContentTextColor !default;
|
|
|
431
431
|
$tabviewContentPadding: 1.143rem 0 !default;
|
|
432
432
|
|
|
433
433
|
//upload
|
|
434
|
-
$fileUploadProgressBarHeight: .25rem !default;
|
|
434
|
+
$fileUploadProgressBarHeight: 0.25rem !default;
|
|
435
435
|
$fileUploadContentPadding: 2rem 1rem !default;
|
|
436
436
|
|
|
437
437
|
//scrollpanel
|
|
@@ -447,7 +447,7 @@ $cardSubTitleFontWeight: 500 !default;
|
|
|
447
447
|
$cardSubTitleColor: $shade500 !default;
|
|
448
448
|
$cardContentPadding: 1rem 0 !default;
|
|
449
449
|
$cardFooterPadding: 1rem 0 0 0 !default;
|
|
450
|
-
$cardShadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !default;
|
|
450
|
+
$cardShadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12) !default;
|
|
451
451
|
|
|
452
452
|
//editor
|
|
453
453
|
$editorToolbarBg: $panelHeaderBg !default;
|
|
@@ -464,7 +464,7 @@ $paginatorBg: transparent !default;
|
|
|
464
464
|
$paginatorTextColor: $shade700 !default;
|
|
465
465
|
$paginatorBorder: solid $shade300 !default;
|
|
466
466
|
$paginatorBorderWidth: 0 !default;
|
|
467
|
-
$paginatorPadding: .571rem .571rem !default;
|
|
467
|
+
$paginatorPadding: 0.571rem 0.571rem !default;
|
|
468
468
|
$paginatorElementWidth: 1.429rem !default;
|
|
469
469
|
$paginatorElementHeight: 1.429rem !default;
|
|
470
470
|
$paginatorElementBg: transparent !default;
|
|
@@ -477,7 +477,7 @@ $paginatorElementActiveBg: $shade200 !default;
|
|
|
477
477
|
$paginatorElementActiveBorderColor: transparent !default;
|
|
478
478
|
$paginatorElementIconActiveColor: $shade700 !default;
|
|
479
479
|
$paginatorElementBorderRadius: 4px !default;
|
|
480
|
-
$paginatorElementMargin: .143rem !default;
|
|
480
|
+
$paginatorElementMargin: 0.143rem !default;
|
|
481
481
|
$paginatorElementPadding: 0 !default;
|
|
482
482
|
|
|
483
483
|
//table
|
|
@@ -509,7 +509,7 @@ $tableBodyRowTextColor: $shade700 !default;
|
|
|
509
509
|
$tableBodyRowEvenBg: transparent !default;
|
|
510
510
|
$tableBodyRowHoverBg: $shade100 !default;
|
|
511
511
|
$tableBodyRowTextHoverColor: $shade700 !default;
|
|
512
|
-
$tableBodyRowHighlightBg: linear-gradient(0deg, rgba($highlightBg, 0.1), rgba($highlightBg, 0.1)), #
|
|
512
|
+
$tableBodyRowHighlightBg: linear-gradient(0deg, rgba($highlightBg, 0.1), rgba($highlightBg, 0.1)), #ffffff;
|
|
513
513
|
$tableBodyRowHighlightTextColor: $shade700;
|
|
514
514
|
$tableBodyCellBorder: 1px solid $shade300 !default;
|
|
515
515
|
$tableBodyCellBorderWidth: 0 0 0 0 !default;
|
|
@@ -553,7 +553,7 @@ $orderlistHeaderPadding: 1.143rem !default;
|
|
|
553
553
|
$orderlistListPadding: 0.571rem !default;
|
|
554
554
|
$orderlistListItemPadding: 0.714rem 0.571rem !default;
|
|
555
555
|
$orderlistListItemBorder: 1px solid transparent !default;
|
|
556
|
-
$orderlistListItemActiveBg: linear-gradient(0deg, rgba($highlightBg, 0.1), rgba($highlightBg, 0.1)), #
|
|
556
|
+
$orderlistListItemActiveBg: linear-gradient(0deg, rgba($highlightBg, 0.1), rgba($highlightBg, 0.1)), #ffffff !default;
|
|
557
557
|
$orderlistListItemActiveBorderColor: $highlightBg !default;
|
|
558
558
|
|
|
559
559
|
//picklist
|
|
@@ -566,7 +566,7 @@ $picklistHeaderPadding: 1.143rem !default;
|
|
|
566
566
|
$picklistListPadding: 0.571rem !default;
|
|
567
567
|
$picklistListItemPadding: 0.714rem 0.571rem !default;
|
|
568
568
|
$picklistListItemBorder: 1px solid transparent !default;
|
|
569
|
-
$picklistListItemActiveBg: linear-gradient(0deg, rgba($highlightBg, 0.1), rgba($highlightBg, 0.1)), #
|
|
569
|
+
$picklistListItemActiveBg: linear-gradient(0deg, rgba($highlightBg, 0.1), rgba($highlightBg, 0.1)), #ffffff !default;
|
|
570
570
|
$picklistListItemActiveBorderColor: $highlightBg !default;
|
|
571
571
|
|
|
572
572
|
//schedule
|
|
@@ -618,25 +618,25 @@ $toastMargin: 0 0 1rem 0 !default;
|
|
|
618
618
|
$toastPadding: 1.143rem 1.357rem !default;
|
|
619
619
|
$toastBorderWidth: 0 0 0 20px !default;
|
|
620
620
|
$toastShadow: none !default;
|
|
621
|
-
$toastOpacity: .9 !default;
|
|
621
|
+
$toastOpacity: 0.9 !default;
|
|
622
622
|
$toastTitleFontWeight: 400 !default;
|
|
623
623
|
$toastDetailMargin: $inlineSpacing 0 0 0 !default;
|
|
624
624
|
|
|
625
625
|
//severities
|
|
626
626
|
$infoMessageBg: $shade100 !default;
|
|
627
|
-
$infoMessageBorder: solid #
|
|
627
|
+
$infoMessageBorder: solid #873efe !default;
|
|
628
628
|
$infoMessageTextColor: $shade700 !default;
|
|
629
629
|
$infoMessageIconColor: $shade700 !default;
|
|
630
630
|
$successMessageBg: $shade100 !default;
|
|
631
|
-
$successMessageBorder: solid #
|
|
631
|
+
$successMessageBorder: solid #0bd18a !default;
|
|
632
632
|
$successMessageTextColor: $shade700 !default;
|
|
633
633
|
$successMessageIconColor: $shade700 !default;
|
|
634
634
|
$warningMessageBg: $shade100 !default;
|
|
635
|
-
$warningMessageBorder: solid #
|
|
635
|
+
$warningMessageBorder: solid #eee500 !default;
|
|
636
636
|
$warningMessageTextColor: $shade700 !default;
|
|
637
637
|
$warningMessageIconColor: $shade700 !default;
|
|
638
638
|
$errorMessageBg: $shade100 !default;
|
|
639
|
-
$errorMessageBorder: solid #
|
|
639
|
+
$errorMessageBorder: solid #fc6161 !default;
|
|
640
640
|
$errorMessageTextColor: $shade700 !default;
|
|
641
641
|
$errorMessageIconColor: $shade700 !default;
|
|
642
642
|
|
|
@@ -704,7 +704,7 @@ $menuitemFocusBorderColor: $shade500 !default;
|
|
|
704
704
|
$menuitemTextActiveColor: $shade700 !default;
|
|
705
705
|
$menuitemIconActiveColor: $shade700 !default;
|
|
706
706
|
$menuitemActiveBg: $shade100 !default;
|
|
707
|
-
$menuitemSubmenuIconFontSize: .875rem !default;
|
|
707
|
+
$menuitemSubmenuIconFontSize: 0.875rem !default;
|
|
708
708
|
$submenuHeaderMargin: 0 !default;
|
|
709
709
|
$submenuHeaderPadding: 0.571rem 0.429rem !default;
|
|
710
710
|
$submenuHeaderBg: transparent !default;
|
|
@@ -717,7 +717,7 @@ $overlayMenuBorder: 1px solid transparent !default;
|
|
|
717
717
|
$overlayMenuShadow: 0px 9px 30px rgba(68, 72, 109, 0.06) !default;
|
|
718
718
|
$verticalMenuPadding: 0.429rem !default;
|
|
719
719
|
$verticalMenuitemMargin: 0 !default;
|
|
720
|
-
$menuSeparatorMargin: .25rem 0 !default;
|
|
720
|
+
$menuSeparatorMargin: 0.25rem 0 !default;
|
|
721
721
|
|
|
722
722
|
$panelmenuHeaderTextColor: $shade500;
|
|
723
723
|
|
|
@@ -767,7 +767,7 @@ $carouselIndicatorActiveTextColor: $shade700 !default;
|
|
|
767
767
|
|
|
768
768
|
//galleria
|
|
769
769
|
$galleriaMaskBg: rgba(0, 0, 0, 0.9) !default;
|
|
770
|
-
$galleriaCloseIconMargin: .5rem !default;
|
|
770
|
+
$galleriaCloseIconMargin: 0.5rem !default;
|
|
771
771
|
$galleriaCloseIconFontSize: 2rem !default;
|
|
772
772
|
$galleriaCloseIconBg: transparent !default;
|
|
773
773
|
$galleriaCloseIconColor: $shade700 !default;
|
|
@@ -779,7 +779,7 @@ $galleriaCloseIconBorderRadius: 50% !default;
|
|
|
779
779
|
|
|
780
780
|
$galleriaItemNavigatorBg: transparent !default;
|
|
781
781
|
$galleriaItemNavigatorColor: $shade700 !default;
|
|
782
|
-
$galleriaItemNavigatorMargin: 0 .5rem !default;
|
|
782
|
+
$galleriaItemNavigatorMargin: 0 0.5rem !default;
|
|
783
783
|
$galleriaItemNavigatorFontSize: 2rem !default;
|
|
784
784
|
$galleriaItemNavigatorHoverBg: rgba(68, 72, 109, 0.15) !default;
|
|
785
785
|
$galleriaItemNavigatorHoverColor: $shade700 !default;
|
|
@@ -787,7 +787,7 @@ $galleriaItemNavigatorWidth: 4rem !default;
|
|
|
787
787
|
$galleriaItemNavigatorHeight: 4rem !default;
|
|
788
788
|
$galleriaItemNavigatorBorderRadius: $borderRadius !default;
|
|
789
789
|
|
|
790
|
-
$galleriaCaptionBg: rgba(0, 0, 0, .5) !default;
|
|
790
|
+
$galleriaCaptionBg: rgba(0, 0, 0, 0.5) !default;
|
|
791
791
|
$galleriaCaptionTextColor: $shade000 !default;
|
|
792
792
|
$galleriaCaptionPadding: 1rem !default;
|
|
793
793
|
|
|
@@ -797,14 +797,14 @@ $galleriaIndicatorHoverBg: rgba(68, 72, 109, 0.15) !default;
|
|
|
797
797
|
$galleriaIndicatorBorderRadius: 3px !default;
|
|
798
798
|
$galleriaIndicatorWidth: 1.429rem !default;
|
|
799
799
|
$galleriaIndicatorHeight: 0.286rem !default;
|
|
800
|
-
$galleriaIndicatorsBgOnItem: rgba(0, 0, 0, .5) !default;
|
|
800
|
+
$galleriaIndicatorsBgOnItem: rgba(0, 0, 0, 0.5) !default;
|
|
801
801
|
$galleriaIndicatorBgOnItem: $shade600 !default;
|
|
802
802
|
$galleriaIndicatorHoverBgOnItem: $shade700 !default;
|
|
803
803
|
$galleriaIndicatorActiveBg: $shade500 !default;
|
|
804
804
|
$galleriaIndicatorActiveTextColor: $shade600 !default;
|
|
805
805
|
|
|
806
806
|
$galleriaThumbnailContainerBg: $solidSurfaceColor !default;
|
|
807
|
-
$galleriaThumbnailContainerPadding: 1rem .25rem !default;
|
|
807
|
+
$galleriaThumbnailContainerPadding: 1rem 0.25rem !default;
|
|
808
808
|
$galleriaThumbnailNavigatorBg: transparent !default;
|
|
809
809
|
$galleriaThumbnailNavigatorColor: $shade700 !default;
|
|
810
810
|
$galleriaThumbnailNavigatorHoverBg: rgba(68, 72, 109, 0.15) !default;
|
|
@@ -861,14 +861,14 @@ $speedDialActionTextHoverColor: #fff !default;
|
|
|
861
861
|
//dock
|
|
862
862
|
$dockActionWidth: 4rem !default;
|
|
863
863
|
$dockActionHeight: 4rem !default;
|
|
864
|
-
$dockItemPadding: .5rem !default;
|
|
864
|
+
$dockItemPadding: 0.5rem !default;
|
|
865
865
|
$dockCurrentItemMargin: 1.5rem !default;
|
|
866
866
|
$dockFirstItemsMargin: 1.3rem !default;
|
|
867
867
|
$dockSecondItemsMargin: 0.9rem !default;
|
|
868
|
-
$dockBg: rgba(255, 255, 255, .1) !default;
|
|
868
|
+
$dockBg: rgba(255, 255, 255, 0.1) !default;
|
|
869
869
|
$dockBorder: 1px solid rgba(255, 255, 255, 0.2) !default;
|
|
870
|
-
$dockPadding: .5rem .5rem !default;
|
|
871
|
-
$dockBorderRadius: .5rem !default;
|
|
870
|
+
$dockPadding: 0.5rem 0.5rem !default;
|
|
871
|
+
$dockBorderRadius: 0.5rem !default;
|
|
872
872
|
|
|
873
873
|
:root {
|
|
874
874
|
--surface-a: #{$shade000};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
$primaryColor: #
|
|
1
|
+
$primaryColor: #0f8bfd;
|
|
2
2
|
$primaryTextColor: #ffffff;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* You can add global styles to this file, and also import other style files */
|
|
2
2
|
|
|
3
3
|
// theme and layout
|
|
4
|
-
@import
|
|
5
|
-
@import
|
|
4
|
+
@import 'layout/default/layout-dark.scss';
|
|
5
|
+
@import 'theme/default/theme-dark.scss';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* You can add global styles to this file, and also import other style files */
|
|
2
2
|
|
|
3
3
|
// theme and layout
|
|
4
|
-
@import
|
|
5
|
-
@import
|
|
4
|
+
@import 'layout/default/layout-light.scss';
|
|
5
|
+
@import 'theme/default/theme-light.scss';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.p-dialog {
|
|
2
|
-
&.mng-details-dialog,
|
|
2
|
+
&.mng-details-dialog,
|
|
3
|
+
&.mng-details-dynamic-dialog {
|
|
3
4
|
height: 90%;
|
|
4
5
|
width: 50vw;
|
|
5
6
|
|
|
@@ -8,7 +9,8 @@
|
|
|
8
9
|
}
|
|
9
10
|
}
|
|
10
11
|
|
|
11
|
-
&.mng-formly-field-table-form-dialog,
|
|
12
|
+
&.mng-formly-field-table-form-dialog,
|
|
13
|
+
&.mng-formly-field-table-multiselect-dialog {
|
|
12
14
|
width: 45vw;
|
|
13
15
|
|
|
14
16
|
@media (max-width: $tabletBreakpoint) {
|
|
@@ -31,4 +33,3 @@
|
|
|
31
33
|
// }
|
|
32
34
|
//}
|
|
33
35
|
}
|
|
34
|
-
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
form {
|
|
2
|
-
button[type=
|
|
2
|
+
button[type='submit'].hidden {
|
|
3
3
|
display: none !important;
|
|
4
4
|
visibility: hidden !important;
|
|
5
5
|
}
|
|
@@ -28,4 +28,9 @@ form {
|
|
|
28
28
|
padding: 0.75rem 0 0 0;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
+
|
|
32
|
+
.field-checkbox,
|
|
33
|
+
.field-radiobutton {
|
|
34
|
+
margin-bottom: 0.5rem;
|
|
35
|
+
}
|
|
31
36
|
}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.p-progressbar {
|
|
9
|
-
height: .5rem;
|
|
10
|
-
background-color: #
|
|
9
|
+
height: 0.5rem;
|
|
10
|
+
background-color: #d8dadc;
|
|
11
11
|
|
|
12
12
|
.p-progressbar-value {
|
|
13
|
-
background-color: #
|
|
13
|
+
background-color: #607d8b;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -69,15 +69,15 @@
|
|
|
69
69
|
border: 0 none;
|
|
70
70
|
|
|
71
71
|
.p-column-title {
|
|
72
|
-
padding: .4rem;
|
|
72
|
+
padding: 0.4rem;
|
|
73
73
|
min-width: 30%;
|
|
74
74
|
display: inline-block;
|
|
75
|
-
margin:
|
|
75
|
+
margin: -0.4rem 1rem -0.4rem -0.4rem;
|
|
76
76
|
font-weight: bold;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.p-progressbar {
|
|
80
|
-
margin-top: .5rem;
|
|
80
|
+
margin-top: 0.5rem;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
&:last-child {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
$primaryColor: #
|
|
1
|
+
$primaryColor: #0f8bfd;
|
|
2
2
|
$primaryLightColor: scale-color($primaryColor, $lightness: 60%) !default;
|
|
3
3
|
$primaryDarkColor: scale-color($primaryColor, $lightness: -10%) !default;
|
|
4
4
|
$primaryDarkerColor: scale-color($primaryColor, $lightness: -20%) !default;
|
|
@@ -6,3 +6,4 @@ $primaryTextColor: #ffffff;
|
|
|
6
6
|
|
|
7
7
|
$highlightBg: $primaryColor;
|
|
8
8
|
$highlightTextColor: $primaryTextColor;
|
|
9
|
+
$calendarHeaderTextColor: #ffffff; // white in light theme, black in dark theme
|
|
@@ -2,7 +2,8 @@ $primaryColor: #397289 !default;
|
|
|
2
2
|
$primaryLightColor: scale-color($primaryColor, $lightness: 60%) !default;
|
|
3
3
|
$primaryDarkColor: scale-color($primaryColor, $lightness: -10%) !default;
|
|
4
4
|
$primaryDarkerColor: scale-color($primaryColor, $lightness: -20%) !default;
|
|
5
|
-
$primaryTextColor: #ffffff !default
|
|
5
|
+
$primaryTextColor: #ffffff !default;
|
|
6
6
|
|
|
7
7
|
$highlightBg: $primaryColor !default;
|
|
8
8
|
$highlightTextColor: $primaryTextColor !default;
|
|
9
|
+
$calendarHeaderTextColor: #000000; // black in light theme, white in dark theme
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm91dGVyLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9tb2RlbHMvcm91dGVyLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0FjdGl2YXRlZFJvdXRlU25hcHNob3QsIERhdGF9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQge01lbnVJdGVtfSBmcm9tICdwcmltZW5nL2FwaSc7XG5pbXBvcnQge1R5cGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgaW50ZXJmYWNlIE1uZ0JyZWFkY3J1bWJNZW51SXRlbSBleHRlbmRzIE1lbnVJdGVtIHtcbiAgICBpc0hvbWU/OiBib29sZWFuO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIE1uZ1JvdXRlckRhdGEgZXh0ZW5kcyBEYXRhIHtcbiAgICBicmVhZGNydW1iPzogc3RyaW5nfHN0cmluZ1tdfE1uZ0JyZWFkY3J1bWJNZW51SXRlbXxNbmdCcmVhZGNydW1iTWVudUl0ZW1bXXwoKHJvdXRlVXJsOiBzdHJpbmcsIHJvdXRlOiBBY3RpdmF0ZWRSb3V0ZVNuYXBzaG90KSA9PiBNbmdCcmVhZGNydW1iTWVudUl0ZW1bXSk7XG4gICAgcGFnZVRpdGxlPzogc3RyaW5nO1xuICAgIHRvcGJhckNvbXBvbmVudD86IFR5cGU8YW55PjtcbiAgICBicmVhZGNydW1iQ29tcG9uZW50PzogVHlwZTxhbnk+O1xuICAgIG1lbnVDb21wb25lbnQ/OiBUeXBlPGFueT47XG4gICAgZm9vdGVyQ29tcG9uZW50PzogVHlwZTxhbnk+O1xufVxuIl19
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ActivatedRouteSnapshot, Data } from '@angular/router';
|
|
2
|
-
import { MenuItem } from 'primeng/api';
|
|
3
|
-
import { Type } from '@angular/core';
|
|
4
|
-
export interface MngBreadcrumbMenuItem extends MenuItem {
|
|
5
|
-
isHome?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export interface MngRouterData extends Data {
|
|
8
|
-
breadcrumb?: string | string[] | MngBreadcrumbMenuItem | MngBreadcrumbMenuItem[] | ((routeUrl: string, route: ActivatedRouteSnapshot) => MngBreadcrumbMenuItem[]);
|
|
9
|
-
pageTitle?: string;
|
|
10
|
-
topbarComponent?: Type<any>;
|
|
11
|
-
breadcrumbComponent?: Type<any>;
|
|
12
|
-
menuComponent?: Type<any>;
|
|
13
|
-
footerComponent?: Type<any>;
|
|
14
|
-
}
|