@mediusinc/mng-commons 0.2.6 → 0.2.11
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 +9 -8
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +13 -13
- 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 +82 -38
- 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 +1 -1
- package/esm2020/lib/components/tableview/models/table.event.mjs +1 -1
- package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +2 -2
- package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +1 -1
- package/esm2020/lib/components/tableview/services/tableview.component.service.mjs +9 -4
- 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 +39 -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 +130 -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 +30 -37
- package/esm2020/lib/models/enum.model.mjs +2 -0
- package/esm2020/lib/models/index.mjs +3 -1
- package/esm2020/lib/models/menu.model.mjs +2 -0
- 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/models/router.model.mjs +1 -1
- package/esm2020/lib/router/route-builder.mjs +119 -45
- 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 +16 -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 +1 -1
- 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 +3547 -3198
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +3182 -2832
- 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 +18 -10
- 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/route/tableview-route.abstract.component.d.ts +1 -1
- package/lib/components/tableview/route/tableview-route.component.d.ts +1 -1
- 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 +51 -34
- 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 -66
- package/lib/models/enum.model.d.ts +5 -0
- package/lib/models/index.d.ts +2 -0
- package/lib/models/menu.model.d.ts +25 -0
- package/lib/pipes/i18n-property.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/router/models/router.model.d.ts +1 -1
- package/lib/router/route-builder.d.ts +13 -9
- package/lib/services/action.service.d.ts +3 -3
- package/lib/services/commons.service.d.ts +11 -11
- 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/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
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
box-shadow: $selectbuttonShadow;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
.p-button.p-button-secondary,
|
|
10
|
+
.p-button.p-button-secondary,
|
|
11
|
+
.p-buttonset.p-button-secondary > .p-button,
|
|
12
|
+
.p-splitbutton.p-button-secondary > .p-button {
|
|
11
13
|
box-shadow: $secondaryButtonShadow;
|
|
12
14
|
|
|
13
15
|
&.p-button-outlined {
|
|
@@ -38,7 +40,9 @@
|
|
|
38
40
|
}
|
|
39
41
|
}
|
|
40
42
|
|
|
41
|
-
.p-button.p-button-info,
|
|
43
|
+
.p-button.p-button-info,
|
|
44
|
+
.p-buttonset.p-button-info > .p-button,
|
|
45
|
+
.p-splitbutton.p-button-info > .p-button {
|
|
42
46
|
box-shadow: $infoButtonShadow;
|
|
43
47
|
|
|
44
48
|
&.p-button-outlined {
|
|
@@ -50,7 +54,9 @@
|
|
|
50
54
|
}
|
|
51
55
|
}
|
|
52
56
|
|
|
53
|
-
.p-button.p-button-success,
|
|
57
|
+
.p-button.p-button-success,
|
|
58
|
+
.p-buttonset.p-button-success > .p-button,
|
|
59
|
+
.p-splitbutton.p-button-success > .p-button {
|
|
54
60
|
box-shadow: $successButtonShadow;
|
|
55
61
|
|
|
56
62
|
&.p-button-outlined {
|
|
@@ -62,7 +68,9 @@
|
|
|
62
68
|
}
|
|
63
69
|
}
|
|
64
70
|
|
|
65
|
-
.p-button.p-button-warning,
|
|
71
|
+
.p-button.p-button-warning,
|
|
72
|
+
.p-buttonset.p-button-warning > .p-button,
|
|
73
|
+
.p-splitbutton.p-button-warning > .p-button {
|
|
66
74
|
box-shadow: $warningButtonShadow;
|
|
67
75
|
|
|
68
76
|
&.p-button-outlined {
|
|
@@ -74,7 +82,9 @@
|
|
|
74
82
|
}
|
|
75
83
|
}
|
|
76
84
|
|
|
77
|
-
.p-button.p-button-help,
|
|
85
|
+
.p-button.p-button-help,
|
|
86
|
+
.p-buttonset.p-button-help > .p-button,
|
|
87
|
+
.p-splitbutton.p-button-help > .p-button {
|
|
78
88
|
box-shadow: $helpButtonShadow;
|
|
79
89
|
|
|
80
90
|
&.p-button-outlined {
|
|
@@ -86,7 +96,9 @@
|
|
|
86
96
|
}
|
|
87
97
|
}
|
|
88
98
|
|
|
89
|
-
.p-button.p-button-danger,
|
|
99
|
+
.p-button.p-button-danger,
|
|
100
|
+
.p-buttonset.p-button-danger > .p-button,
|
|
101
|
+
.p-splitbutton.p-button-danger > .p-button {
|
|
90
102
|
box-shadow: $dangerButtonShadow;
|
|
91
103
|
|
|
92
104
|
&.p-button-outlined {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
//general
|
|
2
|
-
$fontSize:14px !default;
|
|
3
|
-
$fontFamily
|
|
4
|
-
$transitionDuration
|
|
5
|
-
$animationDuration
|
|
6
|
-
$animationTimingFunction:cubic-bezier(.05
|
|
7
|
-
$letterSpacing:normal !default;
|
|
8
|
-
$borderRadius:8px !default;
|
|
9
|
-
$tabletBreakpoint:991px !default;
|
|
10
|
-
$phoneBreakpoint:576px !default;
|
|
2
|
+
$fontSize: 14px !default;
|
|
3
|
+
$fontFamily: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
|
|
4
|
+
$transitionDuration: 0.2s !default;
|
|
5
|
+
$animationDuration: 0.4s !default;
|
|
6
|
+
$animationTimingFunction: cubic-bezier(0.05, 0.74, 0.2, 0.99) !default;
|
|
7
|
+
$letterSpacing: normal !default;
|
|
8
|
+
$borderRadius: 8px !default;
|
|
9
|
+
$tabletBreakpoint: 991px !default;
|
|
10
|
+
$phoneBreakpoint: 576px !default;
|
|
11
11
|
|
|
12
12
|
$baseHref: './~/' !default;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
@import './_common';
|
|
2
2
|
|
|
3
|
-
$bodyBg: linear-gradient(180deg, #
|
|
4
|
-
$bodyImage:
|
|
3
|
+
$bodyBg: linear-gradient(180deg, #2e323f 0%, #0a061a 100%) !default;
|
|
4
|
+
$bodyImage: url('#{$baseHref}assets/images/mng/effect-ondark.png') !default;
|
|
5
5
|
$textColor: #ffffff !default;
|
|
6
|
-
$textSecondaryColor: #
|
|
7
|
-
$textThirdColor: #
|
|
8
|
-
$dividerColor:rgba(255, 255, 255, 0.15) !default;
|
|
6
|
+
$textSecondaryColor: #c8ccd8 !default;
|
|
7
|
+
$textThirdColor: #868c9b !default;
|
|
8
|
+
$dividerColor: rgba(255, 255, 255, 0.15) !default;
|
|
9
9
|
|
|
10
10
|
//loader
|
|
11
|
-
$loaderPathColor
|
|
11
|
+
$loaderPathColor: #ececf9 !default;
|
|
12
12
|
|
|
13
13
|
//card
|
|
14
14
|
$cardBg: rgba(255, 255, 255, 0.05) !default;
|
|
@@ -20,14 +20,14 @@ $topbarTextHoverColor: $textColor !default;
|
|
|
20
20
|
$topbarIconBg: rgba(255, 255, 255, 0.05) !default;
|
|
21
21
|
$topbarIconHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
22
22
|
|
|
23
|
-
$topbarSubmenuBg:linear-gradient(180deg, #
|
|
23
|
+
$topbarSubmenuBg: linear-gradient(180deg, #2e323f 0%, #0a061a 100%) !default;
|
|
24
24
|
$topbarSubmenuItemHoverBgColor: rgba(255, 255, 255, 0.05) !default;
|
|
25
25
|
|
|
26
26
|
//menu
|
|
27
27
|
$menuWidth: 21rem !default;
|
|
28
28
|
$slimMenuWidth: 5.857rem !default;
|
|
29
29
|
$sidebarInactiveMenuWidth: 6.571em !default;
|
|
30
|
-
$menuBg: linear-gradient(180deg, #
|
|
30
|
+
$menuBg: linear-gradient(180deg, #2e323f 0%, #0a061a 100%) !default;
|
|
31
31
|
$menuIconBg: rgba(255, 255, 255, 0.05) !default;
|
|
32
32
|
$menuIconHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
33
33
|
$menuIconTextColor: $textSecondaryColor !default;
|
|
@@ -54,11 +54,11 @@ $slimActiveRootMenuItemTextColor: $primaryTextColor !default;
|
|
|
54
54
|
$slimMenuItemTextColor: $textColor !default;
|
|
55
55
|
|
|
56
56
|
//inline menu
|
|
57
|
-
$inlineMenuImageHoverBorderColor: #
|
|
57
|
+
$inlineMenuImageHoverBorderColor: #868c9b !default;
|
|
58
58
|
|
|
59
59
|
//rightmenu
|
|
60
60
|
$rightMenuWidth: 24.571rem !default;
|
|
61
|
-
$rightMenuBg: linear-gradient(180deg, #
|
|
61
|
+
$rightMenuBg: linear-gradient(180deg, #2e323f 0%, #0a061a 100%) !default;
|
|
62
62
|
$rightMenuButtonBg: rgba(255, 255, 255, 0.05) !default;
|
|
63
63
|
$rightMenuListItemBg: rgba(255, 255, 255, 0.05) !default;
|
|
64
64
|
|
|
@@ -67,5 +67,5 @@ $progressBarBg: rgba(255, 255, 255, 0.1) !default;
|
|
|
67
67
|
|
|
68
68
|
//pages
|
|
69
69
|
$helpHeaderBg: linear-gradient(179.2deg, rgba(15, 139, 253, 0.2) 0.69%, rgba(15, 139, 253, 0) 108.44%), rgba(255, 255, 255, 0.05) !default;
|
|
70
|
-
$helpHeaderImage:
|
|
71
|
-
$exceptionPagesImage: url(
|
|
70
|
+
$helpHeaderImage: url('#{$baseHref}assets/images/mng/effect-ondark.svg') !default;
|
|
71
|
+
$exceptionPagesImage: url('#{$baseHref}assets/images/mng/pages/exception-ondark.png') !default;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
@import './_common';
|
|
2
2
|
|
|
3
|
-
$bodyBg: linear-gradient(180deg, #
|
|
4
|
-
$bodyImage:
|
|
5
|
-
$textColor
|
|
6
|
-
$textSecondaryColor
|
|
7
|
-
$textThirdColor: #
|
|
8
|
-
$dividerColor:rgba(68, 72, 109, 0.2) !default;
|
|
3
|
+
$bodyBg: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%) !default;
|
|
4
|
+
$bodyImage: url('#{$baseHref}assets/images/mng/effect-onlight.png') !default;
|
|
5
|
+
$textColor: #44486d !default;
|
|
6
|
+
$textSecondaryColor: #676b89 !default;
|
|
7
|
+
$textThirdColor: #8a8ea6 !default;
|
|
8
|
+
$dividerColor: rgba(68, 72, 109, 0.2) !default;
|
|
9
9
|
|
|
10
10
|
//loader
|
|
11
|
-
$loaderPathColor
|
|
11
|
+
$loaderPathColor: #0a061a !default;
|
|
12
12
|
|
|
13
13
|
//card
|
|
14
14
|
$cardBg: rgba(255, 255, 255, 0.9) !default;
|
|
@@ -20,14 +20,14 @@ $topbarTextHoverColor: $textColor !default;
|
|
|
20
20
|
$topbarIconBg: rgba(68, 72, 109, 0.07) !default;
|
|
21
21
|
$topbarIconHoverBg: rgba(68, 72, 109, 0.12) !default;
|
|
22
22
|
|
|
23
|
-
$topbarSubmenuBg: linear-gradient(180deg, #
|
|
23
|
+
$topbarSubmenuBg: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%) !default;
|
|
24
24
|
$topbarSubmenuItemHoverBgColor: rgba(68, 72, 109, 0.07) !default;
|
|
25
25
|
|
|
26
26
|
//menu
|
|
27
27
|
$menuWidth: 21rem !default;
|
|
28
28
|
$slimMenuWidth: 5.857rem !default;
|
|
29
29
|
$sidebarInactiveMenuWidth: 6.571rem !default;
|
|
30
|
-
$menuBg: linear-gradient(180deg, #
|
|
30
|
+
$menuBg: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%) !default;
|
|
31
31
|
$menuIconBg: rgba(68, 72, 109, 0.07) !default;
|
|
32
32
|
$menuIconHoverBg: rgba(68, 72, 109, 0.12) !default;
|
|
33
33
|
$menuIconTextColor: $textSecondaryColor !default;
|
|
@@ -54,11 +54,11 @@ $slimActiveRootMenuItemTextColor: $primaryTextColor !default;
|
|
|
54
54
|
$slimMenuItemTextColor: $textColor !default;
|
|
55
55
|
|
|
56
56
|
//inline menu
|
|
57
|
-
$inlineMenuImageHoverBorderColor: #
|
|
57
|
+
$inlineMenuImageHoverBorderColor: #8a8ea6 !default;
|
|
58
58
|
|
|
59
59
|
//rightmenu
|
|
60
60
|
$rightMenuWidth: 24.571rem !default;
|
|
61
|
-
$rightMenuBg: linear-gradient(180deg, #
|
|
61
|
+
$rightMenuBg: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%) !default;
|
|
62
62
|
$rightMenuButtonBg: rgba(68, 72, 109, 0.07) !default;
|
|
63
63
|
$rightMenuListItemBg: rgba(68, 72, 109, 0.07) !default;
|
|
64
64
|
|
|
@@ -67,5 +67,5 @@ $progressBarBg: rgba(68, 72, 109, 0.12) !default;
|
|
|
67
67
|
|
|
68
68
|
//pages
|
|
69
69
|
$helpHeaderBg: linear-gradient(179.2deg, rgba(15, 139, 253, 0.15) 0.69%, rgba(15, 139, 253, 0) 108.44%), rgba(255, 255, 255, 0.9) !default;
|
|
70
|
-
$helpHeaderImage:
|
|
71
|
-
$exceptionPagesImage: url(
|
|
70
|
+
$helpHeaderImage: url('#{$baseHref}assets/images/mng/effect-onlight.svg') !default;
|
|
71
|
+
$exceptionPagesImage: url('#{$baseHref}assets/images/mng/pages/exception-onlight.png') !default;
|
|
@@ -1,20 +1,20 @@
|
|
|
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
|
//shades
|
|
15
|
-
$shade000: #
|
|
16
|
-
$shade100: #
|
|
17
|
-
$shade200: #
|
|
15
|
+
$shade000: #ffffff !default; //text color
|
|
16
|
+
$shade100: #c8ccd8 !default; //text secondary color
|
|
17
|
+
$shade200: #868c9b !default; //text third color
|
|
18
18
|
$shade500: rgba(255, 255, 255, 0.05) !default; //Alpha-01
|
|
19
19
|
$shade600: rgba(255, 255, 255, 0.1) !default; //Alpha-02
|
|
20
20
|
$shade700: rgba(255, 255, 255, 0.15) !default; //Alpha-03
|
|
@@ -24,23 +24,23 @@ $shade900: rgba(255, 255, 255, 0.25) !default; //Alpha-05
|
|
|
24
24
|
$solidSurfaceColor: #0a061a;
|
|
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: $shade000 !default;
|
|
31
31
|
$textSecondaryColor: $shade100 !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 $shade500 !default;
|
|
39
|
-
$inlineSpacing: .5rem !default; //spacing between inline elements
|
|
40
|
-
$disabledOpacity: .4 !default; //opacity of a disabled item
|
|
39
|
+
$inlineSpacing: 0.5rem !default; //spacing between inline elements
|
|
40
|
+
$disabledOpacity: 0.4 !default; //opacity of a disabled item
|
|
41
41
|
$maskBg: rgba(0, 0, 0, 0.05) !default; //modal mask bg color
|
|
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: $shade600 !default;
|
|
115
|
-
$passwordWeakBg: #
|
|
116
|
-
$passwordMediumBg: #
|
|
117
|
-
$passwordStrongBg: #
|
|
115
|
+
$passwordWeakBg: #f48fb1 !default;
|
|
116
|
+
$passwordMediumBg: #ffe082 !default;
|
|
117
|
+
$passwordStrongBg: #c5e1a5 !default;
|
|
118
118
|
|
|
119
119
|
//button
|
|
120
120
|
$buttonPadding: 0.429rem 0.571rem !default;
|
|
@@ -135,15 +135,15 @@ $selectbuttonShadow: none !default;
|
|
|
135
135
|
$raisedButtonShadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px 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: $shade500 !default;
|
|
143
|
-
$plainButtonActiveBgColor: rgba(255, 255, 255, .16) !default;
|
|
143
|
+
$plainButtonActiveBgColor: rgba(255, 255, 255, 0.16) !default;
|
|
144
144
|
|
|
145
145
|
$secondaryButtonBg: $shade500 !default;
|
|
146
|
-
$secondaryButtonTextColor: #
|
|
146
|
+
$secondaryButtonTextColor: #ffffff !default;
|
|
147
147
|
$secondaryButtonBorder: 1px solid transparent !default;
|
|
148
148
|
$secondaryButtonHoverBg: $shade600 !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.3) !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: #2e323f !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.3) !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.3) !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.3) !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 #868c9b !default;
|
|
239
239
|
$radiobuttonIconSize: 12px !default;
|
|
240
|
-
$radiobuttonHoverBorderColor: #
|
|
240
|
+
$radiobuttonHoverBorderColor: #c8ccd8 !default;
|
|
241
241
|
$radiobuttonActiveBorderColor: $primaryColor !default;
|
|
242
242
|
$radiobuttonActiveBg: $primaryColor !default;
|
|
243
243
|
$radiobuttonIconActiveColor: $primaryTextColor !default;
|
|
@@ -277,8 +277,8 @@ $inplaceTextHoverColor: $shade000 !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: $shade000 !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: $shade000 !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: $shade900 !default;
|
|
|
329
329
|
$calendarCellDateTodayTextColor: $shade000 !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,7 +343,7 @@ $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: $shade500 !default;
|
|
348
348
|
$inputSwitchHandleOffBg: $shade100 !default;
|
|
349
349
|
$inputSwitchSliderOffHoverBg: $shade600 !default;
|
|
@@ -431,7 +431,7 @@ $tabviewContentTextColor: $shade000 !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: $shade200 !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: $shade000 !default;
|
|
465
465
|
$paginatorBorder: solid $shade700 !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: $shade600 !default;
|
|
|
477
477
|
$paginatorElementActiveBorderColor: transparent !default;
|
|
478
478
|
$paginatorElementIconActiveColor: $shade000 !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
|
|
@@ -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: $shade500 !default;
|
|
627
|
-
$infoMessageBorder: solid #
|
|
627
|
+
$infoMessageBorder: solid #873efe !default;
|
|
628
628
|
$infoMessageTextColor: $shade000 !default;
|
|
629
629
|
$infoMessageIconColor: $shade000 !default;
|
|
630
630
|
$successMessageBg: $shade500 !default;
|
|
631
|
-
$successMessageBorder: solid #
|
|
631
|
+
$successMessageBorder: solid #0bd18a !default;
|
|
632
632
|
$successMessageTextColor: $shade000 !default;
|
|
633
633
|
$successMessageIconColor: $shade000 !default;
|
|
634
634
|
$warningMessageBg: $shade500 !default;
|
|
635
|
-
$warningMessageBorder: solid #
|
|
635
|
+
$warningMessageBorder: solid #eee500 !default;
|
|
636
636
|
$warningMessageTextColor: $shade000 !default;
|
|
637
637
|
$warningMessageIconColor: $shade000 !default;
|
|
638
638
|
$errorMessageBg: $shade500 !default;
|
|
639
|
-
$errorMessageBorder: solid #
|
|
639
|
+
$errorMessageBorder: solid #fc6161 !default;
|
|
640
640
|
$errorMessageTextColor: $shade000 !default;
|
|
641
641
|
$errorMessageIconColor: $shade000 !default;
|
|
642
642
|
|
|
@@ -703,7 +703,7 @@ $menuitemFocusBorderColor: $shade900 !default;
|
|
|
703
703
|
$menuitemTextActiveColor: $shade000 !default;
|
|
704
704
|
$menuitemIconActiveColor: $shade000 !default;
|
|
705
705
|
$menuitemActiveBg: $shade500 !default;
|
|
706
|
-
$menuitemSubmenuIconFontSize: .875rem !default;
|
|
706
|
+
$menuitemSubmenuIconFontSize: 0.875rem !default;
|
|
707
707
|
$submenuHeaderMargin: 0 !default;
|
|
708
708
|
$submenuHeaderPadding: 0.571rem 0.429rem !default;
|
|
709
709
|
$submenuHeaderBg: transparent !default;
|
|
@@ -716,7 +716,7 @@ $overlayMenuBorder: 1px solid transparent !default;
|
|
|
716
716
|
$overlayMenuShadow: none !default;
|
|
717
717
|
$verticalMenuPadding: 0.429rem !default;
|
|
718
718
|
$verticalMenuitemMargin: 0;
|
|
719
|
-
$menuSeparatorMargin: .25rem 0 !default;
|
|
719
|
+
$menuSeparatorMargin: 0.25rem 0 !default;
|
|
720
720
|
|
|
721
721
|
$panelmenuHeaderTextColor: $shade200;
|
|
722
722
|
|
|
@@ -766,7 +766,7 @@ $carouselIndicatorActiveTextColor: $shade000 !default;
|
|
|
766
766
|
|
|
767
767
|
//galleria
|
|
768
768
|
$galleriaMaskBg: rgba(0, 0, 0, 0.9) !default;
|
|
769
|
-
$galleriaCloseIconMargin: .5rem !default;
|
|
769
|
+
$galleriaCloseIconMargin: 0.5rem !default;
|
|
770
770
|
$galleriaCloseIconFontSize: 2rem !default;
|
|
771
771
|
$galleriaCloseIconBg: transparent !default;
|
|
772
772
|
$galleriaCloseIconColor: $shade000 !default;
|
|
@@ -778,7 +778,7 @@ $galleriaCloseIconBorderRadius: 50% !default;
|
|
|
778
778
|
|
|
779
779
|
$galleriaItemNavigatorBg: transparent !default;
|
|
780
780
|
$galleriaItemNavigatorColor: $shade000 !default;
|
|
781
|
-
$galleriaItemNavigatorMargin: 0 .5rem !default;
|
|
781
|
+
$galleriaItemNavigatorMargin: 0 0.5rem !default;
|
|
782
782
|
$galleriaItemNavigatorFontSize: 2rem !default;
|
|
783
783
|
$galleriaItemNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
784
784
|
$galleriaItemNavigatorHoverColor: $shade000 !default;
|
|
@@ -786,7 +786,7 @@ $galleriaItemNavigatorWidth: 4rem !default;
|
|
|
786
786
|
$galleriaItemNavigatorHeight: 4rem !default;
|
|
787
787
|
$galleriaItemNavigatorBorderRadius: $borderRadius !default;
|
|
788
788
|
|
|
789
|
-
$galleriaCaptionBg: rgba(0, 0, 0, .5) !default;
|
|
789
|
+
$galleriaCaptionBg: rgba(0, 0, 0, 0.5) !default;
|
|
790
790
|
$galleriaCaptionTextColor: #f8f9fa !default;
|
|
791
791
|
$galleriaCaptionPadding: 1rem !default;
|
|
792
792
|
|
|
@@ -796,14 +796,14 @@ $galleriaIndicatorHoverBg: $shade800 !default;
|
|
|
796
796
|
$galleriaIndicatorBorderRadius: 3px !default;
|
|
797
797
|
$galleriaIndicatorWidth: 1.429rem !default;
|
|
798
798
|
$galleriaIndicatorHeight: 0.286rem !default;
|
|
799
|
-
$galleriaIndicatorsBgOnItem: rgba(0, 0, 0, .5) !default;
|
|
799
|
+
$galleriaIndicatorsBgOnItem: rgba(0, 0, 0, 0.5) !default;
|
|
800
800
|
$galleriaIndicatorBgOnItem: $shade100 !default;
|
|
801
801
|
$galleriaIndicatorHoverBgOnItem: $shade000 !default;
|
|
802
802
|
$galleriaIndicatorActiveBg: $shade200 !default;
|
|
803
803
|
$galleriaIndicatorActiveTextColor: $shade100 !default;
|
|
804
804
|
|
|
805
805
|
$galleriaThumbnailContainerBg: $solidSurfaceColor !default;
|
|
806
|
-
$galleriaThumbnailContainerPadding: 1rem .25rem !default;
|
|
806
|
+
$galleriaThumbnailContainerPadding: 1rem 0.25rem !default;
|
|
807
807
|
$galleriaThumbnailNavigatorBg: transparent !default;
|
|
808
808
|
$galleriaThumbnailNavigatorColor: $shade000 !default;
|
|
809
809
|
$galleriaThumbnailNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
@@ -839,8 +839,8 @@ $scrollTopFontSize: 1.5rem;
|
|
|
839
839
|
$scrollTopTextColor: $highlightTextColor;
|
|
840
840
|
|
|
841
841
|
//skeleton
|
|
842
|
-
$skeletonBg: rgba(255, 255, 255, .06);
|
|
843
|
-
$skeletonAnimationBg: rgba(255, 255, 255, .04);
|
|
842
|
+
$skeletonBg: rgba(255, 255, 255, 0.06);
|
|
843
|
+
$skeletonAnimationBg: rgba(255, 255, 255, 0.04);
|
|
844
844
|
|
|
845
845
|
//splitter
|
|
846
846
|
$splitterGutterBg: $shade700;
|
|
@@ -860,14 +860,14 @@ $speedDialActionTextHoverColor: $shade900 !default;
|
|
|
860
860
|
//dock
|
|
861
861
|
$dockActionWidth: 4rem !default;
|
|
862
862
|
$dockActionHeight: 4rem !default;
|
|
863
|
-
$dockItemPadding: .5rem !default;
|
|
863
|
+
$dockItemPadding: 0.5rem !default;
|
|
864
864
|
$dockCurrentItemMargin: 1.5rem !default;
|
|
865
865
|
$dockFirstItemsMargin: 1.3rem !default;
|
|
866
866
|
$dockSecondItemsMargin: 0.9rem !default;
|
|
867
|
-
$dockBg: rgba(255, 255, 255, .1) !default;
|
|
867
|
+
$dockBg: rgba(255, 255, 255, 0.1) !default;
|
|
868
868
|
$dockBorder: 1px solid rgba(255, 255, 255, 0.2) !default;
|
|
869
|
-
$dockPadding: .5rem .5rem !default;
|
|
870
|
-
$dockBorderRadius: .5rem !default;
|
|
869
|
+
$dockPadding: 0.5rem 0.5rem !default;
|
|
870
|
+
$dockBorderRadius: 0.5rem !default;
|
|
871
871
|
|
|
872
872
|
:root {
|
|
873
873
|
--surface-a: #{$shade200};
|