@mediusinc/mng-commons 0.0.1-rc.4 → 0.1.0
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/.pnpm-debug.log +15 -0
- package/README.md +95 -0
- package/assets/i18n/en.json +54 -3
- package/assets/i18n/sl.json +54 -8
- package/assets/images/effect-ondark.png +0 -0
- package/assets/images/effect-ondark.svg +38 -0
- package/assets/images/effect-ondark@2x.png +0 -0
- package/assets/images/effect-onlight.png +0 -0
- package/assets/images/effect-onlight.svg +38 -0
- package/assets/images/effect-onlight@2x.png +0 -0
- package/assets/images/pages/exception-ondark.png +0 -0
- package/assets/images/pages/exception-onlight.png +0 -0
- package/assets/images/pages/login-ondark.png +0 -0
- package/assets/images/pages/login-onlight.png +0 -0
- package/esm2020/lib/api/models/builders/query-param.builder.mjs +8 -8
- package/esm2020/lib/api/models/filter-match-type.model.mjs +14 -12
- package/esm2020/lib/api/models/filter-param.model.mjs +6 -6
- package/esm2020/lib/api/models/mappers.mjs +12 -12
- package/esm2020/lib/api/models/query-mode.model.mjs +7 -7
- package/esm2020/lib/api/models/query-param.model.mjs +5 -5
- package/esm2020/lib/api/models/query-result.model.mjs +15 -15
- package/esm2020/lib/api/services/abstract-crud-api.service.mjs +1 -1
- package/esm2020/lib/api/utils/medius-rest.util.mjs +99 -47
- package/esm2020/lib/components/action/action.component.mjs +3 -3
- package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +6 -4
- package/esm2020/lib/components/action/route/action-route.component.mjs +3 -3
- package/esm2020/lib/components/form/autocomplete/mng-autocomplete.component.mjs +114 -0
- package/esm2020/lib/components/form/dropdown/mng-dropdown.component.mjs +113 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +7 -46
- package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +7 -39
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +1 -1
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +6 -6
- package/esm2020/lib/components/form/index.mjs +3 -1
- package/esm2020/lib/components/layout/breadcrumb.component.mjs +17 -0
- package/esm2020/lib/components/layout/footer.component.mjs +17 -0
- package/esm2020/lib/components/layout/index.mjs +7 -7
- package/esm2020/lib/components/layout/main-layout.component.mjs +33 -0
- package/esm2020/lib/components/layout/menu-item.component.mjs +173 -0
- package/esm2020/lib/components/layout/menu.component.mjs +20 -0
- package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +190 -0
- package/esm2020/lib/components/layout/topbar.component.mjs +40 -0
- package/esm2020/lib/components/tableview/index.mjs +3 -1
- package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +74 -0
- package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +25 -0
- package/esm2020/lib/components/tableview/table/table.component.mjs +175 -41
- package/esm2020/lib/components/tableview/tableview.component.mjs +5 -5
- package/esm2020/lib/mng-commons.module.mjs +70 -40
- package/esm2020/lib/models/config/mng-config.model.mjs +1 -1
- package/esm2020/lib/models/descriptors/action-descriptor.model.mjs +1 -1
- package/esm2020/lib/models/descriptors/editor-descriptor.model.mjs +17 -12
- package/esm2020/lib/models/descriptors/table-descriptor.model.mjs +291 -13
- package/esm2020/lib/models/descriptors/tableview-descriptor.model.mjs +12 -3
- package/esm2020/lib/models/events/table-event.model.mjs +1 -1
- package/esm2020/lib/models/interfaces/index.mjs +2 -1
- package/esm2020/lib/models/interfaces/lookup.model.mjs +2 -0
- package/esm2020/lib/models/providers/data-provider.model.mjs +3 -3
- package/esm2020/lib/models/router/index.mjs +2 -0
- package/esm2020/lib/models/router/router.model.mjs +2 -0
- package/esm2020/lib/models/user/index.mjs +2 -0
- package/esm2020/lib/models/user/user.model.mjs +2 -0
- package/esm2020/lib/pipes/boolean.pipe.mjs +22 -0
- package/esm2020/lib/pipes/index.mjs +2 -1
- package/esm2020/lib/services/action.service.mjs +8 -7
- package/esm2020/lib/services/commons.service.mjs +357 -0
- package/esm2020/lib/services/configuration.service.mjs +7 -7
- package/esm2020/lib/services/index.mjs +2 -4
- package/esm2020/lib/services/navigation.service.mjs +5 -6
- package/esm2020/lib/services/providers/commons-init.provider.mjs +4 -0
- package/esm2020/lib/services/providers/config-service.provider.mjs +5 -5
- package/esm2020/lib/services/providers/formly-config.provider.mjs +2 -2
- package/esm2020/lib/utils/editor-formly.util.mjs +4 -4
- package/esm2020/lib/utils/i18n.util.mjs +37 -3
- package/esm2020/lib/utils/model.util.mjs +20 -1
- package/esm2020/lib/utils/toast.util.mjs +14 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/mediusinc-mng-commons.mjs +3404 -2526
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +3328 -2472
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/api/models/builders/query-param.builder.d.ts +9 -9
- package/lib/api/models/filter-match-type.model.d.ts +7 -5
- package/lib/api/models/filter-param.model.d.ts +3 -3
- package/lib/api/models/query-mode.model.d.ts +1 -1
- package/lib/api/models/query-param.model.d.ts +5 -5
- package/lib/api/models/query-result.model.d.ts +5 -5
- package/lib/api/services/abstract-crud-api.service.d.ts +3 -3
- package/lib/api/utils/medius-rest.util.d.ts +9 -3
- package/lib/components/action/action.component.d.ts +2 -2
- package/lib/components/action/dialog/action-dialog.component.d.ts +3 -2
- package/lib/components/action/route/action-route.component.d.ts +2 -2
- package/lib/components/form/autocomplete/mng-autocomplete.component.d.ts +36 -0
- package/lib/components/form/dropdown/mng-dropdown.component.d.ts +34 -0
- package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +1 -11
- package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +0 -8
- package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +3 -3
- package/lib/components/form/index.d.ts +2 -0
- package/lib/components/layout/breadcrumb.component.d.ts +8 -0
- package/lib/components/layout/footer.component.d.ts +9 -0
- package/lib/components/layout/index.d.ts +6 -6
- package/lib/components/layout/main-layout.component.d.ts +13 -0
- package/lib/components/layout/menu-item.component.d.ts +29 -0
- package/lib/components/layout/menu.component.d.ts +10 -0
- package/lib/components/layout/services/main-layout.component.service.d.ts +65 -0
- package/lib/components/layout/topbar.component.d.ts +18 -0
- package/lib/components/tableview/index.d.ts +2 -0
- package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +22 -0
- package/lib/components/tableview/table/column-value/column-value.component.d.ts +12 -0
- package/lib/components/tableview/table/table.component.d.ts +42 -10
- package/lib/components/tableview/tableview.component.d.ts +3 -3
- package/lib/mng-commons.module.d.ts +66 -59
- package/lib/models/config/mng-config.model.d.ts +18 -1
- package/lib/models/descriptors/editor-descriptor.model.d.ts +9 -7
- package/lib/models/descriptors/table-descriptor.model.d.ts +133 -14
- package/lib/models/descriptors/tableview-descriptor.model.d.ts +6 -3
- package/lib/models/events/table-event.model.d.ts +4 -4
- package/lib/models/interfaces/index.d.ts +1 -0
- package/lib/models/interfaces/lookup.model.d.ts +17 -0
- package/lib/models/providers/data-provider.model.d.ts +10 -10
- package/lib/models/router/index.d.ts +1 -0
- package/lib/models/router/router.model.d.ts +9 -0
- package/lib/models/user/index.d.ts +1 -0
- package/lib/models/user/user.model.d.ts +8 -0
- package/lib/pipes/boolean.pipe.d.ts +7 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/services/action.service.d.ts +3 -3
- package/lib/services/commons.service.d.ts +74 -0
- package/lib/services/configuration.service.d.ts +3 -3
- package/lib/services/index.d.ts +1 -3
- package/lib/services/navigation.service.d.ts +3 -3
- package/lib/services/providers/commons-init.provider.d.ts +2 -0
- package/lib/services/providers/config-service.provider.d.ts +3 -3
- package/lib/services/providers/formly-config.provider.d.ts +1 -1
- package/lib/utils/i18n.util.d.ts +3 -0
- package/lib/utils/model.util.d.ts +2 -0
- package/lib/utils/toast.util.d.ts +2 -1
- package/mediusinc-mng-commons-0.1.0.tgz +0 -0
- package/package.json +37 -36
- package/public-api.d.ts +2 -0
- package/scss/common/layout/_breadcrumb.scss +96 -0
- package/scss/common/layout/_config.scss +101 -0
- package/scss/common/layout/_dashboard.scss +16 -0
- package/scss/common/layout/_exception.scss +131 -0
- package/scss/common/layout/_footer.scss +29 -0
- package/scss/common/layout/_help.scss +157 -0
- package/scss/common/layout/_inlinemenu.scss +55 -0
- package/scss/common/layout/_invoice.scss +176 -0
- package/scss/common/layout/_landing.scss +639 -0
- package/scss/common/layout/_layout_dark.scss +23 -0
- package/scss/common/layout/_layout_light.scss +23 -0
- package/scss/common/layout/_loader.scss +18 -0
- package/scss/common/layout/_login.scss +106 -0
- package/scss/common/layout/_main.scss +45 -0
- package/scss/common/layout/_mixins.scss +214 -0
- package/scss/common/layout/_rightmenu.scss +125 -0
- package/scss/common/layout/_topbar.scss +189 -0
- package/scss/common/layout/_typography.scss +63 -0
- package/scss/common/layout/_utils.scss +96 -0
- package/scss/common/layout/_widgets.scss +391 -0
- package/scss/common/layout/menu/_menu.scss +7 -0
- package/scss/common/layout/menu/_menu_common.scss +183 -0
- package/scss/common/layout/menu/_menu_overlay.scss +52 -0
- package/scss/common/layout/menu/_menu_sidebar.scss +232 -0
- package/scss/common/layout/menu/_menu_slim.scss +138 -0
- package/scss/common/layout/menu/_menu_static.scss +70 -0
- package/scss/common/layout/menu/_menu_theme.scss +365 -0
- package/scss/common/theme/_theme_dark.scss +5 -0
- package/scss/common/theme/_theme_light.scss +5 -0
- package/scss/common/theme/designer/_colors.scss +18 -0
- package/scss/common/theme/designer/_common.scss +40 -0
- package/scss/common/theme/designer/_components.scss +101 -0
- package/scss/common/theme/designer/_mixins.scss +174 -0
- package/scss/common/theme/designer/components/button/_button.scss +560 -0
- package/scss/common/theme/designer/components/button/_speeddial.scss +79 -0
- package/scss/common/theme/designer/components/button/_splitbutton.scss +1 -0
- package/scss/common/theme/designer/components/data/_carousel.scss +37 -0
- package/scss/common/theme/designer/components/data/_datatable.scss +266 -0
- package/scss/common/theme/designer/components/data/_dataview.scss +55 -0
- package/scss/common/theme/designer/components/data/_filter.scss +138 -0
- package/scss/common/theme/designer/components/data/_fullcalendar.scss +324 -0
- package/scss/common/theme/designer/components/data/_orderlist.scss +91 -0
- package/scss/common/theme/designer/components/data/_organizationchart.scss +50 -0
- package/scss/common/theme/designer/components/data/_paginator.scss +83 -0
- package/scss/common/theme/designer/components/data/_picklist.scss +91 -0
- package/scss/common/theme/designer/components/data/_timeline.scss +38 -0
- package/scss/common/theme/designer/components/data/_tree.scss +144 -0
- package/scss/common/theme/designer/components/data/_treetable.scss +242 -0
- package/scss/common/theme/designer/components/data/_virtualscroller.scss +28 -0
- package/scss/common/theme/designer/components/file/_fileupload.scss +58 -0
- package/scss/common/theme/designer/components/input/_autocomplete.scss +103 -0
- package/scss/common/theme/designer/components/input/_calendar.scss +212 -0
- package/scss/common/theme/designer/components/input/_cascadeselect.scss +98 -0
- package/scss/common/theme/designer/components/input/_checkbox.scss +85 -0
- package/scss/common/theme/designer/components/input/_chips.scss +41 -0
- package/scss/common/theme/designer/components/input/_colorpicker.scss +19 -0
- package/scss/common/theme/designer/components/input/_dropdown.scss +136 -0
- package/scss/common/theme/designer/components/input/_editor.scss +122 -0
- package/scss/common/theme/designer/components/input/_inputgroup.scss +69 -0
- package/scss/common/theme/designer/components/input/_inputmask.scss +3 -0
- package/scss/common/theme/designer/components/input/_inputnumber.scss +3 -0
- package/scss/common/theme/designer/components/input/_inputswitch.scss +58 -0
- package/scss/common/theme/designer/components/input/_inputtext.scss +97 -0
- package/scss/common/theme/designer/components/input/_listbox.scss +82 -0
- package/scss/common/theme/designer/components/input/_multiselect.scss +164 -0
- package/scss/common/theme/designer/components/input/_password.scss +33 -0
- package/scss/common/theme/designer/components/input/_radiobutton.scss +78 -0
- package/scss/common/theme/designer/components/input/_rating.scss +48 -0
- package/scss/common/theme/designer/components/input/_selectbutton.scss +50 -0
- package/scss/common/theme/designer/components/input/_slider.scss +69 -0
- package/scss/common/theme/designer/components/input/_togglebutton.scss +48 -0
- package/scss/common/theme/designer/components/input/_treeselect.scss +89 -0
- package/scss/common/theme/designer/components/menu/_breadcrumb.scss +42 -0
- package/scss/common/theme/designer/components/menu/_contextmenu.scss +50 -0
- package/scss/common/theme/designer/components/menu/_dock.scss +51 -0
- package/scss/common/theme/designer/components/menu/_megamenu.scss +102 -0
- package/scss/common/theme/designer/components/menu/_menu.scss +41 -0
- package/scss/common/theme/designer/components/menu/_menubar.scss +179 -0
- package/scss/common/theme/designer/components/menu/_panelmenu.scss +137 -0
- package/scss/common/theme/designer/components/menu/_slidemenu.scss +55 -0
- package/scss/common/theme/designer/components/menu/_steps.scss +55 -0
- package/scss/common/theme/designer/components/menu/_tabmenu.scss +49 -0
- package/scss/common/theme/designer/components/menu/_tieredmenu.scss +56 -0
- package/scss/common/theme/designer/components/messages/_inlinemessage.scss +64 -0
- package/scss/common/theme/designer/components/messages/_message.scss +102 -0
- package/scss/common/theme/designer/components/messages/_toast.scss +95 -0
- package/scss/common/theme/designer/components/misc/_avatar.scss +30 -0
- package/scss/common/theme/designer/components/misc/_badge.scss +48 -0
- package/scss/common/theme/designer/components/misc/_blockui.scss +3 -0
- package/scss/common/theme/designer/components/misc/_chip.scss +36 -0
- package/scss/common/theme/designer/components/misc/_inplace.scss +17 -0
- package/scss/common/theme/designer/components/misc/_progressbar.scss +17 -0
- package/scss/common/theme/designer/components/misc/_scrolltop.scss +20 -0
- package/scss/common/theme/designer/components/misc/_skeleton.scss +8 -0
- package/scss/common/theme/designer/components/misc/_tag.scss +33 -0
- package/scss/common/theme/designer/components/misc/_terminal.scss +11 -0
- package/scss/common/theme/designer/components/multimedia/_galleria.scss +141 -0
- package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +67 -0
- package/scss/common/theme/designer/components/overlay/_dialog.scss +63 -0
- package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +62 -0
- package/scss/common/theme/designer/components/overlay/_sidebar.scss +27 -0
- package/scss/common/theme/designer/components/overlay/_tooltip.scss +33 -0
- package/scss/common/theme/designer/components/panel/_accordion.scss +119 -0
- package/scss/common/theme/designer/components/panel/_card.scss +30 -0
- package/scss/common/theme/designer/components/panel/_divider.scss +31 -0
- package/scss/common/theme/designer/components/panel/_fieldset.scss +47 -0
- package/scss/common/theme/designer/components/panel/_panel.scss +42 -0
- package/scss/common/theme/designer/components/panel/_scrollpanel.scss +6 -0
- package/scss/common/theme/designer/components/panel/_splitter.scss +19 -0
- package/scss/common/theme/designer/components/panel/_tabview.scss +66 -0
- package/scss/common/theme/designer/components/panel/_toolbar.scss +10 -0
- package/scss/common/theme/extensions/_button.scss +99 -0
- package/scss/common/theme/extensions/_calendar.scss +18 -0
- package/scss/common/theme/extensions/_card.scss +6 -0
- package/scss/common/theme/extensions/_carousel.scss +13 -0
- package/scss/common/theme/extensions/_checkbox.scss +10 -0
- package/scss/common/theme/extensions/_contextmenu.scss +16 -0
- package/scss/common/theme/extensions/_datatable.scss +83 -0
- package/scss/common/theme/extensions/_dialog.scss +14 -0
- package/scss/common/theme/extensions/_fieldset.scss +6 -0
- package/scss/common/theme/extensions/_galleria.scss +25 -0
- package/scss/common/theme/extensions/_megamenu.scss +18 -0
- package/scss/common/theme/extensions/_menu.scss +14 -0
- package/scss/common/theme/extensions/_menubar.scss +14 -0
- package/scss/common/theme/extensions/_orderlist.scss +38 -0
- package/scss/common/theme/extensions/_paginator.scss +19 -0
- package/scss/common/theme/extensions/_panelmenu.scss +20 -0
- package/scss/common/theme/extensions/_password.scss +5 -0
- package/scss/common/theme/extensions/_picklist.scss +38 -0
- package/scss/common/theme/extensions/_radiobutton.scss +8 -0
- package/scss/common/theme/extensions/_sidebar.scss +19 -0
- package/scss/common/theme/extensions/_slidemenu.scss +10 -0
- package/scss/common/theme/extensions/_slider.scss +6 -0
- package/scss/common/theme/extensions/_steps.scss +50 -0
- package/scss/common/theme/extensions/_tieredmenu.scss +14 -0
- package/scss/common/theme/extensions/_toast.scss +6 -0
- package/scss/common/theme/extensions/_tree.scss +36 -0
- package/scss/common/theme/extensions/_treetable.scss +35 -0
- package/scss/common/theme/extensions/_vendor_extensions.scss +27 -0
- package/scss/common/variables/layout/_common.scss +10 -0
- package/scss/common/variables/layout/_layout_dark.scss +70 -0
- package/scss/common/variables/layout/_layout_light.scss +70 -0
- package/scss/common/variables/theme/_theme_dark.scss +897 -0
- package/scss/common/variables/theme/_theme_light.scss +885 -0
- package/scss/layout/default/_mng-variables-layout-dark.scss +2 -0
- package/scss/layout/default/_mng-variables-layout-light.scss +2 -0
- package/scss/layout/default/layout-dark.scss +2 -0
- package/scss/layout/default/layout-light.scss +2 -0
- package/scss/mng-commons-dark.scss +10 -0
- package/scss/mng-commons-light.scss +13 -0
- package/scss/mng-overrides/_layout_action.scss +3 -0
- package/scss/mng-overrides/_layout_dialog.scss +34 -0
- package/scss/mng-overrides/_layout_forms.scss +31 -0
- package/scss/mng-overrides/_layout_radio.scss +3 -0
- package/scss/mng-overrides/_layout_styles.scss +4 -0
- package/scss/mng-overrides/_theme_datatable.scss +9 -0
- package/scss/mng-overrides/_theme_dialog.scss +9 -0
- package/scss/mng-overrides/_theme_dropdown.scss +6 -0
- package/scss/mng-overrides/_theme_styles.scss +9 -0
- package/scss/mng-overrides/_theme_tableview.scss +94 -0
- package/scss/theme/default/_mng-variables-theme-dark.scss +8 -0
- package/scss/theme/default/_mng-variables-theme-light.scss +8 -0
- package/scss/theme/default/theme-dark.scss +2 -0
- package/scss/theme/default/theme-light.scss +2 -0
- package/esm2020/lib/components/layout/app.breadcrumb.component.mjs +0 -26
- package/esm2020/lib/components/layout/app.footer.component.mjs +0 -35
- package/esm2020/lib/components/layout/app.main.component.mjs +0 -25
- package/esm2020/lib/components/layout/app.main.component.service.mjs +0 -133
- package/esm2020/lib/components/layout/app.menu.component.mjs +0 -24
- package/esm2020/lib/components/layout/app.menuitem.component.mjs +0 -241
- package/esm2020/lib/components/layout/app.topbar.component.mjs +0 -135
- package/esm2020/lib/services/breadcrumb.service.mjs +0 -74
- package/esm2020/lib/services/menu.service.mjs +0 -37
- package/esm2020/lib/services/settings.service.mjs +0 -81
- package/lib/components/layout/app.breadcrumb.component.d.ts +0 -14
- package/lib/components/layout/app.footer.component.d.ts +0 -8
- package/lib/components/layout/app.main.component.d.ts +0 -12
- package/lib/components/layout/app.main.component.service.d.ts +0 -40
- package/lib/components/layout/app.menu.component.d.ts +0 -15
- package/lib/components/layout/app.menuitem.component.d.ts +0 -31
- package/lib/components/layout/app.topbar.component.d.ts +0 -15
- package/lib/services/breadcrumb.service.d.ts +0 -15
- package/lib/services/menu.service.d.ts +0 -16
- package/lib/services/settings.service.d.ts +0 -30
- package/mediusinc-mng-commons-0.0.1-rc.4.tgz +0 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
.p-speeddial-button {
|
|
2
|
+
&.p-button.p-button-icon-only {
|
|
3
|
+
width: $speedDialButtonWidth;
|
|
4
|
+
height: $speedDialButtonHeight;
|
|
5
|
+
|
|
6
|
+
.p-button-icon {
|
|
7
|
+
font-size: $speedDialButtonIconFontSize;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-speeddial-action {
|
|
13
|
+
width: $speedDialActionWidth;
|
|
14
|
+
height: $speedDialActionHeight;
|
|
15
|
+
background: $speedDialActionBg;
|
|
16
|
+
color: $speedDialActionTextColor;
|
|
17
|
+
|
|
18
|
+
&:hover {
|
|
19
|
+
background: $speedDialActionHoverBg;
|
|
20
|
+
color: $speedDialActionTextHoverColor;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-speeddial-direction-up {
|
|
25
|
+
.p-speeddial-item {
|
|
26
|
+
margin: $inlineSpacing/2 0;
|
|
27
|
+
|
|
28
|
+
&:first-child {
|
|
29
|
+
margin-bottom: $inlineSpacing;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-speeddial-direction-down {
|
|
35
|
+
.p-speeddial-item {
|
|
36
|
+
margin: $inlineSpacing/2 0;
|
|
37
|
+
|
|
38
|
+
&:first-child {
|
|
39
|
+
margin-top: $inlineSpacing;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.p-speeddial-direction-left {
|
|
45
|
+
.p-speeddial-item {
|
|
46
|
+
margin: 0 $inlineSpacing/2;
|
|
47
|
+
|
|
48
|
+
&:first-child {
|
|
49
|
+
margin-right: $inlineSpacing;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.p-speeddial-direction-right {
|
|
55
|
+
.p-speeddial-item {
|
|
56
|
+
margin: 0 $inlineSpacing/2;
|
|
57
|
+
|
|
58
|
+
&:first-child {
|
|
59
|
+
margin-left: $inlineSpacing;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.p-speeddial-circle,
|
|
65
|
+
.p-speeddial-semi-circle,
|
|
66
|
+
.p-speeddial-quarter-circle {
|
|
67
|
+
.p-speeddial-item {
|
|
68
|
+
margin: 0;
|
|
69
|
+
|
|
70
|
+
&:first-child,
|
|
71
|
+
&:last-child {
|
|
72
|
+
margin: 0;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.p-speeddial-mask {
|
|
78
|
+
background-color: $maskBg;
|
|
79
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.p-splitbutton {}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.p-carousel {
|
|
2
|
+
.p-carousel-content {
|
|
3
|
+
.p-carousel-prev,
|
|
4
|
+
.p-carousel-next {
|
|
5
|
+
@include action-icon();
|
|
6
|
+
margin: $inlineSpacing;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-carousel-indicators {
|
|
11
|
+
padding: $carouselIndicatorsPadding;
|
|
12
|
+
|
|
13
|
+
.p-carousel-indicator {
|
|
14
|
+
margin-right: $inlineSpacing;
|
|
15
|
+
margin-bottom: $inlineSpacing;
|
|
16
|
+
|
|
17
|
+
button {
|
|
18
|
+
background-color: $carouselIndicatorBg;
|
|
19
|
+
width: $carouselIndicatorWidth;
|
|
20
|
+
height: $carouselIndicatorHeight;
|
|
21
|
+
transition: $actionIconTransition;
|
|
22
|
+
border-radius: $carouselIndicatorBorderRadius;
|
|
23
|
+
|
|
24
|
+
&:hover {
|
|
25
|
+
background: $carouselIndicatorHoverBg;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-highlight {
|
|
30
|
+
button {
|
|
31
|
+
background: $highlightBg;
|
|
32
|
+
color: $highlightTextColor;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
.p-datatable {
|
|
2
|
+
.p-paginator-top {
|
|
3
|
+
border-width: $tableTopPaginatorBorderWidth;
|
|
4
|
+
border-radius: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.p-paginator-bottom {
|
|
8
|
+
border-width: $tableBottomPaginatorBorderWidth;
|
|
9
|
+
border-radius: 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-datatable-header {
|
|
13
|
+
background: $tableHeaderBg;
|
|
14
|
+
color: $tableHeaderTextColor;
|
|
15
|
+
border: $tableHeaderBorder;
|
|
16
|
+
border-width: $tableHeaderBorderWidth;
|
|
17
|
+
padding: $tableHeaderPadding;
|
|
18
|
+
font-weight: $tableHeaderFontWeight;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-datatable-footer {
|
|
22
|
+
background: $tableFooterBg;
|
|
23
|
+
color: $tableFooterTextColor;
|
|
24
|
+
border: $tableFooterBorder;
|
|
25
|
+
border-width: $tableFooterBorderWidth;
|
|
26
|
+
padding: $tableFooterPadding;
|
|
27
|
+
font-weight: $tableFooterFontWeight;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.p-datatable-thead > tr > th {
|
|
31
|
+
text-align: $tableCellContentAlignment;
|
|
32
|
+
padding: $tableHeaderCellPadding;
|
|
33
|
+
border: $tableHeaderCellBorder;
|
|
34
|
+
border-width: $tableHeaderCellBorderWidth;
|
|
35
|
+
font-weight: $tableHeaderCellFontWeight;
|
|
36
|
+
color: $tableHeaderCellTextColor;
|
|
37
|
+
background: $tableHeaderCellBg;
|
|
38
|
+
transition: $listItemTransition;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-datatable-tfoot > tr > td {
|
|
42
|
+
text-align: $tableCellContentAlignment;
|
|
43
|
+
padding: $tableFooterCellPadding;
|
|
44
|
+
border: $tableFooterCellBorder;
|
|
45
|
+
border-width: $tableFooterCellBorderWidth;
|
|
46
|
+
font-weight: $tableFooterCellFontWeight;
|
|
47
|
+
color: $tableFooterCellTextColor;
|
|
48
|
+
background: $tableFooterCellBg;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-sortable-column {
|
|
52
|
+
.p-sortable-column-icon {
|
|
53
|
+
color: $tableHeaderCellIconColor;
|
|
54
|
+
margin-left: $inlineSpacing;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.p-sortable-column-badge {
|
|
58
|
+
border-radius: 50%;
|
|
59
|
+
height: $tableSortableColumnBadgeSize;
|
|
60
|
+
min-width: $tableSortableColumnBadgeSize;
|
|
61
|
+
line-height: $tableSortableColumnBadgeSize;
|
|
62
|
+
color: $highlightTextColor;
|
|
63
|
+
background: $highlightBg;
|
|
64
|
+
margin-left: $inlineSpacing;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&:not(.p-highlight):hover {
|
|
68
|
+
background: $tableHeaderCellHoverBg;
|
|
69
|
+
color: $tableHeaderCellTextHoverColor;
|
|
70
|
+
|
|
71
|
+
.p-sortable-column-icon {
|
|
72
|
+
color: $tableHeaderCellIconHoverColor;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.p-highlight {
|
|
77
|
+
background: $tableHeaderCellHighlightBg;
|
|
78
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
79
|
+
|
|
80
|
+
.p-sortable-column-icon {
|
|
81
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&:hover {
|
|
85
|
+
background: $tableHeaderCellHighlightHoverBg;
|
|
86
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
87
|
+
|
|
88
|
+
.p-sortable-column-icon {
|
|
89
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&:focus {
|
|
95
|
+
box-shadow: $inputListItemFocusShadow;
|
|
96
|
+
outline: 0 none;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.p-datatable-tbody {
|
|
101
|
+
> tr {
|
|
102
|
+
background: $tableBodyRowBg;
|
|
103
|
+
color: $tableBodyRowTextColor;
|
|
104
|
+
transition: $listItemTransition;
|
|
105
|
+
outline-color: $focusOutlineColor;
|
|
106
|
+
|
|
107
|
+
> td {
|
|
108
|
+
text-align: $tableCellContentAlignment;
|
|
109
|
+
border: $tableBodyCellBorder;
|
|
110
|
+
border-width: $tableBodyCellBorderWidth;
|
|
111
|
+
padding: $tableBodyCellPadding;
|
|
112
|
+
|
|
113
|
+
.p-row-toggler,
|
|
114
|
+
.p-row-editor-init,
|
|
115
|
+
.p-row-editor-save,
|
|
116
|
+
.p-row-editor-cancel {
|
|
117
|
+
@include action-icon();
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.p-row-editor-save {
|
|
121
|
+
margin-right: $inlineSpacing;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
&.p-highlight {
|
|
126
|
+
background: $highlightBg;
|
|
127
|
+
color: $highlightTextColor;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&.p-datatable-dragpoint-top > td {
|
|
131
|
+
box-shadow: inset 0 2px 0 0 $highlightBg;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
&.p-datatable-dragpoint-bottom > td {
|
|
135
|
+
box-shadow: inset 0 -2px 0 0 $highlightBg;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&.p-datatable-hoverable-rows {
|
|
141
|
+
.p-datatable-tbody > tr:not(.p-highlight):hover {
|
|
142
|
+
background: $tableBodyRowHoverBg;
|
|
143
|
+
color: $tableBodyRowTextHoverColor;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.p-column-resizer-helper {
|
|
148
|
+
background: $tableResizerHelperBg;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.p-datatable-scrollable-header,
|
|
152
|
+
.p-datatable-scrollable-footer {
|
|
153
|
+
background: $panelHeaderBg;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.p-datatable-loading-icon {
|
|
157
|
+
font-size: $loadingIconFontSize;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&.p-datatable-gridlines {
|
|
161
|
+
.p-datatable-header {
|
|
162
|
+
border-width: 1px 1px 0 1px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.p-datatable-footer {
|
|
166
|
+
border-width: 0 1px 1px 1px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.p-paginator-top {
|
|
170
|
+
border-width: 0 1px 0 1px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.p-paginator-bottom {
|
|
174
|
+
border-width: 0 1px 1px 1px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.p-datatable-thead {
|
|
178
|
+
> tr {
|
|
179
|
+
> th {
|
|
180
|
+
border-width: 1px 1px nth($tableHeaderCellBorderWidth,3) 1px;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.p-datatable-tbody {
|
|
186
|
+
> tr {
|
|
187
|
+
> td {
|
|
188
|
+
border-width: 1px;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.p-datatable-tfoot {
|
|
194
|
+
> tr {
|
|
195
|
+
> td {
|
|
196
|
+
border-width: 1px;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&.p-datatable-striped {
|
|
203
|
+
.p-datatable-tbody {
|
|
204
|
+
> tr:nth-child(even) {
|
|
205
|
+
background: $tableBodyRowEvenBg;
|
|
206
|
+
|
|
207
|
+
&.p-highlight {
|
|
208
|
+
background: $highlightBg;
|
|
209
|
+
color: $highlightTextColor;
|
|
210
|
+
|
|
211
|
+
.p-row-toggler {
|
|
212
|
+
color: $highlightTextColor;
|
|
213
|
+
|
|
214
|
+
&:hover {
|
|
215
|
+
color: $highlightTextColor;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
&.p-datatable-sm {
|
|
224
|
+
.p-datatable-header {
|
|
225
|
+
@include scaledPadding($tableHeaderPadding, $tableScaleSM);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.p-datatable-thead > tr > th {
|
|
229
|
+
@include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.p-datatable-tbody > tr > td {
|
|
233
|
+
@include scaledPadding($tableBodyCellPadding, $tableScaleSM);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.p-datatable-tfoot > tr > td {
|
|
237
|
+
@include scaledPadding($tableFooterPadding, $tableScaleSM);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.p-datatable-footer {
|
|
241
|
+
@include scaledPadding($tableFooterPadding, $tableScaleSM);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
&.p-datatable-lg {
|
|
246
|
+
.p-datatable-header {
|
|
247
|
+
@include scaledPadding($tableHeaderPadding, $tableScaleLG);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.p-datatable-thead > tr > th {
|
|
251
|
+
@include scaledPadding($tableHeaderCellPadding, $tableScaleLG);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.p-datatable-tbody > tr > td {
|
|
255
|
+
@include scaledPadding($tableBodyCellPadding, $tableScaleLG);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.p-datatable-tfoot > tr > td {
|
|
259
|
+
@include scaledPadding($tableFooterPadding, $tableScaleLG);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.p-datatable-footer {
|
|
263
|
+
@include scaledPadding($tableFooterPadding, $tableScaleLG);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.p-dataview {
|
|
2
|
+
.p-paginator-top {
|
|
3
|
+
border-width: $tableTopPaginatorBorderWidth;
|
|
4
|
+
border-radius: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.p-paginator-bottom {
|
|
8
|
+
border-width: $tableBottomPaginatorBorderWidth;
|
|
9
|
+
border-radius: 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-dataview-header {
|
|
13
|
+
background: $tableHeaderBg;
|
|
14
|
+
color: $tableHeaderTextColor;
|
|
15
|
+
border: $tableHeaderBorder;
|
|
16
|
+
border-width: $tableHeaderBorderWidth;
|
|
17
|
+
padding: $tableHeaderPadding;
|
|
18
|
+
font-weight: $tableHeaderFontWeight;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-dataview-content {
|
|
22
|
+
background: $tableBodyRowBg;
|
|
23
|
+
color: $tableBodyRowTextColor;
|
|
24
|
+
border: $dataViewContentBorder;
|
|
25
|
+
padding: $dataViewContentPadding;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-dataview-list {
|
|
29
|
+
.p-dataview-content {
|
|
30
|
+
> .grid > div {
|
|
31
|
+
border: $dataViewListItemBorder;
|
|
32
|
+
border-width: $dataViewListItemBorderWidth;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.p-dataview-footer {
|
|
38
|
+
background: $tableFooterBg;
|
|
39
|
+
color: $tableFooterTextColor;
|
|
40
|
+
border: $tableFooterBorder;
|
|
41
|
+
border-width: $tableFooterBorderWidth;
|
|
42
|
+
padding: $tableFooterPadding;
|
|
43
|
+
font-weight: $tableFooterFontWeight;
|
|
44
|
+
border-bottom-left-radius: $borderRadius;
|
|
45
|
+
border-bottom-right-radius: $borderRadius;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.p-dataview-loading-icon {
|
|
49
|
+
font-size: $loadingIconFontSize;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.p-dataview-emptymessage {
|
|
53
|
+
padding: $panelContentPadding;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
.p-column-filter-row {
|
|
2
|
+
.p-column-filter-menu-button,
|
|
3
|
+
.p-column-filter-clear-button {
|
|
4
|
+
margin-left: $inlineSpacing;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.p-column-filter-menu-button {
|
|
9
|
+
width: $actionIconWidth;
|
|
10
|
+
height: $actionIconHeight;
|
|
11
|
+
color: $actionIconColor;
|
|
12
|
+
border: $actionIconBorder;
|
|
13
|
+
background: $actionIconBg;
|
|
14
|
+
border-radius: $actionIconBorderRadius;
|
|
15
|
+
transition: $actionIconTransition;
|
|
16
|
+
|
|
17
|
+
&:hover {
|
|
18
|
+
color: $actionIconHoverColor;
|
|
19
|
+
border-color: $actionIconHoverBorderColor;
|
|
20
|
+
background: $actionIconHoverBg;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.p-column-filter-menu-button-open,
|
|
24
|
+
&.p-column-filter-menu-button-open:hover {
|
|
25
|
+
background: $actionIconHoverBg;
|
|
26
|
+
color: $actionIconHoverColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-column-filter-menu-button-active,
|
|
30
|
+
&.p-column-filter-menu-button-active:hover {
|
|
31
|
+
background: $highlightBg;
|
|
32
|
+
color: $highlightTextColor;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:focus {
|
|
36
|
+
@include focused();
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-column-filter-clear-button {
|
|
42
|
+
width: $actionIconWidth;
|
|
43
|
+
height: $actionIconHeight;
|
|
44
|
+
color: $actionIconColor;
|
|
45
|
+
border: $actionIconBorder;
|
|
46
|
+
background: $actionIconBg;
|
|
47
|
+
border-radius: $actionIconBorderRadius;
|
|
48
|
+
transition: $actionIconTransition;
|
|
49
|
+
|
|
50
|
+
&:hover {
|
|
51
|
+
color: $actionIconHoverColor;
|
|
52
|
+
border-color: $actionIconHoverBorderColor;
|
|
53
|
+
background: $actionIconHoverBg;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:focus {
|
|
57
|
+
@include focused();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.p-column-filter-overlay {
|
|
62
|
+
background: $inputOverlayBg;
|
|
63
|
+
color: $inputListTextColor;
|
|
64
|
+
border: $inputOverlayBorder;
|
|
65
|
+
border-radius: $borderRadius;
|
|
66
|
+
box-shadow: $inputOverlayShadow;
|
|
67
|
+
min-width: $menuWidth;
|
|
68
|
+
|
|
69
|
+
.p-column-filter-row-items {
|
|
70
|
+
padding: $inputListPadding;
|
|
71
|
+
|
|
72
|
+
.p-column-filter-row-item {
|
|
73
|
+
margin: $inputListItemMargin;
|
|
74
|
+
padding: $inputListItemPadding;
|
|
75
|
+
border: $inputListItemBorder;
|
|
76
|
+
color: $inputListItemTextColor;
|
|
77
|
+
background: $inputListItemBg;
|
|
78
|
+
transition: $listItemTransition;
|
|
79
|
+
border-radius: $inputListItemBorderRadius;
|
|
80
|
+
|
|
81
|
+
&.p-highlight {
|
|
82
|
+
color: $highlightTextColor;
|
|
83
|
+
background: $highlightBg;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
87
|
+
color: $inputListItemTextHoverColor;
|
|
88
|
+
background: $inputListItemHoverBg;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&:focus {
|
|
92
|
+
@include focused-listitem();
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.p-column-filter-separator {
|
|
97
|
+
border-top: $divider;
|
|
98
|
+
margin: $menuSeparatorMargin;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.p-column-filter-overlay-menu {
|
|
104
|
+
.p-column-filter-operator {
|
|
105
|
+
padding: $inputListHeaderPadding;
|
|
106
|
+
border-bottom: $inputListHeaderBorder;
|
|
107
|
+
color: $inputListHeaderTextColor;
|
|
108
|
+
background: $inputOverlayHeaderBg;
|
|
109
|
+
margin: $inputListHeaderMargin;
|
|
110
|
+
border-top-right-radius: $borderRadius;
|
|
111
|
+
border-top-left-radius: $borderRadius;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.p-column-filter-constraint {
|
|
115
|
+
padding: $panelContentPadding;
|
|
116
|
+
border-bottom: $divider;
|
|
117
|
+
|
|
118
|
+
.p-column-filter-matchmode-dropdown {
|
|
119
|
+
margin-bottom: $inlineSpacing;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.p-column-filter-remove-button {
|
|
123
|
+
margin-top: $inlineSpacing;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&:last-child {
|
|
127
|
+
border-bottom: 0 none;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.p-column-filter-add-rule {
|
|
132
|
+
padding: $panelFooterPadding;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.p-column-filter-buttonbar {
|
|
136
|
+
padding: $panelContentPadding;
|
|
137
|
+
}
|
|
138
|
+
}
|