aril 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -48
- package/aril-0.0.9.tgz +0 -0
- package/esm2022/http/index.mjs +1 -1
- package/esm2022/http/lib/enums.mjs +6 -6
- package/esm2022/http/lib/interfaces.mjs +10 -31
- package/esm2022/http/src/httpClient.mjs +3 -3
- package/esm2022/http/src/serviceBase.mjs +25 -27
- package/esm2022/http/src/serviceStateMethods.mjs +4 -7
- package/esm2022/i18n/aril-i18n.mjs +5 -0
- package/esm2022/i18n/index.mjs +6 -0
- package/esm2022/i18n/src/file-url-token.mjs +3 -0
- package/esm2022/i18n/src/i18n.module.mjs +17 -0
- package/esm2022/i18n/src/loader.mjs +20 -0
- package/esm2022/i18n/src/provideI18n.mjs +16 -0
- package/esm2022/i18n/src/provideScope.mjs +18 -0
- package/esm2022/public-api.mjs +2 -2
- package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +3 -3
- package/esm2022/theme/layout/app/config/app.config.component.mjs +12 -14
- package/esm2022/theme/layout/app/layout/app.layout.component.mjs +15 -9
- package/esm2022/theme/layout/app/menu/app.menu.component.mjs +148 -166
- package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +3 -3
- package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +4 -4
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +4 -4
- package/esm2022/theme/layout/index.mjs +1 -1
- package/esm2022/theme/layout/service/app.layout.service.mjs +10 -15
- package/esm2022/theme/layout/service/app.menu.service.mjs +1 -1
- package/esm2022/theme/layout/service/menuchangeevent.mjs +1 -1
- package/esm2022/ui/badge/index.mjs +1 -1
- package/esm2022/ui/badge/src/badge.component.mjs +3 -3
- package/esm2022/ui/button/index.mjs +1 -1
- package/esm2022/ui/button/src/button.component.mjs +4 -4
- package/esm2022/ui/button/src/split-button.component.mjs +3 -3
- package/esm2022/ui/calendar/index.mjs +1 -1
- package/esm2022/ui/calendar/src/calendar.component.mjs +27 -14
- package/esm2022/ui/checkbox/index.mjs +1 -1
- package/esm2022/ui/checkbox/src/check-box.component.mjs +4 -4
- package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +4 -4
- package/esm2022/ui/dxField/index.mjs +1 -1
- package/esm2022/ui/dxField/src/dx-field.component.mjs +5 -5
- package/esm2022/ui/field/index.mjs +1 -1
- package/esm2022/ui/field/src/field.component.mjs +11 -9
- package/esm2022/ui/fileUpload/index.mjs +1 -1
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +12 -12
- package/esm2022/ui/form/index.mjs +7 -7
- package/esm2022/ui/form/src/form-submit-button.component.mjs +22 -27
- package/esm2022/ui/form/src/form.component.mjs +2 -2
- package/esm2022/ui/index.mjs +2 -2
- package/esm2022/ui/lib/index.mjs +1 -1
- package/esm2022/ui/lib/src/form/form-error-message.component.mjs +9 -9
- package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +1 -1
- package/esm2022/ui/lib/src/form/form-field-builder.mjs +4 -4
- package/esm2022/ui/lib/src/form/form-validation.mjs +3 -3
- package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +2 -2
- package/esm2022/ui/lib/src/input/baseInput.mjs +4 -4
- package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +6 -6
- package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +3 -3
- package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +1 -1
- package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +3 -2
- package/esm2022/ui/lib/src/input/input-transforms.mjs +1 -1
- package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +12 -6
- package/esm2022/ui/mask/index.mjs +1 -1
- package/esm2022/ui/mask/src/mask.component.mjs +8 -8
- package/esm2022/ui/number/index.mjs +1 -1
- package/esm2022/ui/number/src/number.component.mjs +10 -10
- package/esm2022/ui/overlayPanel/index.mjs +1 -1
- package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +4 -7
- package/esm2022/ui/panel/index.mjs +1 -1
- package/esm2022/ui/panel/src/panel.component.mjs +3 -3
- package/esm2022/ui/password/index.mjs +1 -1
- package/esm2022/ui/password/src/password.component.mjs +7 -7
- package/esm2022/ui/radioButton/index.mjs +1 -1
- package/esm2022/ui/radioButton/src/radio-button.component.mjs +8 -8
- package/esm2022/ui/selectBox/index.mjs +1 -1
- package/esm2022/ui/selectBox/src/select-box.component.mjs +8 -8
- package/esm2022/ui/switch/index.mjs +1 -1
- package/esm2022/ui/switch/src/switch.component.mjs +7 -7
- package/esm2022/ui/table/index.mjs +3 -5
- package/esm2022/ui/table/src/i18n.mjs +53 -90
- package/esm2022/ui/table/src/table-column.component.mjs +4 -8
- package/esm2022/ui/table/src/table.component.mjs +13 -10
- package/esm2022/ui/tagBox/index.mjs +1 -1
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +13 -13
- package/esm2022/ui/text/index.mjs +1 -1
- package/esm2022/ui/text/src/text.component.mjs +5 -5
- package/esm2022/ui/textArea/index.mjs +1 -1
- package/esm2022/ui/textArea/src/text-area.component.mjs +4 -4
- package/esm2022/ui/tree/index.mjs +1 -1
- package/esm2022/ui/tree/src/tree.component.mjs +5 -5
- package/esm2022/ui/treeTable/index.mjs +1 -1
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +3 -3
- package/esm2022/ui/value/index.mjs +1 -1
- package/esm2022/ui/value/src/value.component.mjs +13 -13
- package/esm2022/util/index.mjs +2 -2
- package/esm2022/util/init-event/index.mjs +1 -1
- package/esm2022/util/init-event/src/init-event.directive.mjs +1 -1
- package/esm2022/util/lib/index.mjs +2 -1
- package/esm2022/util/lib/src/interfaces.mjs +1 -1
- package/esm2022/util/lib/src/module-router.mjs +16 -0
- package/esm2022/util/lib/src/types.mjs +1 -1
- package/esm2022/util/primitive-extensions/index.mjs +5 -5
- package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +1 -1
- package/esm2022/util/primitive-extensions/src/date.extensions.mjs +68 -47
- package/esm2022/util/primitive-extensions/src/number.extensions.mjs +13 -7
- package/esm2022/util/primitive-extensions/src/string.extensions.mjs +4 -4
- package/esm2022/util/pub-sub/index.mjs +1 -1
- package/esm2022/util/pub-sub/src/pub-sub.service.mjs +7 -5
- package/fesm2022/aril-http.mjs +39 -63
- package/fesm2022/aril-http.mjs.map +1 -1
- package/fesm2022/aril-i18n.mjs +72 -0
- package/fesm2022/aril-i18n.mjs.map +1 -0
- package/fesm2022/aril-theme-layout.mjs +190 -209
- package/fesm2022/aril-theme-layout.mjs.map +1 -1
- package/fesm2022/aril-ui-badge.mjs +2 -2
- package/fesm2022/aril-ui-badge.mjs.map +1 -1
- package/fesm2022/aril-ui-button.mjs +5 -5
- package/fesm2022/aril-ui-button.mjs.map +1 -1
- package/fesm2022/aril-ui-calendar.mjs +25 -12
- package/fesm2022/aril-ui-calendar.mjs.map +1 -1
- package/fesm2022/aril-ui-checkbox.mjs +5 -5
- package/fesm2022/aril-ui-checkbox.mjs.map +1 -1
- package/fesm2022/aril-ui-dxField.mjs +4 -4
- package/fesm2022/aril-ui-dxField.mjs.map +1 -1
- package/fesm2022/aril-ui-field.mjs +9 -7
- package/fesm2022/aril-ui-field.mjs.map +1 -1
- package/fesm2022/aril-ui-fileUpload.mjs +11 -11
- package/fesm2022/aril-ui-fileUpload.mjs.map +1 -1
- package/fesm2022/aril-ui-form.mjs +28 -34
- package/fesm2022/aril-ui-form.mjs.map +1 -1
- package/fesm2022/aril-ui-lib.mjs +30 -23
- package/fesm2022/aril-ui-lib.mjs.map +1 -1
- package/fesm2022/aril-ui-mask.mjs +8 -8
- package/fesm2022/aril-ui-mask.mjs.map +1 -1
- package/fesm2022/aril-ui-number.mjs +10 -10
- package/fesm2022/aril-ui-number.mjs.map +1 -1
- package/fesm2022/aril-ui-overlayPanel.mjs +2 -5
- package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -1
- package/fesm2022/aril-ui-panel.mjs +2 -2
- package/fesm2022/aril-ui-panel.mjs.map +1 -1
- package/fesm2022/aril-ui-password.mjs +7 -7
- package/fesm2022/aril-ui-password.mjs.map +1 -1
- package/fesm2022/aril-ui-radioButton.mjs +7 -7
- package/fesm2022/aril-ui-radioButton.mjs.map +1 -1
- package/fesm2022/aril-ui-selectBox.mjs +5 -5
- package/fesm2022/aril-ui-selectBox.mjs.map +1 -1
- package/fesm2022/aril-ui-switch.mjs +7 -7
- package/fesm2022/aril-ui-switch.mjs.map +1 -1
- package/fesm2022/aril-ui-table.mjs +66 -105
- package/fesm2022/aril-ui-table.mjs.map +1 -1
- package/fesm2022/aril-ui-tagBox.mjs +11 -11
- package/fesm2022/aril-ui-tagBox.mjs.map +1 -1
- package/fesm2022/aril-ui-text.mjs +4 -4
- package/fesm2022/aril-ui-text.mjs.map +1 -1
- package/fesm2022/aril-ui-textArea.mjs +3 -3
- package/fesm2022/aril-ui-textArea.mjs.map +1 -1
- package/fesm2022/aril-ui-tree.mjs +3 -3
- package/fesm2022/aril-ui-tree.mjs.map +1 -1
- package/fesm2022/aril-ui-treeTable.mjs +2 -2
- package/fesm2022/aril-ui-treeTable.mjs.map +1 -1
- package/fesm2022/aril-ui-value.mjs +11 -11
- package/fesm2022/aril-ui-value.mjs.map +1 -1
- package/fesm2022/aril-ui.mjs +1 -1
- package/fesm2022/aril-ui.mjs.map +1 -1
- package/fesm2022/aril-util-init-event.mjs.map +1 -1
- package/fesm2022/aril-util-lib.mjs +19 -0
- package/fesm2022/aril-util-lib.mjs.map +1 -1
- package/fesm2022/aril-util-primitive-extensions.mjs +82 -55
- package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -1
- package/fesm2022/aril-util-pub-sub.mjs +6 -4
- package/fesm2022/aril-util-pub-sub.mjs.map +1 -1
- package/fesm2022/aril-util.mjs +1 -1
- package/fesm2022/aril-util.mjs.map +1 -1
- package/fesm2022/aril.mjs +1 -1
- package/fesm2022/aril.mjs.map +1 -1
- package/http/lib/enums.d.ts +5 -5
- package/http/lib/interfaces.d.ts +9 -31
- package/http/src/httpClient.d.ts +3 -3
- package/http/src/serviceBase.d.ts +2 -1
- package/http/src/serviceStateMethods.d.ts +2 -3
- package/i18n/index.d.ts +5 -0
- package/i18n/src/file-url-token.d.ts +2 -0
- package/i18n/src/i18n.module.d.ts +7 -0
- package/i18n/src/loader.d.ts +9 -0
- package/i18n/src/provideI18n.d.ts +2 -0
- package/i18n/src/provideScope.d.ts +9 -0
- package/package.json +13 -7
- package/styles/ui/ui.common.scss +8 -8
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.ts +2 -4
- package/theme/layout/app/config/app.config.component.html +13 -62
- package/theme/layout/app/config/app.config.component.ts +12 -21
- package/theme/layout/app/layout/app.layout.component.ts +39 -52
- package/theme/layout/app/menu/app.menu.component.ts +147 -121
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.html +5 -18
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.ts +2 -3
- package/theme/layout/app/sidebar/app.sidebar.component.html +9 -31
- package/theme/layout/app/sidebar/app.sidebar.component.ts +6 -3
- package/theme/layout/app/topbar/app.topbar.component.html +1 -5
- package/theme/layout/app/topbar/app.topbar.component.ts +4 -5
- package/theme/layout/index.ts +1 -1
- package/theme/layout/ng-package.json +6 -6
- package/theme/layout/service/app.layout.service.ts +12 -31
- package/theme/layout/service/app.menu.service.ts +0 -1
- package/theme/layout/service/menuchangeevent.ts +1 -1
- package/theme/styles/layout/_animation.scss +53 -53
- package/theme/styles/layout/_breadcrumb.scss +21 -21
- package/theme/styles/layout/_config.scss +42 -42
- package/theme/styles/layout/_content.scss +3 -3
- package/theme/styles/layout/_fonts.scss +40 -36
- package/theme/styles/layout/_layout_dark.scss +5 -5
- package/theme/styles/layout/_layout_dim.scss +5 -5
- package/theme/styles/layout/_layout_light.scss +5 -5
- package/theme/styles/layout/_main.scss +28 -28
- package/theme/styles/layout/_profile.scss +10 -10
- package/theme/styles/layout/_responsive.scss +111 -113
- package/theme/styles/layout/_sidebar_drawer.scss +234 -236
- package/theme/styles/layout/_sidebar_horizontal.scss +163 -163
- package/theme/styles/layout/_sidebar_reveal.scss +201 -203
- package/theme/styles/layout/_sidebar_slim.scss +144 -145
- package/theme/styles/layout/_sidebar_slim_plus.scss +162 -163
- package/theme/styles/layout/_sidebar_vertical.scss +153 -153
- package/theme/styles/layout/_topbar.scss +78 -78
- package/theme/styles/layout/_typography.scss +68 -63
- package/theme/styles/layout/_utils.scss +24 -24
- package/theme/styles/layout/layout.scss +24 -24
- package/theme/styles/layout/menutheme/_colorscheme.scss +11 -11
- package/theme/styles/layout/menutheme/_menutheme.scss +3 -3
- package/theme/styles/layout/menutheme/_primarycolor.scss +16 -16
- package/theme/styles/layout/menutheme/_transparent.scss +26 -26
- package/theme/styles/layout/preloading.scss +84 -84
- package/theme/styles/theme/base/_colors.scss +14 -15
- package/theme/styles/theme/base/_common.scss +39 -38
- package/theme/styles/theme/base/_components.scss +97 -97
- package/theme/styles/theme/base/_mixins.scss +281 -281
- package/theme/styles/theme/base/components/button/_button.scss +535 -535
- package/theme/styles/theme/base/components/button/_speeddial.scss +60 -60
- package/theme/styles/theme/base/components/button/_splitbutton.scss +328 -334
- package/theme/styles/theme/base/components/data/_carousel.scss +31 -31
- package/theme/styles/theme/base/components/data/_datatable.scss +336 -336
- package/theme/styles/theme/base/components/data/_dataview.scss +38 -38
- package/theme/styles/theme/base/components/data/_filter.scss +124 -125
- package/theme/styles/theme/base/components/data/_organizationchart.scss +48 -48
- package/theme/styles/theme/base/components/data/_paginator.scss +78 -78
- package/theme/styles/theme/base/components/data/_timeline.scss +33 -36
- package/theme/styles/theme/base/components/data/_treetable.scss +253 -254
- package/theme/styles/theme/base/components/data/_virtualscroller.scss +24 -24
- package/theme/styles/theme/base/components/file/_fileupload.scss +51 -51
- package/theme/styles/theme/base/components/input/_autocomplete.scss +120 -120
- package/theme/styles/theme/base/components/input/_calendar.scss +250 -250
- package/theme/styles/theme/base/components/input/_cascadeselect.scss +117 -118
- package/theme/styles/theme/base/components/input/_checkbox.scss +71 -71
- package/theme/styles/theme/base/components/input/_chips.scss +49 -49
- package/theme/styles/theme/base/components/input/_colorpicker.scss +11 -11
- package/theme/styles/theme/base/components/input/_dropdown.scss +141 -141
- package/theme/styles/theme/base/components/input/_editor.scss +120 -120
- package/theme/styles/theme/base/components/input/_inputgroup.scss +42 -42
- package/theme/styles/theme/base/components/input/_inputmask.scss +10 -10
- package/theme/styles/theme/base/components/input/_inputnumber.scss +21 -21
- package/theme/styles/theme/base/components/input/_inputswitch.scss +54 -54
- package/theme/styles/theme/base/components/input/_inputtext.scss +62 -62
- package/theme/styles/theme/base/components/input/_listbox.scss +80 -80
- package/theme/styles/theme/base/components/input/_multiselect.scss +158 -160
- package/theme/styles/theme/base/components/input/_password.scss +42 -42
- package/theme/styles/theme/base/components/input/_radiobutton.scss +57 -57
- package/theme/styles/theme/base/components/input/_rating.scss +53 -53
- package/theme/styles/theme/base/components/input/_selectbutton.scss +46 -46
- package/theme/styles/theme/base/components/input/_slider.scss +59 -55
- package/theme/styles/theme/base/components/input/_togglebutton.scss +44 -44
- package/theme/styles/theme/base/components/input/_treeselect.scss +119 -119
- package/theme/styles/theme/base/components/menu/_breadcrumb.scss +33 -33
- package/theme/styles/theme/base/components/menu/_contextmenu.scss +31 -31
- package/theme/styles/theme/base/components/menu/_dock.scss +80 -80
- package/theme/styles/theme/base/components/menu/_megamenu.scss +54 -54
- package/theme/styles/theme/base/components/menu/_menu.scss +30 -30
- package/theme/styles/theme/base/components/menu/_menubar.scss +136 -137
- package/theme/styles/theme/base/components/menu/_panelmenu.scss +151 -151
- package/theme/styles/theme/base/components/menu/_slidemenu.scss +57 -57
- package/theme/styles/theme/base/components/menu/_steps.scss +46 -46
- package/theme/styles/theme/base/components/menu/_tabmenu.scss +60 -61
- package/theme/styles/theme/base/components/menu/_tieredmenu.scss +34 -34
- package/theme/styles/theme/base/components/messages/_inlinemessage.scss +55 -55
- package/theme/styles/theme/base/components/messages/_message.scss +105 -105
- package/theme/styles/theme/base/components/messages/_toast.scss +97 -98
- package/theme/styles/theme/base/components/misc/_avatar.scss +22 -22
- package/theme/styles/theme/base/components/misc/_badge.scss +40 -40
- package/theme/styles/theme/base/components/misc/_chip.scss +39 -39
- package/theme/styles/theme/base/components/misc/_inplace.scss +12 -13
- package/theme/styles/theme/base/components/misc/_progressbar.scss +13 -13
- package/theme/styles/theme/base/components/misc/_scrolltop.scss +20 -20
- package/theme/styles/theme/base/components/misc/_skeleton.scss +6 -6
- package/theme/styles/theme/base/components/misc/_tag.scss +31 -31
- package/theme/styles/theme/base/components/misc/_terminal.scss +1 -1
- package/theme/styles/theme/base/components/multimedia/_galleria.scss +150 -150
- package/theme/styles/theme/base/components/multimedia/_image.scss +35 -35
- package/theme/styles/theme/base/components/overlay/_confirmpopup.scss +57 -59
- package/theme/styles/theme/base/components/overlay/_dialog.scss +56 -56
- package/theme/styles/theme/base/components/overlay/_overlaypanel.scss +58 -60
- package/theme/styles/theme/base/components/overlay/_sidebar.scss +20 -20
- package/theme/styles/theme/base/components/overlay/_tooltip.scss +27 -27
- package/theme/styles/theme/base/components/panel/_accordion.scss +104 -104
- package/theme/styles/theme/base/components/panel/_card.scss +23 -23
- package/theme/styles/theme/base/components/panel/_divider.scss +24 -24
- package/theme/styles/theme/base/components/panel/_fieldset.scss +38 -38
- package/theme/styles/theme/base/components/panel/_panel.scss +61 -61
- package/theme/styles/theme/base/components/panel/_scrollpanel.scss +5 -5
- package/theme/styles/theme/base/components/panel/_splitter.scss +15 -15
- package/theme/styles/theme/base/components/panel/_tabview.scss +68 -68
- package/theme/styles/theme/base/components/panel/_toolbar.scss +8 -8
- package/theme/styles/theme/dark/_extensions.scss +134 -120
- package/theme/styles/theme/dark/_variables.scss +918 -896
- package/theme/styles/theme/dark/blue/theme.scss +14 -14
- package/theme/styles/theme/dark/indigo/theme.scss +14 -14
- package/theme/styles/theme/light/_extensions.scss +116 -102
- package/theme/styles/theme/light/_variables.scss +911 -898
- package/theme/styles/theme/light/blue/theme.scss +14 -14
- package/theme/styles/theme/light/indigo/theme.scss +14 -14
- package/ui/button/src/button.component.d.ts +1 -1
- package/ui/calendar/src/calendar.component.d.ts +1 -1
- package/ui/form/index.d.ts +4 -4
- package/ui/form/src/form-submit-button.component.d.ts +5 -5
- package/ui/lib/src/form/form-validation.d.ts +1 -1
- package/ui/lib/src/input/baseInput.d.ts +2 -2
- package/ui/lib/src/input/common-input-validators.service.d.ts +3 -3
- package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +2 -2
- package/ui/lib/src/input/input-transforms.d.ts +1 -1
- package/ui/mask/src/mask.component.d.ts +3 -3
- package/ui/number/src/number.component.d.ts +4 -4
- package/ui/overlayPanel/src/overlay-panel.component.d.ts +1 -1
- package/ui/password/src/password.component.d.ts +3 -3
- package/ui/selectBox/src/select-box.component.d.ts +2 -2
- package/ui/switch/src/switch.component.d.ts +3 -3
- package/ui/table/index.d.ts +0 -1
- package/ui/table/src/table-column.component.d.ts +1 -1
- package/ui/table/src/table.component.d.ts +4 -3
- package/ui/tree/src/tree.component.d.ts +1 -1
- package/ui/value/src/value.component.d.ts +2 -2
- package/util/lib/index.d.ts +1 -0
- package/util/lib/src/module-router.d.ts +5 -0
- package/util/lib/src/types.d.ts +2 -2
- package/util/primitive-extensions/index.d.ts +4 -4
- package/aril-0.0.7.tgz +0 -0
|
@@ -1,576 +1,576 @@
|
|
|
1
1
|
.p-button {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
2
|
+
color: $buttonTextColor;
|
|
3
|
+
background: $buttonBg;
|
|
4
|
+
border: $buttonBorder;
|
|
5
|
+
padding: $buttonPadding;
|
|
6
|
+
font-size: $fontSize;
|
|
7
|
+
transition: $formElementTransition;
|
|
8
|
+
border-radius: $borderRadius;
|
|
9
|
+
|
|
10
|
+
&:not(:disabled):hover {
|
|
11
|
+
background: $buttonHoverBg;
|
|
12
|
+
color: $buttonTextHoverColor;
|
|
13
|
+
border-color: $buttonHoverBorderColor;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:not(:disabled):active {
|
|
17
|
+
background: $buttonActiveBg;
|
|
18
|
+
color: $buttonTextActiveColor;
|
|
19
|
+
border-color: $buttonActiveBorderColor;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.p-button-outlined {
|
|
23
|
+
background-color: transparent;
|
|
24
|
+
color: $buttonBg;
|
|
25
|
+
border: $outlinedButtonBorder;
|
|
26
|
+
|
|
27
|
+
&:not(:disabled):hover {
|
|
28
|
+
background: rgba($buttonBg, $textButtonHoverBgOpacity);
|
|
29
|
+
color: $buttonBg;
|
|
30
|
+
border: $outlinedButtonBorder;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:not(:disabled):active {
|
|
34
|
+
background: rgba($buttonBg, $textButtonActiveBgOpacity);
|
|
35
|
+
color: $buttonBg;
|
|
36
|
+
border: $outlinedButtonBorder;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.p-button-plain {
|
|
40
|
+
color: $plainButtonTextColor;
|
|
41
|
+
border-color: $plainButtonTextColor;
|
|
42
|
+
|
|
43
|
+
&:not(:disabled):hover {
|
|
44
|
+
background: $plainButtonHoverBgColor;
|
|
45
|
+
color: $plainButtonTextColor;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&:not(:disabled):active {
|
|
49
|
+
background: $plainButtonActiveBgColor;
|
|
50
|
+
color: $plainButtonTextColor;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.p-button-text {
|
|
56
|
+
background-color: transparent;
|
|
57
|
+
color: $buttonBg;
|
|
58
|
+
border-color: transparent;
|
|
59
|
+
|
|
60
|
+
&:not(:disabled):hover {
|
|
61
|
+
background: rgba($buttonBg, $textButtonHoverBgOpacity);
|
|
62
|
+
color: $buttonBg;
|
|
63
|
+
border-color: transparent;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&:not(:disabled):active {
|
|
67
|
+
background: rgba($buttonBg, $textButtonActiveBgOpacity);
|
|
68
|
+
color: $buttonBg;
|
|
69
|
+
border-color: transparent;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.p-button-plain {
|
|
73
|
+
color: $plainButtonTextColor;
|
|
74
|
+
|
|
75
|
+
&:not(:disabled):hover {
|
|
76
|
+
background: $plainButtonHoverBgColor;
|
|
77
|
+
color: $plainButtonTextColor;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:not(:disabled):active {
|
|
81
|
+
background: $plainButtonActiveBgColor;
|
|
82
|
+
color: $plainButtonTextColor;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&:focus {
|
|
88
|
+
@include focused();
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.p-button-label {
|
|
92
|
+
transition-duration: $transitionDuration;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.p-button-icon-left {
|
|
96
|
+
margin-right: $inlineSpacing;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.p-button-icon-right {
|
|
100
|
+
margin-left: $inlineSpacing;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.p-button-icon-bottom {
|
|
104
|
+
margin-top: $inlineSpacing;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.p-button-icon-top {
|
|
108
|
+
margin-bottom: $inlineSpacing;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.p-badge {
|
|
112
|
+
margin-left: $inlineSpacing;
|
|
113
|
+
min-width: $fontSize;
|
|
114
|
+
height: $fontSize;
|
|
115
|
+
line-height: $fontSize;
|
|
116
|
+
color: $buttonBg;
|
|
117
|
+
background-color: $buttonTextColor;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&.p-button-raised {
|
|
121
|
+
box-shadow: $raisedButtonShadow;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
&.p-button-rounded {
|
|
125
|
+
border-radius: $roundedButtonBorderRadius;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&.p-button-icon-only {
|
|
129
|
+
width: $buttonIconOnlyWidth;
|
|
130
|
+
padding: $buttonIconOnlyPadding;
|
|
131
|
+
|
|
132
|
+
.p-button-icon-left,
|
|
133
|
+
.p-button-icon-right {
|
|
134
|
+
margin: 0;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&.p-button-rounded {
|
|
138
|
+
border-radius: 50%;
|
|
139
|
+
height: $buttonIconOnlyWidth;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&.p-button-sm {
|
|
144
|
+
@include scaledFontSize($fontSize, $scaleSM);
|
|
145
|
+
@include scaledPadding($buttonPadding, $scaleSM);
|
|
146
|
+
|
|
147
|
+
.p-button-icon {
|
|
148
|
+
@include scaledFontSize($primeIconFontSize, $scaleSM);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&.p-button-lg {
|
|
153
|
+
@include scaledFontSize($fontSize, $scaleLG);
|
|
154
|
+
@include scaledPadding($buttonPadding, $scaleLG);
|
|
155
|
+
|
|
156
|
+
.p-button-icon {
|
|
157
|
+
@include scaledFontSize($primeIconFontSize, $scaleLG);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
&.p-button-loading-label-only {
|
|
162
|
+
.p-button-label {
|
|
163
|
+
margin-left: $inlineSpacing;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.p-button-loading-icon {
|
|
167
|
+
margin-right: 0;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.p-fluid {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
173
|
+
.p-button {
|
|
174
|
+
width: 100%;
|
|
175
|
+
}
|
|
176
176
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
177
|
+
.p-button-icon-only {
|
|
178
|
+
width: $buttonIconOnlyWidth;
|
|
179
|
+
}
|
|
180
180
|
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
.p-buttonset {
|
|
182
|
+
display: flex;
|
|
183
183
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
184
|
+
.p-button {
|
|
185
|
+
flex: 1;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
.p-button.p-button-secondary,
|
|
191
191
|
.p-buttonset.p-button-secondary > .p-button,
|
|
192
192
|
.p-splitbutton.p-button-secondary > .p-button {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
193
|
+
color: $secondaryButtonTextColor;
|
|
194
|
+
background: $secondaryButtonBg;
|
|
195
|
+
border: $secondaryButtonBorder;
|
|
196
|
+
|
|
197
|
+
&:not(:disabled):hover {
|
|
198
|
+
background: $secondaryButtonHoverBg;
|
|
199
|
+
color: $secondaryButtonTextHoverColor;
|
|
200
|
+
border-color: $secondaryButtonHoverBorderColor;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
&:not(:disabled):focus {
|
|
204
|
+
box-shadow: $secondaryButtonFocusShadow;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&:not(:disabled):active {
|
|
208
|
+
background: $secondaryButtonActiveBg;
|
|
209
|
+
color: $secondaryButtonTextActiveColor;
|
|
210
|
+
border-color: $secondaryButtonActiveBorderColor;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
&.p-button-outlined {
|
|
214
|
+
background-color: transparent;
|
|
215
|
+
color: $secondaryButtonBg;
|
|
216
|
+
border: $outlinedButtonBorder;
|
|
217
|
+
|
|
218
|
+
&:not(:disabled):hover {
|
|
219
|
+
background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
|
|
220
|
+
color: $secondaryButtonBg;
|
|
221
|
+
border: $outlinedButtonBorder;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
&:not(:disabled):active {
|
|
225
|
+
background: rgba($secondaryButtonBg, $textButtonActiveBgOpacity);
|
|
226
|
+
color: $secondaryButtonBg;
|
|
227
|
+
border: $outlinedButtonBorder;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
&.p-button-text {
|
|
232
|
+
background-color: transparent;
|
|
233
|
+
color: $secondaryButtonBg;
|
|
234
|
+
border-color: transparent;
|
|
235
|
+
|
|
236
|
+
&:not(:disabled):hover {
|
|
237
|
+
background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
|
|
238
|
+
border-color: transparent;
|
|
239
|
+
color: $secondaryButtonBg;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
&:not(:disabled):active {
|
|
243
|
+
background: rgba($secondaryButtonBg, $textButtonActiveBgOpacity);
|
|
244
|
+
border-color: transparent;
|
|
245
|
+
color: $secondaryButtonBg;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
.p-button.p-button-info,
|
|
251
251
|
.p-buttonset.p-button-info > .p-button,
|
|
252
252
|
.p-splitbutton.p-button-info > .p-button {
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
253
|
+
color: $infoButtonTextColor;
|
|
254
|
+
background: $infoButtonBg;
|
|
255
|
+
border: $infoButtonBorder;
|
|
256
|
+
|
|
257
|
+
&:not(:disabled):hover {
|
|
258
|
+
background: $infoButtonHoverBg;
|
|
259
|
+
color: $infoButtonTextHoverColor;
|
|
260
|
+
border-color: $infoButtonHoverBorderColor;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
&:not(:disabled):focus {
|
|
264
|
+
box-shadow: $infoButtonFocusShadow;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&:not(:disabled):active {
|
|
268
|
+
background: $infoButtonActiveBg;
|
|
269
|
+
color: $infoButtonTextActiveColor;
|
|
270
|
+
border-color: $infoButtonActiveBorderColor;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
&.p-button-outlined {
|
|
274
|
+
background-color: transparent;
|
|
275
|
+
color: $infoButtonBg;
|
|
276
|
+
border: $outlinedButtonBorder;
|
|
277
|
+
|
|
278
|
+
&:not(:disabled):hover {
|
|
279
|
+
background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
|
|
280
|
+
color: $infoButtonBg;
|
|
281
|
+
border: $outlinedButtonBorder;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
&:not(:disabled):active {
|
|
285
|
+
background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
|
|
286
|
+
color: $infoButtonBg;
|
|
287
|
+
border: $outlinedButtonBorder;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
&.p-button-text {
|
|
292
|
+
background-color: transparent;
|
|
293
|
+
color: $infoButtonBg;
|
|
294
|
+
border-color: transparent;
|
|
295
|
+
|
|
296
|
+
&:not(:disabled):hover {
|
|
297
|
+
background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
|
|
298
|
+
border-color: transparent;
|
|
299
|
+
color: $infoButtonBg;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
&:not(:disabled):active {
|
|
303
|
+
background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
|
|
304
|
+
border-color: transparent;
|
|
305
|
+
color: $infoButtonBg;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
308
|
}
|
|
309
309
|
|
|
310
310
|
.p-button.p-button-success,
|
|
311
311
|
.p-buttonset.p-button-success > .p-button,
|
|
312
312
|
.p-splitbutton.p-button-success > .p-button {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
313
|
+
color: $successButtonTextColor;
|
|
314
|
+
background: $successButtonBg;
|
|
315
|
+
border: $successButtonBorder;
|
|
316
|
+
|
|
317
|
+
&:not(:disabled):hover {
|
|
318
|
+
background: $successButtonHoverBg;
|
|
319
|
+
color: $successButtonTextHoverColor;
|
|
320
|
+
border-color: $successButtonHoverBorderColor;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
&:not(:disabled):focus {
|
|
324
|
+
box-shadow: $successButtonFocusShadow;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
&:not(:disabled):active {
|
|
328
|
+
background: $successButtonActiveBg;
|
|
329
|
+
color: $successButtonTextActiveColor;
|
|
330
|
+
border-color: $successButtonActiveBorderColor;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
&.p-button-outlined {
|
|
334
|
+
background-color: transparent;
|
|
335
|
+
color: $successButtonBg;
|
|
336
|
+
border: $outlinedButtonBorder;
|
|
337
|
+
|
|
338
|
+
&:not(:disabled):hover {
|
|
339
|
+
background: rgba($successButtonBg, $textButtonHoverBgOpacity);
|
|
340
|
+
color: $successButtonBg;
|
|
341
|
+
border: $outlinedButtonBorder;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
&:not(:disabled):active {
|
|
345
|
+
background: rgba($successButtonBg, $textButtonActiveBgOpacity);
|
|
346
|
+
color: $successButtonBg;
|
|
347
|
+
border: $outlinedButtonBorder;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
&.p-button-text {
|
|
352
|
+
background-color: transparent;
|
|
353
|
+
color: $successButtonBg;
|
|
354
|
+
border-color: transparent;
|
|
355
|
+
|
|
356
|
+
&:not(:disabled):hover {
|
|
357
|
+
background: rgba($successButtonBg, $textButtonHoverBgOpacity);
|
|
358
|
+
border-color: transparent;
|
|
359
|
+
color: $successButtonBg;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
&:not(:disabled):active {
|
|
363
|
+
background: rgba($successButtonBg, $textButtonActiveBgOpacity);
|
|
364
|
+
border-color: transparent;
|
|
365
|
+
color: $successButtonBg;
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
.p-button.p-button-warning,
|
|
371
371
|
.p-buttonset.p-button-warning > .p-button,
|
|
372
372
|
.p-splitbutton.p-button-warning > .p-button {
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
373
|
+
color: $warningButtonTextColor;
|
|
374
|
+
background: $warningButtonBg;
|
|
375
|
+
border: $warningButtonBorder;
|
|
376
|
+
|
|
377
|
+
&:not(:disabled):hover {
|
|
378
|
+
background: $warningButtonHoverBg;
|
|
379
|
+
color: $warningButtonTextHoverColor;
|
|
380
|
+
border-color: $warningButtonHoverBorderColor;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
&:not(:disabled):focus {
|
|
384
|
+
box-shadow: $warningButtonFocusShadow;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
&:not(:disabled):active {
|
|
388
|
+
background: $warningButtonActiveBg;
|
|
389
|
+
color: $warningButtonTextActiveColor;
|
|
390
|
+
border-color: $warningButtonActiveBorderColor;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
&.p-button-outlined {
|
|
394
|
+
background-color: transparent;
|
|
395
|
+
color: $warningButtonBg;
|
|
396
|
+
border: $outlinedButtonBorder;
|
|
397
|
+
|
|
398
|
+
&:not(:disabled):hover {
|
|
399
|
+
background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
|
|
400
|
+
color: $warningButtonBg;
|
|
401
|
+
border: $outlinedButtonBorder;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
&:not(:disabled):active {
|
|
405
|
+
background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
|
|
406
|
+
color: $warningButtonBg;
|
|
407
|
+
border: $outlinedButtonBorder;
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
&.p-button-text {
|
|
412
|
+
background-color: transparent;
|
|
413
|
+
color: $warningButtonBg;
|
|
414
|
+
border-color: transparent;
|
|
415
|
+
|
|
416
|
+
&:not(:disabled):hover {
|
|
417
|
+
background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
|
|
418
|
+
border-color: transparent;
|
|
419
|
+
color: $warningButtonBg;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
&:not(:disabled):active {
|
|
423
|
+
background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
|
|
424
|
+
border-color: transparent;
|
|
425
|
+
color: $warningButtonBg;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
428
|
}
|
|
429
429
|
|
|
430
430
|
.p-button.p-button-help,
|
|
431
431
|
.p-buttonset.p-button-help > .p-button,
|
|
432
432
|
.p-splitbutton.p-button-help > .p-button {
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
433
|
+
color: $helpButtonTextColor;
|
|
434
|
+
background: $helpButtonBg;
|
|
435
|
+
border: $helpButtonBorder;
|
|
436
|
+
|
|
437
|
+
&:not(:disabled):hover {
|
|
438
|
+
background: $helpButtonHoverBg;
|
|
439
|
+
color: $helpButtonTextHoverColor;
|
|
440
|
+
border-color: $helpButtonHoverBorderColor;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
&:not(:disabled):focus {
|
|
444
|
+
box-shadow: $helpButtonFocusShadow;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
&:not(:disabled):active {
|
|
448
|
+
background: $helpButtonActiveBg;
|
|
449
|
+
color: $helpButtonTextActiveColor;
|
|
450
|
+
border-color: $helpButtonActiveBorderColor;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
&.p-button-outlined {
|
|
454
|
+
background-color: transparent;
|
|
455
|
+
color: $helpButtonBg;
|
|
456
|
+
border: $outlinedButtonBorder;
|
|
457
|
+
|
|
458
|
+
&:not(:disabled):hover {
|
|
459
|
+
background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
|
|
460
|
+
color: $helpButtonBg;
|
|
461
|
+
border: $outlinedButtonBorder;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
&:not(:disabled):active {
|
|
465
|
+
background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
|
|
466
|
+
color: $helpButtonBg;
|
|
467
|
+
border: $outlinedButtonBorder;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
&.p-button-text {
|
|
472
|
+
background-color: transparent;
|
|
473
|
+
color: $helpButtonBg;
|
|
474
|
+
border-color: transparent;
|
|
475
|
+
|
|
476
|
+
&:not(:disabled):hover {
|
|
477
|
+
background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
|
|
478
|
+
border-color: transparent;
|
|
479
|
+
color: $helpButtonBg;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
&:not(:disabled):active {
|
|
483
|
+
background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
|
|
484
|
+
border-color: transparent;
|
|
485
|
+
color: $helpButtonBg;
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
.p-button.p-button-danger,
|
|
491
491
|
.p-buttonset.p-button-danger > .p-button,
|
|
492
492
|
.p-splitbutton.p-button-danger > .p-button {
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
493
|
+
color: $dangerButtonTextColor;
|
|
494
|
+
background: $dangerButtonBg;
|
|
495
|
+
border: $dangerButtonBorder;
|
|
496
|
+
|
|
497
|
+
&:not(:disabled):hover {
|
|
498
|
+
background: $dangerButtonHoverBg;
|
|
499
|
+
color: $dangerButtonTextHoverColor;
|
|
500
|
+
border-color: $dangerButtonHoverBorderColor;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
&:not(:disabled):focus {
|
|
504
|
+
box-shadow: $dangerButtonFocusShadow;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
&:not(:disabled):active {
|
|
508
|
+
background: $dangerButtonActiveBg;
|
|
509
|
+
color: $dangerButtonTextActiveColor;
|
|
510
|
+
border-color: $dangerButtonActiveBorderColor;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
&.p-button-outlined {
|
|
514
|
+
background-color: transparent;
|
|
515
|
+
color: $dangerButtonBg;
|
|
516
|
+
border: $outlinedButtonBorder;
|
|
517
|
+
|
|
518
|
+
&:not(:disabled):hover {
|
|
519
|
+
background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
|
|
520
|
+
color: $dangerButtonBg;
|
|
521
|
+
border: $outlinedButtonBorder;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
&:not(:disabled):active {
|
|
525
|
+
background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
|
|
526
|
+
color: $dangerButtonBg;
|
|
527
|
+
border: $outlinedButtonBorder;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
&.p-button-text {
|
|
532
|
+
background-color: transparent;
|
|
533
|
+
color: $dangerButtonBg;
|
|
534
|
+
border-color: transparent;
|
|
535
|
+
|
|
536
|
+
&:not(:disabled):hover {
|
|
537
|
+
background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
|
|
538
|
+
border-color: transparent;
|
|
539
|
+
color: $dangerButtonBg;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
&:not(:disabled):active {
|
|
543
|
+
background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
|
|
544
|
+
border-color: transparent;
|
|
545
|
+
color: $dangerButtonBg;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
548
|
}
|
|
549
549
|
|
|
550
550
|
.p-button.p-button-link {
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
551
|
+
color: $linkButtonColor;
|
|
552
|
+
background: transparent;
|
|
553
|
+
border: transparent;
|
|
554
|
+
|
|
555
|
+
&:not(:disabled):hover {
|
|
556
|
+
background: transparent;
|
|
557
|
+
color: $linkButtonHoverColor;
|
|
558
|
+
border-color: transparent;
|
|
559
|
+
|
|
560
|
+
.p-button-label {
|
|
561
|
+
text-decoration: $linkButtonTextHoverDecoration;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
&:not(:disabled):focus {
|
|
566
|
+
background: transparent;
|
|
567
|
+
box-shadow: $linkButtonFocusShadow;
|
|
568
|
+
border-color: transparent;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
&:not(:disabled):active {
|
|
572
|
+
background: transparent;
|
|
573
|
+
color: $linkButtonColor;
|
|
574
|
+
border-color: transparent;
|
|
575
|
+
}
|
|
576
576
|
}
|