@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,329 @@
|
|
|
1
|
+
.fc {
|
|
2
|
+
/* FullCalendar 4 */
|
|
3
|
+
&.fc-unthemed {
|
|
4
|
+
.fc-view-container {
|
|
5
|
+
th {
|
|
6
|
+
background: $panelHeaderBg;
|
|
7
|
+
border: $panelHeaderBorder;
|
|
8
|
+
color: $panelHeaderTextColor;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
td {
|
|
12
|
+
&.fc-widget-content {
|
|
13
|
+
background: $panelContentBg;
|
|
14
|
+
border: $panelContentBorder;
|
|
15
|
+
color: $panelContentTextColor;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.fc-head-container {
|
|
19
|
+
border: $panelHeaderBorder;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.fc-row {
|
|
24
|
+
border-right: $panelHeaderBorder;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.fc-event {
|
|
28
|
+
background: $fullCalendarEventBg;
|
|
29
|
+
border: $fullCalendarEventBorder;
|
|
30
|
+
color: $fullCalendarEventTextColor;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.fc-divider {
|
|
34
|
+
background: $panelHeaderBg;
|
|
35
|
+
border: $panelHeaderBorder;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.fc-toolbar {
|
|
40
|
+
.fc-button {
|
|
41
|
+
color: $buttonTextColor;
|
|
42
|
+
background: $buttonBg;
|
|
43
|
+
border: $buttonBorder;
|
|
44
|
+
font-size: $fontSize;
|
|
45
|
+
transition: $formElementTransition;
|
|
46
|
+
border-radius: $borderRadius;
|
|
47
|
+
display: flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
|
|
50
|
+
&:enabled:hover {
|
|
51
|
+
background: $buttonHoverBg;
|
|
52
|
+
color: $buttonTextHoverColor;
|
|
53
|
+
border-color: $buttonHoverBorderColor;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:enabled:active {
|
|
57
|
+
background: $buttonActiveBg;
|
|
58
|
+
color: $buttonTextActiveColor;
|
|
59
|
+
border-color: $buttonActiveBorderColor;
|
|
60
|
+
|
|
61
|
+
&:focus {
|
|
62
|
+
@include focused();
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fc-icon-chevron-left {
|
|
67
|
+
font-family: "PrimeIcons" !important;
|
|
68
|
+
text-indent: 0;
|
|
69
|
+
@include icon_override("\e900");
|
|
70
|
+
font-size: $primeIconFontSize;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.fc-icon-chevron-right {
|
|
74
|
+
font-family: "PrimeIcons" !important;
|
|
75
|
+
text-indent: 0;
|
|
76
|
+
@include icon_override("\e901");
|
|
77
|
+
font-size: $primeIconFontSize;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:focus {
|
|
81
|
+
@include focused();
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&.fc-dayGridMonth-button,
|
|
85
|
+
&.fc-timeGridWeek-button,
|
|
86
|
+
&.fc-timeGridDay-button {
|
|
87
|
+
background: $toggleButtonBg;
|
|
88
|
+
border: $toggleButtonBorder;
|
|
89
|
+
color: $toggleButtonTextColor;
|
|
90
|
+
transition: $formElementTransition;
|
|
91
|
+
|
|
92
|
+
&:hover {
|
|
93
|
+
background: $toggleButtonHoverBg;
|
|
94
|
+
border-color: $toggleButtonHoverBorderColor;
|
|
95
|
+
color: $toggleButtonTextHoverColor;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
&.fc-button-active {
|
|
99
|
+
background: $toggleButtonActiveBg;
|
|
100
|
+
border-color: $toggleButtonActiveBorderColor;
|
|
101
|
+
color: $toggleButtonTextActiveColor;
|
|
102
|
+
|
|
103
|
+
&:hover {
|
|
104
|
+
background: $toggleButtonActiveHoverBg;
|
|
105
|
+
border-color: $toggleButtonActiveHoverBorderColor;
|
|
106
|
+
color: $toggleButtonTextActiveHoverColor;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&:focus {
|
|
111
|
+
@include focused();
|
|
112
|
+
z-index: 1;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.fc-button-group {
|
|
118
|
+
.fc-button {
|
|
119
|
+
border-radius: 0;
|
|
120
|
+
|
|
121
|
+
&:first-child {
|
|
122
|
+
border-top-left-radius: $borderRadius;
|
|
123
|
+
border-bottom-left-radius: $borderRadius;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&:last-child {
|
|
127
|
+
border-top-right-radius: $borderRadius;
|
|
128
|
+
border-bottom-right-radius: $borderRadius;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/* FullCalendar 5 */
|
|
136
|
+
&.fc-theme-standard {
|
|
137
|
+
.fc-view-harness {
|
|
138
|
+
.fc-scrollgrid {
|
|
139
|
+
border-color: $panelContentBorderColor;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
th {
|
|
143
|
+
background: $panelHeaderBg;
|
|
144
|
+
border-color: $panelHeaderBorderColor;
|
|
145
|
+
color: $panelHeaderTextColor;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
td {
|
|
149
|
+
color: $panelContentTextColor;
|
|
150
|
+
border-color: $panelContentBorderColor;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.fc-view {
|
|
154
|
+
background: $panelContentBg;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.fc-popover {
|
|
158
|
+
background: none;
|
|
159
|
+
border: 0 none;
|
|
160
|
+
|
|
161
|
+
.fc-popover-header {
|
|
162
|
+
border: $panelHeaderBorder;
|
|
163
|
+
padding: $panelHeaderPadding;
|
|
164
|
+
background: $panelHeaderBg;
|
|
165
|
+
color: $panelHeaderTextColor;
|
|
166
|
+
|
|
167
|
+
.fc-popover-close {
|
|
168
|
+
opacity: 1;
|
|
169
|
+
display: flex;
|
|
170
|
+
align-items: center;
|
|
171
|
+
justify-content: center;
|
|
172
|
+
overflow: hidden;
|
|
173
|
+
font-family: "PrimeIcons" !important;
|
|
174
|
+
@include icon_override("\e90b");
|
|
175
|
+
font-size: $primeIconFontSize;
|
|
176
|
+
@include action-icon(false);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.fc-popover-body {
|
|
181
|
+
padding: $panelContentPadding;
|
|
182
|
+
border: $panelContentBorder;
|
|
183
|
+
background: $panelContentBg;
|
|
184
|
+
color: $panelContentTextColor;
|
|
185
|
+
border-top: 0 none;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.fc-event {
|
|
190
|
+
&.fc-daygrid-block-event {
|
|
191
|
+
color: $fullCalendarEventTextColor;
|
|
192
|
+
background: $fullCalendarEventBg;
|
|
193
|
+
border-color: $fullCalendarEventBorderColor;
|
|
194
|
+
|
|
195
|
+
.fc-event-main {
|
|
196
|
+
color: $fullCalendarEventTextColor;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
&.fc-daygrid-dot-event {
|
|
201
|
+
.fc-daygrid-event-dot {
|
|
202
|
+
background: $fullCalendarEventBg;
|
|
203
|
+
border-color: $fullCalendarEventBorderColor;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&:hover {
|
|
207
|
+
background: $inputListItemHoverBg;
|
|
208
|
+
color: $inputListItemTextHoverColor;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.fc-cell-shaded {
|
|
214
|
+
background: $panelHeaderBg;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.fc-toolbar {
|
|
219
|
+
.fc-button {
|
|
220
|
+
color: $buttonTextColor;
|
|
221
|
+
background: $buttonBg;
|
|
222
|
+
border: $buttonBorder;
|
|
223
|
+
font-size: $fontSize;
|
|
224
|
+
transition: $formElementTransition;
|
|
225
|
+
border-radius: $borderRadius;
|
|
226
|
+
|
|
227
|
+
&:enabled:hover {
|
|
228
|
+
background: $buttonHoverBg;
|
|
229
|
+
color: $buttonTextHoverColor;
|
|
230
|
+
border-color: $buttonHoverBorderColor;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
&:enabled:active {
|
|
234
|
+
background: $buttonActiveBg;
|
|
235
|
+
color: $buttonTextActiveColor;
|
|
236
|
+
border-color: $buttonActiveBorderColor;
|
|
237
|
+
|
|
238
|
+
&:focus {
|
|
239
|
+
@include focused();
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
&:disabled {
|
|
244
|
+
opacity: $disabledOpacity;
|
|
245
|
+
color: $buttonTextColor;
|
|
246
|
+
background: $buttonBg;
|
|
247
|
+
border: $buttonBorder;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.fc-icon-chevron-left {
|
|
251
|
+
font-family: "PrimeIcons" !important;
|
|
252
|
+
text-indent: 0;
|
|
253
|
+
@include icon_override("\e900");
|
|
254
|
+
font-size: $primeIconFontSize;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.fc-icon-chevron-right {
|
|
258
|
+
font-family: "PrimeIcons" !important;
|
|
259
|
+
text-indent: 0;
|
|
260
|
+
@include icon_override("\e901");
|
|
261
|
+
font-size: $primeIconFontSize;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
&:focus {
|
|
265
|
+
@include focused();
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
&.fc-dayGridMonth-button,
|
|
269
|
+
&.fc-timeGridWeek-button,
|
|
270
|
+
&.fc-timeGridDay-button {
|
|
271
|
+
background: $toggleButtonBg;
|
|
272
|
+
border: $toggleButtonBorder;
|
|
273
|
+
color: $toggleButtonTextColor;
|
|
274
|
+
transition: $formElementTransition;
|
|
275
|
+
|
|
276
|
+
&:hover {
|
|
277
|
+
background: $toggleButtonHoverBg;
|
|
278
|
+
border-color: $toggleButtonHoverBorderColor;
|
|
279
|
+
color: $toggleButtonTextHoverColor;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&.fc-button-active {
|
|
283
|
+
background: $toggleButtonActiveBg;
|
|
284
|
+
border-color: $toggleButtonActiveBorderColor;
|
|
285
|
+
color: $toggleButtonTextActiveColor;
|
|
286
|
+
|
|
287
|
+
&:hover {
|
|
288
|
+
background: $toggleButtonActiveHoverBg;
|
|
289
|
+
border-color: $toggleButtonActiveHoverBorderColor;
|
|
290
|
+
color: $toggleButtonTextActiveHoverColor;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
&:not(:disabled) {
|
|
295
|
+
&:focus {
|
|
296
|
+
@include focused();
|
|
297
|
+
z-index: 1;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.fc-button-group {
|
|
304
|
+
.fc-button {
|
|
305
|
+
border-radius: 0;
|
|
306
|
+
|
|
307
|
+
&:first-child {
|
|
308
|
+
border-top-left-radius: $borderRadius;
|
|
309
|
+
border-bottom-left-radius: $borderRadius;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
&:last-child {
|
|
313
|
+
border-top-right-radius: $borderRadius;
|
|
314
|
+
border-bottom-right-radius: $borderRadius;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
a {
|
|
321
|
+
color: $textColor;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.fc-highlight {
|
|
325
|
+
color: $highlightTextColor;
|
|
326
|
+
background: $highlightBg;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
.p-orderlist {
|
|
2
|
+
.p-orderlist-controls {
|
|
3
|
+
padding: $panelContentPadding;
|
|
4
|
+
|
|
5
|
+
.p-button {
|
|
6
|
+
margin-bottom: $inlineSpacing;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-orderlist-header {
|
|
11
|
+
background: $panelHeaderBg;
|
|
12
|
+
color: $panelHeaderTextColor;
|
|
13
|
+
border: $panelHeaderBorder;
|
|
14
|
+
padding: $panelHeaderPadding;
|
|
15
|
+
border-bottom: 0 none;
|
|
16
|
+
border-top-right-radius: $borderRadius;
|
|
17
|
+
border-top-left-radius: $borderRadius;
|
|
18
|
+
|
|
19
|
+
.p-orderlist-title {
|
|
20
|
+
font-weight: $panelHeaderFontWeight;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-orderlist-filter-container {
|
|
25
|
+
padding: $panelHeaderPadding;
|
|
26
|
+
background: $panelContentBg;
|
|
27
|
+
border: $panelHeaderBorder;
|
|
28
|
+
border-bottom: 0 none;
|
|
29
|
+
|
|
30
|
+
.p-orderlist-filter-input {
|
|
31
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-orderlist-filter-icon {
|
|
35
|
+
right: nth($inputPadding, 2);
|
|
36
|
+
color: $inputIconColor;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.p-orderlist-list {
|
|
41
|
+
border: $panelContentBorder;
|
|
42
|
+
background: $panelContentBg;
|
|
43
|
+
color: $panelContentTextColor;
|
|
44
|
+
padding: $inputListPadding;
|
|
45
|
+
border-bottom-right-radius: $borderRadius;
|
|
46
|
+
border-bottom-left-radius: $borderRadius;
|
|
47
|
+
|
|
48
|
+
.p-orderlist-item {
|
|
49
|
+
padding: $inputListItemPadding;
|
|
50
|
+
margin: $inputListItemMargin;
|
|
51
|
+
border: $inputListItemBorder;
|
|
52
|
+
color: $inputListItemTextColor;
|
|
53
|
+
background: $inputListItemBg;
|
|
54
|
+
transition: $listItemTransition;
|
|
55
|
+
|
|
56
|
+
&:focus {
|
|
57
|
+
@include focused-listitem();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&.p-highlight {
|
|
61
|
+
color: $highlightTextColor;
|
|
62
|
+
background: $highlightBg;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.p-orderlist-empty-message {
|
|
67
|
+
padding: $inputListItemPadding;
|
|
68
|
+
color: $inputListItemTextColor;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&:not(.cdk-drop-list-dragging) {
|
|
72
|
+
.p-orderlist-item {
|
|
73
|
+
&:not(.p-highlight):hover {
|
|
74
|
+
background: $inputListItemHoverBg;
|
|
75
|
+
color: $inputListItemTextHoverColor;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&.p-orderlist-striped {
|
|
82
|
+
.p-orderlist-list {
|
|
83
|
+
.p-orderlist-item:nth-child(even) {
|
|
84
|
+
background: $panelContentEvenRowBg;
|
|
85
|
+
|
|
86
|
+
&:hover {
|
|
87
|
+
background: $inputListItemHoverBg;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.p-orderlist-item {
|
|
95
|
+
&.cdk-drag-preview {
|
|
96
|
+
padding: $inputListItemPadding;
|
|
97
|
+
box-shadow: $inputOverlayShadow;
|
|
98
|
+
border: $inputListItemBorder;
|
|
99
|
+
color: $inputListItemTextColor;
|
|
100
|
+
background: $panelContentBg;
|
|
101
|
+
margin: 0;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.p-organizationchart {
|
|
2
|
+
.p-organizationchart-node-content {
|
|
3
|
+
&.p-organizationchart-selectable-node:not(.p-highlight):hover {
|
|
4
|
+
background: $inputListItemHoverBg;
|
|
5
|
+
color: $inputListItemTextHoverColor;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&.p-highlight {
|
|
9
|
+
background: $highlightBg;
|
|
10
|
+
color: $highlightTextColor;
|
|
11
|
+
|
|
12
|
+
.p-node-toggler {
|
|
13
|
+
i {
|
|
14
|
+
color: darken($highlightBg, 25%);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-organizationchart-line-down {
|
|
21
|
+
background: $organizationChartConnectorColor;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-organizationchart-line-left {
|
|
25
|
+
border-right: $panelContentBorder;
|
|
26
|
+
border-color: $organizationChartConnectorColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.p-organizationchart-line-top {
|
|
30
|
+
border-top: $panelContentBorder;
|
|
31
|
+
border-color: $organizationChartConnectorColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-organizationchart-node-content {
|
|
35
|
+
border: $panelContentBorder;
|
|
36
|
+
background: $panelContentBg;
|
|
37
|
+
color: $panelContentTextColor;
|
|
38
|
+
padding: $panelContentPadding;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-organizationchart-node-content .p-node-toggler {
|
|
42
|
+
background: inherit;
|
|
43
|
+
color: inherit;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
|
|
46
|
+
&:focus {
|
|
47
|
+
@include focused();
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
.p-paginator {
|
|
2
|
+
background: $paginatorBg;
|
|
3
|
+
color: $paginatorTextColor;
|
|
4
|
+
border: $paginatorBorder;
|
|
5
|
+
border-width: $paginatorBorderWidth;
|
|
6
|
+
padding: $paginatorPadding;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
|
|
9
|
+
.p-paginator-first,
|
|
10
|
+
.p-paginator-prev,
|
|
11
|
+
.p-paginator-next,
|
|
12
|
+
.p-paginator-last {
|
|
13
|
+
background-color: $paginatorElementBg;
|
|
14
|
+
border: $paginatorElementBorder;
|
|
15
|
+
color: $paginatorElementIconColor;
|
|
16
|
+
min-width: $paginatorElementWidth;
|
|
17
|
+
height: $paginatorElementHeight;
|
|
18
|
+
margin: $paginatorElementMargin;
|
|
19
|
+
transition: $listItemTransition;
|
|
20
|
+
border-radius: $paginatorElementBorderRadius;
|
|
21
|
+
|
|
22
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
23
|
+
background: $paginatorElementHoverBg;
|
|
24
|
+
border-color: $paginatorElementHoverBorderColor;
|
|
25
|
+
color: $paginatorElementIconHoverColor;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.p-paginator-first {
|
|
30
|
+
border-top-left-radius: $paginatorElementBorderRadius;
|
|
31
|
+
border-bottom-left-radius: $paginatorElementBorderRadius;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-paginator-last {
|
|
35
|
+
border-top-right-radius: $paginatorElementBorderRadius;
|
|
36
|
+
border-bottom-right-radius: $paginatorElementBorderRadius;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-dropdown {
|
|
40
|
+
margin-left: $inlineSpacing;
|
|
41
|
+
margin-right: $inlineSpacing;
|
|
42
|
+
height: $paginatorElementHeight;
|
|
43
|
+
|
|
44
|
+
.p-dropdown-label {
|
|
45
|
+
padding-right: 0;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.p-paginator-page-input {
|
|
50
|
+
margin-left: $inlineSpacing;
|
|
51
|
+
margin-right: $inlineSpacing;
|
|
52
|
+
|
|
53
|
+
.p-inputtext {
|
|
54
|
+
max-width: $paginatorElementWidth;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.p-paginator-current {
|
|
59
|
+
background-color: $paginatorElementBg;
|
|
60
|
+
border: $paginatorElementBorder;
|
|
61
|
+
color: $paginatorElementIconColor;
|
|
62
|
+
min-width: $paginatorElementWidth;
|
|
63
|
+
height: $paginatorElementHeight;
|
|
64
|
+
margin: $paginatorElementMargin;
|
|
65
|
+
padding: 0 $inlineSpacing;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.p-paginator-pages {
|
|
69
|
+
.p-paginator-page {
|
|
70
|
+
background-color: $paginatorElementBg;
|
|
71
|
+
border: $paginatorElementBorder;
|
|
72
|
+
color: $paginatorElementIconColor;
|
|
73
|
+
min-width: $paginatorElementWidth;
|
|
74
|
+
height: $paginatorElementHeight;
|
|
75
|
+
margin: $paginatorElementMargin;
|
|
76
|
+
transition: $listItemTransition;
|
|
77
|
+
border-radius: $paginatorElementBorderRadius;
|
|
78
|
+
|
|
79
|
+
&.p-highlight {
|
|
80
|
+
background: $highlightBg;
|
|
81
|
+
border-color: $highlightBg;
|
|
82
|
+
color: $highlightTextColor;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&:not(.p-highlight):hover {
|
|
86
|
+
background: $paginatorElementHoverBg;
|
|
87
|
+
border-color: $paginatorElementHoverBorderColor;
|
|
88
|
+
color: $paginatorElementIconHoverColor;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
.p-picklist {
|
|
2
|
+
.p-picklist-buttons {
|
|
3
|
+
padding: $panelContentPadding;
|
|
4
|
+
|
|
5
|
+
.p-button {
|
|
6
|
+
margin-bottom: $inlineSpacing;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-picklist-header {
|
|
11
|
+
background: $panelHeaderBg;
|
|
12
|
+
color: $panelHeaderTextColor;
|
|
13
|
+
border: $panelHeaderBorder;
|
|
14
|
+
padding: $panelHeaderPadding;
|
|
15
|
+
border-bottom: 0 none;
|
|
16
|
+
border-top-right-radius: $borderRadius;
|
|
17
|
+
border-top-left-radius: $borderRadius;
|
|
18
|
+
|
|
19
|
+
.p-picklist-title {
|
|
20
|
+
font-weight: $panelHeaderFontWeight;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-picklist-filter-container {
|
|
25
|
+
padding: $panelHeaderPadding;
|
|
26
|
+
background: $panelContentBg;
|
|
27
|
+
border: $panelHeaderBorder;
|
|
28
|
+
border-bottom: 0 none;
|
|
29
|
+
|
|
30
|
+
.p-picklist-filter-input {
|
|
31
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-picklist-filter-icon {
|
|
35
|
+
right: nth($inputPadding, 2);
|
|
36
|
+
color: $inputIconColor;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.p-picklist-list {
|
|
41
|
+
border: $panelContentBorder;
|
|
42
|
+
background: $panelContentBg;
|
|
43
|
+
color: $panelContentTextColor;
|
|
44
|
+
padding: $inputListPadding;
|
|
45
|
+
border-bottom-right-radius: $borderRadius;
|
|
46
|
+
border-bottom-left-radius: $borderRadius;
|
|
47
|
+
|
|
48
|
+
.p-picklist-item {
|
|
49
|
+
padding: $inputListItemPadding;
|
|
50
|
+
margin: $inputListItemMargin;
|
|
51
|
+
border: $inputListItemBorder;
|
|
52
|
+
color: $inputListItemTextColor;
|
|
53
|
+
background: $inputListItemBg;
|
|
54
|
+
transition: $listItemTransition;
|
|
55
|
+
|
|
56
|
+
&:focus {
|
|
57
|
+
@include focused-listitem();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&.p-highlight {
|
|
61
|
+
color: $highlightTextColor;
|
|
62
|
+
background: $highlightBg;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.p-picklist-empty-message {
|
|
67
|
+
padding: $inputListItemPadding;
|
|
68
|
+
color: $inputListItemTextColor;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&:not(.cdk-drop-list-dragging) {
|
|
72
|
+
.p-picklist-item {
|
|
73
|
+
&:not(.p-highlight):hover {
|
|
74
|
+
background: $inputListItemHoverBg;
|
|
75
|
+
color: $inputListItemTextHoverColor;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&.p-picklist-striped {
|
|
82
|
+
.p-picklist-list {
|
|
83
|
+
.p-picklist-item:nth-child(even) {
|
|
84
|
+
background: $panelContentEvenRowBg;
|
|
85
|
+
|
|
86
|
+
&:hover {
|
|
87
|
+
background: $inputListItemHoverBg;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.p-picklist-item {
|
|
95
|
+
&.cdk-drag-preview {
|
|
96
|
+
padding: $inputListItemPadding;
|
|
97
|
+
box-shadow: $inputOverlayShadow;
|
|
98
|
+
border: $inputListItemBorder;
|
|
99
|
+
color: $inputListItemTextColor;
|
|
100
|
+
background: $panelContentBg;
|
|
101
|
+
margin: 0;
|
|
102
|
+
}
|
|
103
|
+
}
|