@mediusinc/mng-commons 3.5.0 → 3.6.0-rc.1
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/assets/fonts/poppins-v20-latin-500.woff +0 -0
- package/assets/fonts/poppins-v20-latin-500.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff2 +0 -0
- package/assets/i18n/en.json +6 -2
- package/assets/i18n/sl.json +6 -2
- package/esm2022/lib/api/models/filter-match-type.model.mjs +3 -1
- package/esm2022/lib/api/utils/medius-rest.util.mjs +70 -40
- package/esm2022/lib/components/action/action.component.mjs +5 -5
- package/esm2022/lib/components/action/editor/action-editor.component.mjs +8 -7
- package/esm2022/lib/components/form/autocomplete/autocomplete.component.mjs +96 -23
- package/esm2022/lib/components/form/date-range/date-range.component.mjs +14 -5
- package/esm2022/lib/components/form/dropdown/dropdown.component.mjs +3 -3
- package/esm2022/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +2 -2
- package/esm2022/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +3 -3
- package/esm2022/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +17 -3
- package/esm2022/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +16 -4
- package/esm2022/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +2 -2
- package/esm2022/lib/components/layout/menu-item.component.mjs +3 -3
- package/esm2022/lib/components/layout/topbar.component.mjs +2 -2
- package/esm2022/lib/components/layoutV2/breadcrumb.component.mjs +30 -0
- package/esm2022/lib/components/layoutV2/footer.component.mjs +19 -0
- package/esm2022/lib/components/layoutV2/index.mjs +8 -0
- package/esm2022/lib/components/layoutV2/main-layout.component.mjs +89 -0
- package/esm2022/lib/components/layoutV2/menu-item.component.mjs +229 -0
- package/esm2022/lib/components/layoutV2/menu.component.mjs +31 -0
- package/esm2022/lib/components/layoutV2/model/index.mjs +3 -0
- package/esm2022/lib/components/layoutV2/model/layout-state.model.mjs +2 -0
- package/esm2022/lib/components/layoutV2/model/menu.model.mjs +2 -0
- package/esm2022/lib/components/layoutV2/services/index.mjs +3 -0
- package/esm2022/lib/components/layoutV2/services/main-layout.component.service.mjs +53 -0
- package/esm2022/lib/components/layoutV2/services/menu.service.mjs +122 -0
- package/esm2022/lib/components/layoutV2/sidebar.component.mjs +54 -0
- package/esm2022/lib/components/layoutV2/topbar-user.component.mjs +40 -0
- package/esm2022/lib/components/layoutV2/topbar.component.mjs +75 -0
- package/esm2022/lib/components/layoutV2/version.component.mjs +63 -0
- package/esm2022/lib/components/pages/error/error.page.component.mjs +3 -3
- package/esm2022/lib/components/pages/not-found/not-found.page.component.mjs +3 -3
- package/esm2022/lib/components/tableview/index.mjs +2 -1
- package/esm2022/lib/components/tableview/table/column-filter/column-filter.component.mjs +3 -6
- package/esm2022/lib/components/tableview/table/column-filter-full/column-filter-full.component.mjs +471 -0
- package/esm2022/lib/components/tableview/table/column-value/column-value.component.mjs +2 -2
- package/esm2022/lib/components/tableview/table/table.component.mjs +24 -16
- package/esm2022/lib/components/tableview/tableview.component.mjs +6 -5
- package/esm2022/lib/descriptors/editor/editor.descriptor.mjs +131 -34
- package/esm2022/lib/descriptors/editor/field.descriptor.mjs +25 -13
- package/esm2022/lib/descriptors/table/table.descriptor.mjs +10 -1
- package/esm2022/lib/descriptors/types/filter.type.mjs +3 -1
- package/esm2022/lib/directives/dialog-keydown-handler.directive.mjs +49 -0
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/mng-commons.module.mjs +10 -3
- package/esm2022/lib/models/common-init-event-enum.model.mjs +11 -0
- package/esm2022/lib/models/config.model.mjs +1 -1
- package/esm2022/lib/models/index.mjs +3 -1
- package/esm2022/lib/models/menu-config.model.mjs +2 -0
- package/esm2022/lib/models/menu.model.mjs +1 -1
- package/esm2022/lib/router/route-builder.mjs +55 -16
- package/esm2022/lib/router/routes-builder.mjs +9 -1
- package/esm2022/lib/services/action-executor.service.mjs +3 -4
- package/esm2022/lib/services/commons.service.mjs +26 -4
- package/esm2022/lib/services/internal/commons-init.service.mjs +28 -3
- package/esm2022/lib/utils/coercion.util.mjs +6 -0
- package/esm2022/lib/utils/index.mjs +2 -1
- package/esm2022/lib/utils/route.util.mjs +25 -1
- package/fesm2022/mediusinc-mng-commons.mjs +1897 -308
- package/fesm2022/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/api/models/filter-match-type.model.d.ts +3 -1
- package/lib/components/action/action.component.d.ts +1 -0
- package/lib/components/action/editor/action-editor.component.d.ts +2 -1
- package/lib/components/form/autocomplete/autocomplete.component.d.ts +26 -4
- package/lib/components/form/date-range/date-range.component.d.ts +4 -1
- package/lib/components/layoutV2/breadcrumb.component.d.ts +10 -0
- package/lib/components/layoutV2/footer.component.d.ts +8 -0
- package/lib/components/layoutV2/index.d.ts +7 -0
- package/lib/components/layoutV2/main-layout.component.d.ts +23 -0
- package/lib/components/layoutV2/menu-item.component.d.ts +38 -0
- package/lib/components/layoutV2/menu.component.d.ts +12 -0
- package/lib/components/layoutV2/model/index.d.ts +2 -0
- package/lib/components/layoutV2/model/layout-state.model.d.ts +11 -0
- package/lib/components/layoutV2/model/menu.model.d.ts +4 -0
- package/lib/components/layoutV2/services/index.d.ts +2 -0
- package/lib/components/layoutV2/services/main-layout.component.service.d.ts +14 -0
- package/lib/components/layoutV2/services/menu.service.d.ts +22 -0
- package/lib/components/layoutV2/sidebar.component.d.ts +19 -0
- package/lib/components/layoutV2/topbar-user.component.d.ts +16 -0
- package/lib/components/layoutV2/topbar.component.d.ts +23 -0
- package/lib/components/layoutV2/version.component.d.ts +19 -0
- package/lib/components/tableview/index.d.ts +1 -0
- package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +2 -3
- package/lib/components/tableview/table/column-filter-full/column-filter-full.component.d.ts +85 -0
- package/lib/components/tableview/table/table.component.d.ts +8 -6
- package/lib/descriptors/editor/editor.descriptor.d.ts +139 -42
- package/lib/descriptors/editor/field.descriptor.d.ts +35 -30
- package/lib/descriptors/table/table.descriptor.d.ts +3 -0
- package/lib/descriptors/types/filter.type.d.ts +3 -1
- package/lib/directives/dialog-keydown-handler.directive.d.ts +12 -0
- package/lib/directives/index.d.ts +1 -0
- package/lib/mng-commons.module.d.ts +50 -48
- package/lib/models/common-init-event-enum.model.d.ts +9 -0
- package/lib/models/config.model.d.ts +9 -8
- package/lib/models/index.d.ts +2 -0
- package/lib/models/menu-config.model.d.ts +15 -0
- package/lib/models/menu.model.d.ts +3 -1
- package/lib/router/route-builder.d.ts +21 -3
- package/lib/router/routes-builder.d.ts +5 -0
- package/lib/services/internal/commons-init.service.d.ts +5 -0
- package/lib/utils/coercion.util.d.ts +2 -0
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/route.util.d.ts +19 -30
- package/package.json +2 -2
- package/scss/common/layout/_breadcrumb.scss +0 -1
- package/scss/mng-commons-dark-v2.scss +9 -0
- package/scss/mng-commons-light-v2.scss +9 -0
- package/scss/mng-overrides/_theme_autocomplete.scss +10 -12
- package/scss/mng-overrides/_theme_fileupload.scss +24 -0
- package/scss/mng-overrides/_theme_styles.scss +1 -0
- package/scss/v2/layout/_animation.scss +53 -0
- package/scss/v2/layout/_breadcrumb.scss +97 -0
- package/scss/v2/layout/_config.scss +42 -0
- package/scss/v2/layout/_content.scss +3 -0
- package/scss/v2/layout/_fonts.scss +32 -0
- package/scss/v2/layout/_layout_dark.scss +12 -0
- package/scss/v2/layout/_layout_light.scss +12 -0
- package/scss/v2/layout/_main.scss +54 -0
- package/scss/v2/layout/_profile.scss +10 -0
- package/scss/v2/layout/_responsive.scss +131 -0
- package/scss/v2/layout/_sidebar_drawer.scss +283 -0
- package/scss/v2/layout/_sidebar_horizontal.scss +168 -0
- package/scss/v2/layout/_sidebar_reveal.scss +201 -0
- package/scss/v2/layout/_sidebar_slim.scss +157 -0
- package/scss/v2/layout/_sidebar_slim_plus.scss +167 -0
- package/scss/v2/layout/_sidebar_vertical.scss +176 -0
- package/scss/v2/layout/_topbar.scss +174 -0
- package/scss/v2/layout/_typography.scss +62 -0
- package/scss/v2/layout/_utils.scss +33 -0
- package/scss/v2/layout/layout.scss +24 -0
- package/scss/v2/layout/mng/_mng_layout_footer.scss +33 -0
- package/scss/v2/layout/mng/_mng_layout_menu.scss +10 -0
- package/scss/v2/layout/mng/_mng_layout_styles.scss +3 -0
- package/scss/v2/layout/mng/_mng_layout_topbar.scss +16 -0
- package/scss/v2/layout/preloading.scss +84 -0
- package/scss/v2/theme/theme-base/_colors.scss +18 -0
- package/scss/v2/theme/theme-base/_common.scss +73 -0
- package/scss/v2/theme/theme-base/_components.scss +106 -0
- package/scss/v2/theme/theme-base/_mixins.scss +203 -0
- package/scss/v2/theme/theme-base/components/button/_button.scss +564 -0
- package/scss/v2/theme/theme-base/components/button/_speeddial.scss +86 -0
- package/scss/v2/theme/theme-base/components/button/_splitbutton.scss +381 -0
- package/scss/v2/theme/theme-base/components/data/_carousel.scss +37 -0
- package/scss/v2/theme/theme-base/components/data/_datatable.scss +338 -0
- package/scss/v2/theme/theme-base/components/data/_dataview.scss +55 -0
- package/scss/v2/theme/theme-base/components/data/_filter.scss +138 -0
- package/scss/v2/theme/theme-base/components/data/_fullcalendar.scss +329 -0
- package/scss/v2/theme/theme-base/components/data/_orderlist.scss +103 -0
- package/scss/v2/theme/theme-base/components/data/_organizationchart.scss +50 -0
- package/scss/v2/theme/theme-base/components/data/_paginator.scss +92 -0
- package/scss/v2/theme/theme-base/components/data/_picklist.scss +103 -0
- package/scss/v2/theme/theme-base/components/data/_timeline.scss +38 -0
- package/scss/v2/theme/theme-base/components/data/_tree.scss +149 -0
- package/scss/v2/theme/theme-base/components/data/_treetable.scss +256 -0
- package/scss/v2/theme/theme-base/components/data/_virtualscroller.scss +28 -0
- package/scss/v2/theme/theme-base/components/file/_fileupload.scss +58 -0
- package/scss/v2/theme/theme-base/components/input/_autocomplete.scss +117 -0
- package/scss/v2/theme/theme-base/components/input/_calendar.scss +263 -0
- package/scss/v2/theme/theme-base/components/input/_cascadeselect.scss +130 -0
- package/scss/v2/theme/theme-base/components/input/_checkbox.scss +90 -0
- package/scss/v2/theme/theme-base/components/input/_chips.scss +54 -0
- package/scss/v2/theme/theme-base/components/input/_colorpicker.scss +19 -0
- package/scss/v2/theme/theme-base/components/input/_dropdown.scss +135 -0
- package/scss/v2/theme/theme-base/components/input/_editor.scss +122 -0
- package/scss/v2/theme/theme-base/components/input/_inputgroup.scss +75 -0
- package/scss/v2/theme/theme-base/components/input/_inputmask.scss +16 -0
- package/scss/v2/theme/theme-base/components/input/_inputnumber.scss +28 -0
- package/scss/v2/theme/theme-base/components/input/_inputswitch.scss +60 -0
- package/scss/v2/theme/theme-base/components/input/_inputtext.scss +99 -0
- package/scss/v2/theme/theme-base/components/input/_listbox.scss +82 -0
- package/scss/v2/theme/theme-base/components/input/_multiselect.scss +173 -0
- package/scss/v2/theme/theme-base/components/input/_password.scss +52 -0
- package/scss/v2/theme/theme-base/components/input/_radiobutton.scss +78 -0
- package/scss/v2/theme/theme-base/components/input/_rating.scss +55 -0
- package/scss/v2/theme/theme-base/components/input/_selectbutton.scss +50 -0
- package/scss/v2/theme/theme-base/components/input/_slider.scss +71 -0
- package/scss/v2/theme/theme-base/components/input/_togglebutton.scss +48 -0
- package/scss/v2/theme/theme-base/components/input/_treeselect.scss +139 -0
- package/scss/v2/theme/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/scss/v2/theme/theme-base/components/menu/_contextmenu.scss +61 -0
- package/scss/v2/theme/theme-base/components/menu/_dock.scss +86 -0
- package/scss/v2/theme/theme-base/components/menu/_megamenu.scss +106 -0
- package/scss/v2/theme/theme-base/components/menu/_menu.scss +45 -0
- package/scss/v2/theme/theme-base/components/menu/_menubar.scss +188 -0
- package/scss/v2/theme/theme-base/components/menu/_panelmenu.scss +140 -0
- package/scss/v2/theme/theme-base/components/menu/_slidemenu.scss +64 -0
- package/scss/v2/theme/theme-base/components/menu/_steps.scss +56 -0
- package/scss/v2/theme/theme-base/components/menu/_tabmenu.scss +74 -0
- package/scss/v2/theme/theme-base/components/menu/_tieredmenu.scss +65 -0
- package/scss/v2/theme/theme-base/components/messages/_inlinemessage.scss +69 -0
- package/scss/v2/theme/theme-base/components/messages/_message.scss +107 -0
- package/scss/v2/theme/theme-base/components/messages/_toast.scss +100 -0
- package/scss/v2/theme/theme-base/components/misc/_avatar.scss +30 -0
- package/scss/v2/theme/theme-base/components/misc/_badge.scss +48 -0
- package/scss/v2/theme/theme-base/components/misc/_blockui.scss +0 -0
- package/scss/v2/theme/theme-base/components/misc/_chip.scss +38 -0
- package/scss/v2/theme/theme-base/components/misc/_inplace.scss +17 -0
- package/scss/v2/theme/theme-base/components/misc/_progressbar.scss +17 -0
- package/scss/v2/theme/theme-base/components/misc/_scrolltop.scss +25 -0
- package/scss/v2/theme/theme-base/components/misc/_skeleton.scss +8 -0
- package/scss/v2/theme/theme-base/components/misc/_tag.scss +40 -0
- package/scss/v2/theme/theme-base/components/misc/_terminal.scss +11 -0
- package/scss/v2/theme/theme-base/components/multimedia/_galleria.scss +149 -0
- package/scss/v2/theme/theme-base/components/multimedia/_image.scss +49 -0
- package/scss/v2/theme/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/scss/v2/theme/theme-base/components/overlay/_dialog.scss +69 -0
- package/scss/v2/theme/theme-base/components/overlay/_overlaypanel.scss +64 -0
- package/scss/v2/theme/theme-base/components/overlay/_sidebar.scss +27 -0
- package/scss/v2/theme/theme-base/components/overlay/_tooltip.scss +33 -0
- package/scss/v2/theme/theme-base/components/panel/_accordion.scss +119 -0
- package/scss/v2/theme/theme-base/components/panel/_card.scss +30 -0
- package/scss/v2/theme/theme-base/components/panel/_divider.scss +31 -0
- package/scss/v2/theme/theme-base/components/panel/_fieldset.scss +47 -0
- package/scss/v2/theme/theme-base/components/panel/_panel.scss +58 -0
- package/scss/v2/theme/theme-base/components/panel/_scrollpanel.scss +6 -0
- package/scss/v2/theme/theme-base/components/panel/_splitter.scss +19 -0
- package/scss/v2/theme/theme-base/components/panel/_tabview.scss +78 -0
- package/scss/v2/theme/theme-base/components/panel/_toolbar.scss +11 -0
- package/scss/v2/theme/theme-base/mng/_mng_mixins.scss +69 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_autocomplete.scss +34 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_button.scss +68 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_datatable.scss +146 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_datepicker.scss +21 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_dialog.scss +206 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_dropdown.scss +22 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_fileupload.scss +24 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_forms.scss +66 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_image.scss +27 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_input.scss +31 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_menu.scss +5 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_multiselect.scss +20 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_styles.scss +17 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_tableview.scss +97 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_tabview.scss +11 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_toast.scss +3 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_toolbar.scss +5 -0
- package/scss/v2/theme/theme-base/mng/_mng_variables.scss +15 -0
- package/scss/v2/theme/theme-dark/_extensions.scss +100 -0
- package/scss/v2/theme/theme-dark/_variables.scss +937 -0
- package/scss/v2/theme/theme-dark/blue/theme.scss +13 -0
- package/scss/v2/theme/theme-light/_extensions.scss +100 -0
- package/scss/v2/theme/theme-light/_variables.scss +937 -0
- package/scss/v2/theme/theme-light/blue/theme.scss +13 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
.p-editor-container {
|
|
2
|
+
.p-editor-toolbar {
|
|
3
|
+
background: $editorToolbarBg;
|
|
4
|
+
border-top-right-radius: $borderRadius;
|
|
5
|
+
border-top-left-radius: $borderRadius;
|
|
6
|
+
|
|
7
|
+
&.ql-snow {
|
|
8
|
+
border: $editorToolbarBorder;
|
|
9
|
+
|
|
10
|
+
.ql-stroke {
|
|
11
|
+
stroke: $editorToolbarIconColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ql-fill {
|
|
15
|
+
fill: $editorToolbarIconColor;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ql-picker {
|
|
19
|
+
.ql-picker-label {
|
|
20
|
+
border: 0 none;
|
|
21
|
+
color: $editorToolbarIconColor;
|
|
22
|
+
|
|
23
|
+
&:hover {
|
|
24
|
+
color: $editorToolbarIconHoverColor;
|
|
25
|
+
|
|
26
|
+
.ql-stroke {
|
|
27
|
+
stroke: $editorToolbarIconHoverColor;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.ql-fill {
|
|
31
|
+
fill: $editorToolbarIconHoverColor;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.ql-expanded {
|
|
37
|
+
.ql-picker-label {
|
|
38
|
+
color: $editorToolbarIconHoverColor;
|
|
39
|
+
|
|
40
|
+
.ql-stroke {
|
|
41
|
+
stroke: $editorToolbarIconHoverColor;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.ql-fill {
|
|
45
|
+
fill: $editorToolbarIconHoverColor;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.ql-picker-options {
|
|
50
|
+
background: $inputOverlayBg;
|
|
51
|
+
border:$inputOverlayBorder;
|
|
52
|
+
box-shadow:$inputOverlayShadow;
|
|
53
|
+
border-radius: $borderRadius;
|
|
54
|
+
padding: $inputListPadding;
|
|
55
|
+
|
|
56
|
+
.ql-picker-item {
|
|
57
|
+
color: $inputListItemTextColor;
|
|
58
|
+
|
|
59
|
+
&:hover {
|
|
60
|
+
color: $inputListItemTextHoverColor;
|
|
61
|
+
background: $inputListItemHoverBg;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&:not(.ql-icon-picker) {
|
|
67
|
+
.ql-picker-item {
|
|
68
|
+
padding: $inputListItemPadding;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.p-editor-content {
|
|
77
|
+
border-bottom-right-radius: $borderRadius;
|
|
78
|
+
border-bottom-left-radius: $borderRadius;
|
|
79
|
+
|
|
80
|
+
&.ql-snow {
|
|
81
|
+
border: $editorContentBorder;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.ql-editor {
|
|
85
|
+
background: $inputBg;
|
|
86
|
+
color: $inputTextColor;
|
|
87
|
+
border-bottom-right-radius: $borderRadius;
|
|
88
|
+
border-bottom-left-radius: $borderRadius;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.ql-snow.ql-toolbar button:hover,
|
|
93
|
+
.ql-snow.ql-toolbar button:focus {
|
|
94
|
+
color: $editorToolbarIconHoverColor;
|
|
95
|
+
|
|
96
|
+
.ql-stroke {
|
|
97
|
+
stroke: $editorToolbarIconHoverColor;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.ql-fill {
|
|
101
|
+
fill: $editorToolbarIconHoverColor;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.ql-snow.ql-toolbar button.ql-active,
|
|
106
|
+
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
|
|
107
|
+
.ql-snow.ql-toolbar .ql-picker-item.ql-selected {
|
|
108
|
+
color: $editorIconActiveColor;
|
|
109
|
+
|
|
110
|
+
.ql-stroke {
|
|
111
|
+
stroke: $editorIconActiveColor;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ql-fill {
|
|
115
|
+
fill: $editorIconActiveColor;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.ql-picker-label {
|
|
119
|
+
color: $editorIconActiveColor;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
.p-inputgroup-addon {
|
|
2
|
+
background: $inputGroupBg;
|
|
3
|
+
color: $inputGroupTextColor;
|
|
4
|
+
border-top: $inputBorder;
|
|
5
|
+
border-left: $inputBorder;
|
|
6
|
+
border-bottom: $inputBorder;
|
|
7
|
+
padding: $inputPadding;
|
|
8
|
+
min-width: $inputGroupAddOnMinWidth;
|
|
9
|
+
|
|
10
|
+
&:last-child {
|
|
11
|
+
border-right: $inputBorder;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.p-inputgroup {
|
|
16
|
+
> .p-component,
|
|
17
|
+
> .p-element,
|
|
18
|
+
> .p-inputwrapper > .p-component > .p-inputtext,
|
|
19
|
+
> .p-float-label > .p-component {
|
|
20
|
+
border-radius: 0;
|
|
21
|
+
margin: 0;
|
|
22
|
+
|
|
23
|
+
+ .p-inputgroup-addon {
|
|
24
|
+
border-left: 0 none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&:focus {
|
|
28
|
+
z-index: 1;
|
|
29
|
+
|
|
30
|
+
~ label {
|
|
31
|
+
z-index: 1;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.p-inputgroup-addon:first-child,
|
|
38
|
+
.p-inputgroup button:first-child,
|
|
39
|
+
.p-inputgroup input:first-child,
|
|
40
|
+
.p-inputgroup > .p-inputwrapper:first-child > .p-component,
|
|
41
|
+
.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext {
|
|
42
|
+
border-top-left-radius: $borderRadius;
|
|
43
|
+
border-bottom-left-radius: $borderRadius;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.p-inputgroup .p-float-label:first-child input {
|
|
47
|
+
border-top-left-radius: $borderRadius;
|
|
48
|
+
border-bottom-left-radius: $borderRadius;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-inputgroup-addon:last-child,
|
|
52
|
+
.p-inputgroup button:last-child,
|
|
53
|
+
.p-inputgroup input:last-child,
|
|
54
|
+
.p-inputgroup > .p-inputwrapper:last-child > .p-component,
|
|
55
|
+
.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext {
|
|
56
|
+
border-top-right-radius: $borderRadius;
|
|
57
|
+
border-bottom-right-radius: $borderRadius;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.p-inputgroup .p-float-label:last-child input {
|
|
61
|
+
border-top-right-radius: $borderRadius;
|
|
62
|
+
border-bottom-right-radius: $borderRadius;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.p-fluid {
|
|
66
|
+
.p-inputgroup {
|
|
67
|
+
.p-button {
|
|
68
|
+
width: auto;
|
|
69
|
+
|
|
70
|
+
&.p-button-icon-only {
|
|
71
|
+
width: $buttonIconOnlyWidth;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
p-inputmask.ng-dirty.ng-invalid > .p-inputtext {
|
|
4
|
+
@include invalid-input();
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
p-inputmask.p-inputmask-clearable {
|
|
8
|
+
.p-inputtext {
|
|
9
|
+
padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-inputmask-clear-icon {
|
|
13
|
+
color: $inputIconColor;
|
|
14
|
+
right: nth($inputPadding, 2);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext {
|
|
2
|
+
@include invalid-input();
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
p-inputnumber.p-inputnumber-clearable {
|
|
6
|
+
.p-inputnumber-input {
|
|
7
|
+
padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-inputnumber-clear-icon {
|
|
11
|
+
color: $inputIconColor;
|
|
12
|
+
right: nth($inputPadding, 2);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
p-inputnumber.p-inputnumber-clearable {
|
|
17
|
+
.p-inputnumber-buttons-stacked{
|
|
18
|
+
.p-inputnumber-clear-icon {
|
|
19
|
+
right: $buttonIconOnlyWidth + nth($inputPadding, 2);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-inputnumber-buttons-horizontal{
|
|
24
|
+
.p-inputnumber-clear-icon {
|
|
25
|
+
right: $buttonIconOnlyWidth + nth($inputPadding, 2);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-inputswitch {
|
|
4
|
+
width: $inputSwitchWidth;
|
|
5
|
+
height: $inputSwitchHeight;
|
|
6
|
+
|
|
7
|
+
.p-inputswitch-slider {
|
|
8
|
+
background: $inputSwitchSliderOffBg;
|
|
9
|
+
transition: $formElementTransition;
|
|
10
|
+
border-radius: $inputSwitchBorderRadius;
|
|
11
|
+
|
|
12
|
+
&:before {
|
|
13
|
+
background: $inputSwitchHandleOffBg;
|
|
14
|
+
width: $inputSwitchHandleWidth;
|
|
15
|
+
height: $inputSwitchHandleHeight;
|
|
16
|
+
left: $inputSwitchSliderPadding;
|
|
17
|
+
margin-top: math.div(-1 * $inputSwitchHandleHeight, 2);
|
|
18
|
+
border-radius: $inputSwitchHandleBorderRadius;
|
|
19
|
+
transition-duration: $transitionDuration;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.p-inputswitch-checked {
|
|
24
|
+
.p-inputswitch-slider:before {
|
|
25
|
+
transform: translateX($inputSwitchHandleWidth);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-focus {
|
|
30
|
+
.p-inputswitch-slider {
|
|
31
|
+
@include focused();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:not(.p-disabled):hover {
|
|
36
|
+
.p-inputswitch-slider {
|
|
37
|
+
background: $inputSwitchSliderOffHoverBg;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&.p-inputswitch-checked {
|
|
42
|
+
.p-inputswitch-slider {
|
|
43
|
+
background: $inputSwitchSliderOnBg;
|
|
44
|
+
|
|
45
|
+
&:before {
|
|
46
|
+
background: $inputSwitchHandleOnBg;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:not(.p-disabled):hover {
|
|
51
|
+
.p-inputswitch-slider {
|
|
52
|
+
background: $inputSwitchSliderOnHoverBg;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch {
|
|
59
|
+
@include invalid-input();
|
|
60
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
.p-inputtext {
|
|
2
|
+
font-family: $fontFamily;
|
|
3
|
+
font-size: $inputTextFontSize;
|
|
4
|
+
color: $inputTextColor;
|
|
5
|
+
background: $inputBg;
|
|
6
|
+
padding: $inputPadding;
|
|
7
|
+
border: $inputBorder;
|
|
8
|
+
transition: $formElementTransition;
|
|
9
|
+
appearance: none;
|
|
10
|
+
border-radius: $borderRadius;
|
|
11
|
+
|
|
12
|
+
&:enabled:hover {
|
|
13
|
+
border-color: $inputHoverBorderColor;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:enabled:focus {
|
|
17
|
+
@include focused-input();
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&.ng-dirty.ng-invalid {
|
|
21
|
+
@include invalid-input();
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.p-inputtext-sm {
|
|
25
|
+
@include scaledFontSize($inputTextFontSize, $scaleSM);
|
|
26
|
+
@include scaledPadding($inputPadding, $scaleSM);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-inputtext-lg {
|
|
30
|
+
@include scaledFontSize($inputTextFontSize, $scaleLG);
|
|
31
|
+
@include scaledPadding($inputPadding, $scaleLG);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.p-float-label > label {
|
|
36
|
+
left: nth($inputPadding, 2);
|
|
37
|
+
color: $inputPlaceholderTextColor;
|
|
38
|
+
transition-duration: $transitionDuration;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-float-label > .ng-invalid.ng-dirty + label {
|
|
42
|
+
color: $inputErrorBorderColor;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.p-input-icon-left > .p-icon-wrapper.p-icon,
|
|
46
|
+
.p-input-icon-left > i:first-of-type {
|
|
47
|
+
left: nth($inputPadding, 2);
|
|
48
|
+
color: $inputIconColor;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-input-icon-left > .p-inputtext {
|
|
52
|
+
padding-left: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.p-input-icon-left.p-float-label > label {
|
|
56
|
+
left: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.p-input-icon-right > .p-icon-wrapper,
|
|
60
|
+
.p-input-icon-right > i:last-of-type {
|
|
61
|
+
right: nth($inputPadding, 2);
|
|
62
|
+
color: $inputIconColor;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.p-input-icon-right > .p-inputtext {
|
|
66
|
+
padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@include placeholder {
|
|
70
|
+
color: $inputPlaceholderTextColor
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
.p-input-filled {
|
|
74
|
+
.p-inputtext {
|
|
75
|
+
background-color: $inputFilledBg;
|
|
76
|
+
|
|
77
|
+
&:enabled:hover {
|
|
78
|
+
background-color: $inputFilledHoverBg;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&:enabled:focus {
|
|
82
|
+
background-color: $inputFilledFocusBg;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.p-inputtext-sm {
|
|
88
|
+
.p-inputtext {
|
|
89
|
+
@include scaledFontSize($inputTextFontSize, $scaleSM);
|
|
90
|
+
@include scaledPadding($inputPadding, $scaleSM);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.p-inputtext-lg {
|
|
95
|
+
.p-inputtext {
|
|
96
|
+
@include scaledFontSize($inputTextFontSize, $scaleLG);
|
|
97
|
+
@include scaledPadding($inputPadding, $scaleLG);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
.p-listbox {
|
|
2
|
+
background: $inputListBg;
|
|
3
|
+
color: $inputListTextColor;
|
|
4
|
+
border: $inputListBorder;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
|
|
7
|
+
.p-listbox-header {
|
|
8
|
+
padding: $inputListHeaderPadding;
|
|
9
|
+
border-bottom: $inputListHeaderBorder;
|
|
10
|
+
color: $inputListHeaderTextColor;
|
|
11
|
+
background: $inputListHeaderBg;
|
|
12
|
+
margin: $inputListHeaderMargin;
|
|
13
|
+
border-top-right-radius: $borderRadius;
|
|
14
|
+
border-top-left-radius: $borderRadius;
|
|
15
|
+
|
|
16
|
+
.p-listbox-filter {
|
|
17
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-listbox-filter-icon {
|
|
21
|
+
right: nth($inputPadding, 2);
|
|
22
|
+
color: $inputIconColor;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.p-checkbox {
|
|
26
|
+
margin-right: $inlineSpacing;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.p-listbox-list {
|
|
31
|
+
padding: $inputListPadding;
|
|
32
|
+
|
|
33
|
+
.p-listbox-item {
|
|
34
|
+
margin: $inputListItemMargin;
|
|
35
|
+
padding: $inputListItemPadding;
|
|
36
|
+
border: $inputListItemBorder;
|
|
37
|
+
color: $inputListItemTextColor;
|
|
38
|
+
transition: $listItemTransition;
|
|
39
|
+
border-radius: $inputListItemBorderRadius;
|
|
40
|
+
|
|
41
|
+
&.p-highlight {
|
|
42
|
+
color: $highlightTextColor;
|
|
43
|
+
background: $highlightBg;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:focus {
|
|
47
|
+
@include focused-listitem();
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.p-checkbox {
|
|
51
|
+
margin-right: $inlineSpacing;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.p-listbox-item-group {
|
|
56
|
+
margin: $submenuHeaderMargin;
|
|
57
|
+
padding: $submenuHeaderPadding;
|
|
58
|
+
color: $submenuHeaderTextColor;
|
|
59
|
+
background: $submenuHeaderBg;
|
|
60
|
+
font-weight: $submenuHeaderFontWeight;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.p-listbox-empty-message {
|
|
64
|
+
padding: $inputListItemPadding;
|
|
65
|
+
color: $inputListItemTextColor;
|
|
66
|
+
background: $inputListItemBg;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&:not(.p-disabled) {
|
|
71
|
+
.p-listbox-item {
|
|
72
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
73
|
+
color: $inputListItemTextHoverColor;
|
|
74
|
+
background: $inputListItemHoverBg;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
p-listbox.ng-dirty.ng-invalid > .p-listbox {
|
|
81
|
+
@include invalid-input();
|
|
82
|
+
}
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-multiselect {
|
|
4
|
+
background: $inputBg;
|
|
5
|
+
border: $inputBorder;
|
|
6
|
+
transition: $formElementTransition;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
|
|
9
|
+
&:not(.p-disabled):hover {
|
|
10
|
+
border-color: $inputHoverBorderColor;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&:not(.p-disabled).p-focus {
|
|
14
|
+
@include focused-input();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-multiselect-label {
|
|
18
|
+
padding: $inputPadding;
|
|
19
|
+
transition: $formElementTransition;
|
|
20
|
+
|
|
21
|
+
&.p-placeholder {
|
|
22
|
+
color: $inputPlaceholderTextColor;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.p-multiselect-chip {
|
|
27
|
+
.p-multiselect-label {
|
|
28
|
+
gap: $inlineSpacing;
|
|
29
|
+
}
|
|
30
|
+
.p-multiselect-token {
|
|
31
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
32
|
+
background: $highlightBg;
|
|
33
|
+
color: $highlightTextColor;
|
|
34
|
+
border-radius: $borderRadius;
|
|
35
|
+
|
|
36
|
+
.p-multiselect-token-icon {
|
|
37
|
+
margin-left: $inlineSpacing;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.p-multiselect-trigger {
|
|
43
|
+
background: transparent;
|
|
44
|
+
color: $inputIconColor;
|
|
45
|
+
width: $inputGroupAddOnMinWidth;
|
|
46
|
+
border-top-right-radius: $borderRadius;
|
|
47
|
+
border-bottom-right-radius: $borderRadius;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-inputwrapper-filled {
|
|
52
|
+
.p-multiselect {
|
|
53
|
+
&.p-multiselect-chip {
|
|
54
|
+
.p-multiselect-label {
|
|
55
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.p-multiselect-panel {
|
|
62
|
+
background: $inputOverlayBg;
|
|
63
|
+
color: $inputListTextColor;
|
|
64
|
+
border: $inputOverlayBorder;
|
|
65
|
+
border-radius: $borderRadius;
|
|
66
|
+
box-shadow: $inputOverlayShadow;
|
|
67
|
+
|
|
68
|
+
.p-multiselect-header {
|
|
69
|
+
padding: $inputListHeaderPadding;
|
|
70
|
+
border-bottom: $inputListHeaderBorder;
|
|
71
|
+
color: $inputListHeaderTextColor;
|
|
72
|
+
background: $inputOverlayHeaderBg;
|
|
73
|
+
margin: $inputListHeaderMargin;
|
|
74
|
+
border-top-right-radius: $borderRadius;
|
|
75
|
+
border-top-left-radius: $borderRadius;
|
|
76
|
+
|
|
77
|
+
.p-multiselect-filter-container {
|
|
78
|
+
.p-inputtext {
|
|
79
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.p-multiselect-filter-icon {
|
|
83
|
+
right: nth($inputPadding, 2);
|
|
84
|
+
color: $inputIconColor;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.p-checkbox {
|
|
89
|
+
margin-right: $inlineSpacing;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.p-multiselect-close {
|
|
93
|
+
margin-left: $inlineSpacing;
|
|
94
|
+
@include action-icon();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.p-multiselect-items {
|
|
99
|
+
padding: $inputListPadding;
|
|
100
|
+
|
|
101
|
+
.p-multiselect-item {
|
|
102
|
+
margin: $inputListItemMargin;
|
|
103
|
+
padding: $inputListItemPadding;
|
|
104
|
+
border: $inputListItemBorder;
|
|
105
|
+
color: $inputListItemTextColor;
|
|
106
|
+
background: $inputListItemBg;
|
|
107
|
+
transition: $listItemTransition;
|
|
108
|
+
border-radius: $inputListItemBorderRadius;
|
|
109
|
+
|
|
110
|
+
&.p-highlight {
|
|
111
|
+
color: $highlightTextColor;
|
|
112
|
+
background: $highlightBg;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
116
|
+
color: $inputListItemTextHoverColor;
|
|
117
|
+
background: $inputListItemHoverBg;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&:focus {
|
|
121
|
+
@include focused-listitem();
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.p-checkbox {
|
|
125
|
+
margin-right: $inlineSpacing;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
.p-multiselect-item-group {
|
|
131
|
+
margin: $submenuHeaderMargin;
|
|
132
|
+
padding: $submenuHeaderPadding;
|
|
133
|
+
color: $submenuHeaderTextColor;
|
|
134
|
+
background: $submenuHeaderBg;
|
|
135
|
+
font-weight: $submenuHeaderFontWeight;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.p-multiselect-empty-message {
|
|
139
|
+
padding: $inputListItemPadding;
|
|
140
|
+
color: $inputListItemTextColor;
|
|
141
|
+
background: $inputListItemBg;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
p-multiselect.ng-dirty.ng-invalid > .p-multiselect {
|
|
147
|
+
@include invalid-input();
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.p-input-filled {
|
|
151
|
+
.p-multiselect {
|
|
152
|
+
background: $inputFilledBg;
|
|
153
|
+
|
|
154
|
+
&:not(.p-disabled):hover {
|
|
155
|
+
background-color: $inputFilledHoverBg;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
&:not(.p-disabled).p-focus {
|
|
159
|
+
background-color: $inputFilledFocusBg;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
p-multiselect.p-multiselect-clearable {
|
|
165
|
+
.p-multiselect-label-container {
|
|
166
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.p-multiselect-clear-icon {
|
|
170
|
+
color: $inputIconColor;
|
|
171
|
+
right: $inputGroupAddOnMinWidth;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext {
|
|
2
|
+
@include invalid-input();
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-password-panel {
|
|
6
|
+
padding: $panelContentPadding;
|
|
7
|
+
background: $panelContentBg;
|
|
8
|
+
color: $panelContentTextColor;
|
|
9
|
+
border: $overlayContentBorder;
|
|
10
|
+
box-shadow: $inputOverlayShadow;
|
|
11
|
+
border-radius: $borderRadius;
|
|
12
|
+
|
|
13
|
+
.p-password-meter {
|
|
14
|
+
margin-bottom: $inlineSpacing;
|
|
15
|
+
background: $passwordMeterBg;
|
|
16
|
+
|
|
17
|
+
.p-password-strength {
|
|
18
|
+
&.weak {
|
|
19
|
+
background: $passwordWeakBg;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.medium {
|
|
23
|
+
background: $passwordMediumBg;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.strong {
|
|
27
|
+
background: $passwordStrongBg;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
p-password.p-password-clearable {
|
|
34
|
+
.p-password-input {
|
|
35
|
+
padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
36
|
+
}
|
|
37
|
+
.p-password-clear-icon {
|
|
38
|
+
color: $inputIconColor;
|
|
39
|
+
right: nth($inputPadding, 2);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
p-password.p-password-clearable.p-password-mask{
|
|
44
|
+
.p-password-input {
|
|
45
|
+
padding-right: nth($inputPadding, 2) * 3 + $primeIconFontSize * 2;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.p-password-clear-icon {
|
|
49
|
+
color: $inputIconColor;
|
|
50
|
+
right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
51
|
+
}
|
|
52
|
+
}
|