spiderly 0.0.2
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 +3 -0
- package/esm2022/lib/components/auth/auth.module.mjs +65 -0
- package/esm2022/lib/components/auth/login/login.component.mjs +60 -0
- package/esm2022/lib/components/auth/partials/auth.component.mjs +53 -0
- package/esm2022/lib/components/auth/partials/login-verification.component.mjs +39 -0
- package/esm2022/lib/components/auth/partials/registration-verification.component.mjs +37 -0
- package/esm2022/lib/components/auth/partials/verification-wrapper.component.mjs +74 -0
- package/esm2022/lib/components/auth/registration/registration.component.mjs +59 -0
- package/esm2022/lib/components/base-details/role-base-details.component.mjs +171 -0
- package/esm2022/lib/components/base-form/base-form copy.mjs +247 -0
- package/esm2022/lib/components/card-skeleton/card-skeleton.component.mjs +25 -0
- package/esm2022/lib/components/footer/footer.component.mjs +16 -0
- package/esm2022/lib/components/index-card/index-card.component.mjs +57 -0
- package/esm2022/lib/components/info-card/info-card.component.mjs +29 -0
- package/esm2022/lib/components/layout/layout-base.component.mjs +120 -0
- package/esm2022/lib/components/layout/sidebar/menuitem.component.mjs +161 -0
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.component.mjs +34 -0
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.service.mjs +26 -0
- package/esm2022/lib/components/layout/sidebar/sidebar.component.mjs +21 -0
- package/esm2022/lib/components/layout/topbar/topbar.component.mjs +115 -0
- package/esm2022/lib/components/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/components/required/required.component.mjs +12 -0
- package/esm2022/lib/components/spiderly-buttons/google-button/google-button.component.mjs +43 -0
- package/esm2022/lib/components/spiderly-buttons/return-button/return-button.component.mjs +37 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.mjs +20 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.mjs +68 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.mjs +22 -0
- package/esm2022/lib/components/spiderly-data-table/spiderly-data-table.component.mjs +502 -0
- package/esm2022/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.mjs +42 -0
- package/esm2022/lib/components/spiderly-form-control/spiderly-form-control.mjs +36 -0
- package/esm2022/lib/components/spiderly-panels/panel-body/panel-body.component.mjs +19 -0
- package/esm2022/lib/components/spiderly-panels/panel-footer/panel-footer.component.mjs +14 -0
- package/esm2022/lib/components/spiderly-panels/panel-header/panel-header.component.mjs +49 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.mjs +20 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.mjs +63 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-panels.module.mjs +49 -0
- package/esm2022/lib/controls/base-autocomplete-control.mjs +18 -0
- package/esm2022/lib/controls/base-control.mjs +62 -0
- package/esm2022/lib/controls/base-dropdown-control.mjs +37 -0
- package/esm2022/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.mjs +60 -0
- package/esm2022/lib/controls/spiderly-calendar/spiderly-calendar.component.mjs +39 -0
- package/esm2022/lib/controls/spiderly-checkbox/spiderly-checkbox.component.mjs +45 -0
- package/esm2022/lib/controls/spiderly-colorpick/spiderly-colorpick.component.mjs +40 -0
- package/esm2022/lib/controls/spiderly-controls.module.mjs +112 -0
- package/esm2022/lib/controls/spiderly-dropdown/spiderly-dropdown.component.mjs +40 -0
- package/esm2022/lib/controls/spiderly-editor/spiderly-editor.component.mjs +59 -0
- package/esm2022/lib/controls/spiderly-file/spiderly-file.component.mjs +106 -0
- package/esm2022/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.mjs +38 -0
- package/esm2022/lib/controls/spiderly-multiselect/spiderly-multiselect.component.mjs +34 -0
- package/esm2022/lib/controls/spiderly-number/spiderly-number.component.mjs +44 -0
- package/esm2022/lib/controls/spiderly-password/spiderly-password.component.mjs +37 -0
- package/esm2022/lib/controls/spiderly-textarea/spiderly-textarea.component.mjs +34 -0
- package/esm2022/lib/controls/spiderly-textbox/spiderly-textbox.component.mjs +45 -0
- package/esm2022/lib/entities/base-entity.mjs +18 -0
- package/esm2022/lib/entities/codebook.mjs +10 -0
- package/esm2022/lib/entities/init-company-auth-dialog-details.mjs +9 -0
- package/esm2022/lib/entities/init-top-bar-data.mjs +12 -0
- package/esm2022/lib/entities/is-authorized-for-save-event.mjs +9 -0
- package/esm2022/lib/entities/last-menu-icon-index-clicked.mjs +8 -0
- package/esm2022/lib/entities/lazy-load-selected-ids-result.mjs +11 -0
- package/esm2022/lib/entities/menuchangeevent.mjs +3 -0
- package/esm2022/lib/entities/mime-type.mjs +15 -0
- package/esm2022/lib/entities/namebook.mjs +9 -0
- package/esm2022/lib/entities/primeng-option.mjs +9 -0
- package/esm2022/lib/entities/security-entities.mjs +169 -0
- package/esm2022/lib/entities/simple-save-result.mjs +9 -0
- package/esm2022/lib/entities/spiderly-button.mjs +11 -0
- package/esm2022/lib/entities/table-filter-context.mjs +3 -0
- package/esm2022/lib/entities/table-filter-sort-meta.mjs +3 -0
- package/esm2022/lib/entities/table-filter.mjs +15 -0
- package/esm2022/lib/entities/table-response.mjs +3 -0
- package/esm2022/lib/enums/security-enums.mjs +26 -0
- package/esm2022/lib/enums/verification-type-codes.mjs +6 -0
- package/esm2022/lib/guards/auth.guard.mjs +40 -0
- package/esm2022/lib/guards/not-auth.guard.mjs +32 -0
- package/esm2022/lib/handlers/spiderly-error-handler.mjs +30 -0
- package/esm2022/lib/handlers/spiderly-transloco-fallback-strategy.mjs +24 -0
- package/esm2022/lib/interceptors/http-loading.interceptor.mjs +27 -0
- package/esm2022/lib/interceptors/json-parser.interceptor.mjs +47 -0
- package/esm2022/lib/interceptors/jwt.interceptor.mjs +27 -0
- package/esm2022/lib/interceptors/unauthorized.interceptor.mjs +64 -0
- package/esm2022/lib/modules/core.module.mjs +140 -0
- package/esm2022/lib/modules/primeng.module.mjs +278 -0
- package/esm2022/lib/modules/spiderly-transloco.module.mjs +44 -0
- package/esm2022/lib/services/api.service.security.mjs +86 -0
- package/esm2022/lib/services/app-initializer.mjs +6 -0
- package/esm2022/lib/services/app-layout-base.service.mjs +132 -0
- package/esm2022/lib/services/auth-base.service.mjs +220 -0
- package/esm2022/lib/services/base-form.service.mjs +124 -0
- package/esm2022/lib/services/config-base.service.mjs +33 -0
- package/esm2022/lib/services/helper-functions.mjs +229 -0
- package/esm2022/lib/services/spiderly-message.service.mjs +64 -0
- package/esm2022/lib/services/spiderly-transloco-loader.mjs +20 -0
- package/esm2022/lib/services/translate-labels-abstract.service.mjs +15 -0
- package/esm2022/lib/services/validator-abstract.service.mjs +51 -0
- package/esm2022/public-api.mjs +94 -0
- package/esm2022/spiderly.mjs +5 -0
- package/fesm2022/spiderly.mjs +4807 -0
- package/fesm2022/spiderly.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auth/auth.module.d.ts +17 -0
- package/lib/components/auth/login/login.component.d.ts +35 -0
- package/lib/components/auth/partials/auth.component.d.ts +21 -0
- package/lib/components/auth/partials/login-verification.component.d.ts +18 -0
- package/lib/components/auth/partials/registration-verification.component.d.ts +17 -0
- package/lib/components/auth/partials/verification-wrapper.component.d.ts +31 -0
- package/lib/components/auth/registration/registration.component.d.ts +34 -0
- package/lib/components/base-details/role-base-details.component.d.ts +50 -0
- package/lib/components/base-form/base-form copy.d.ts +54 -0
- package/lib/components/card-skeleton/card-skeleton.component.d.ts +12 -0
- package/lib/components/footer/footer.component.d.ts +9 -0
- package/lib/components/index-card/index-card.component.d.ts +22 -0
- package/lib/components/info-card/info-card.component.d.ts +11 -0
- package/lib/components/layout/layout-base.component.d.ts +37 -0
- package/lib/components/layout/sidebar/menuitem.component.d.ts +43 -0
- package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +23 -0
- package/lib/components/layout/sidebar/sidebar-menu.service.d.ts +12 -0
- package/lib/components/layout/sidebar/sidebar.component.d.ts +11 -0
- package/lib/components/layout/topbar/topbar.component.d.ts +45 -0
- package/lib/components/not-found/not-found.component.d.ts +9 -0
- package/lib/components/required/required.component.d.ts +6 -0
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +17 -0
- package/lib/components/spiderly-buttons/return-button/return-button.component.d.ts +10 -0
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +6 -0
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +27 -0
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +8 -0
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +157 -0
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +11 -0
- package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +37 -0
- package/lib/components/spiderly-panels/panel-body/panel-body.component.d.ts +9 -0
- package/lib/components/spiderly-panels/panel-footer/panel-footer.component.d.ts +8 -0
- package/lib/components/spiderly-panels/panel-header/panel-header.component.d.ts +29 -0
- package/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.d.ts +10 -0
- package/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.d.ts +25 -0
- package/lib/components/spiderly-panels/spiderly-panels.module.d.ts +13 -0
- package/lib/controls/base-autocomplete-control.d.ts +9 -0
- package/lib/controls/base-control.d.ts +23 -0
- package/lib/controls/base-dropdown-control.d.ts +18 -0
- package/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.d.ts +18 -0
- package/lib/controls/spiderly-calendar/spiderly-calendar.component.d.ts +13 -0
- package/lib/controls/spiderly-checkbox/spiderly-checkbox.component.d.ts +14 -0
- package/lib/controls/spiderly-colorpick/spiderly-colorpick.component.d.ts +11 -0
- package/lib/controls/spiderly-controls.module.d.ts +22 -0
- package/lib/controls/spiderly-dropdown/spiderly-dropdown.component.d.ts +14 -0
- package/lib/controls/spiderly-editor/spiderly-editor.component.d.ts +16 -0
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +36 -0
- package/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.d.ts +13 -0
- package/lib/controls/spiderly-multiselect/spiderly-multiselect.component.d.ts +11 -0
- package/lib/controls/spiderly-number/spiderly-number.component.d.ts +15 -0
- package/lib/controls/spiderly-password/spiderly-password.component.d.ts +12 -0
- package/lib/controls/spiderly-textarea/spiderly-textarea.component.d.ts +11 -0
- package/lib/controls/spiderly-textbox/spiderly-textbox.component.d.ts +15 -0
- package/lib/entities/base-entity.d.ts +14 -0
- package/lib/entities/codebook.d.ts +9 -0
- package/lib/entities/init-company-auth-dialog-details.d.ts +9 -0
- package/lib/entities/init-top-bar-data.d.ts +16 -0
- package/lib/entities/is-authorized-for-save-event.d.ts +9 -0
- package/lib/entities/last-menu-icon-index-clicked.d.ts +7 -0
- package/lib/entities/lazy-load-selected-ids-result.d.ts +9 -0
- package/lib/entities/menuchangeevent.d.ts +4 -0
- package/lib/entities/mime-type.d.ts +11 -0
- package/lib/entities/namebook.d.ts +9 -0
- package/lib/entities/primeng-option.d.ts +9 -0
- package/lib/entities/security-entities.d.ts +211 -0
- package/lib/entities/simple-save-result.d.ts +7 -0
- package/lib/entities/spiderly-button.d.ts +13 -0
- package/lib/entities/table-filter-context.d.ts +5 -0
- package/lib/entities/table-filter-sort-meta.d.ts +4 -0
- package/lib/entities/table-filter.d.ts +23 -0
- package/lib/entities/table-response.d.ts +4 -0
- package/lib/enums/security-enums.d.ts +22 -0
- package/lib/enums/verification-type-codes.d.ts +4 -0
- package/lib/guards/auth.guard.d.ts +15 -0
- package/lib/guards/not-auth.guard.d.ts +12 -0
- package/lib/handlers/spiderly-error-handler.d.ts +14 -0
- package/lib/handlers/spiderly-transloco-fallback-strategy.d.ts +13 -0
- package/lib/interceptors/http-loading.interceptor.d.ts +11 -0
- package/lib/interceptors/json-parser.interceptor.d.ts +11 -0
- package/lib/interceptors/jwt.interceptor.d.ts +11 -0
- package/lib/interceptors/unauthorized.interceptor.d.ts +16 -0
- package/lib/modules/core.module.d.ts +13 -0
- package/lib/modules/primeng.module.d.ts +42 -0
- package/lib/modules/spiderly-transloco.module.d.ts +9 -0
- package/lib/services/api.service.security.d.ts +35 -0
- package/lib/services/app-initializer.d.ts +4 -0
- package/lib/services/app-layout-base.service.d.ts +60 -0
- package/lib/services/auth-base.service.d.ts +55 -0
- package/lib/services/base-form.service.d.ts +27 -0
- package/lib/services/config-base.service.d.ts +24 -0
- package/lib/services/helper-functions.d.ts +37 -0
- package/lib/services/spiderly-message.service.d.ts +17 -0
- package/lib/services/spiderly-transloco-loader.d.ts +10 -0
- package/lib/services/translate-labels-abstract.service.d.ts +7 -0
- package/lib/services/validator-abstract.service.d.ts +13 -0
- package/package.json +60 -0
- package/public-api.d.ts +90 -0
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +34 -0
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +10 -0
- package/styles/styles/layout/_config.scss +42 -0
- package/styles/styles/layout/_content.scss +12 -0
- package/styles/styles/layout/_footer.scss +9 -0
- package/styles/styles/layout/_main.scss +28 -0
- package/styles/styles/layout/_menu.scss +135 -0
- package/styles/styles/layout/_mixins.scss +13 -0
- package/styles/styles/layout/_preloading.scss +47 -0
- package/styles/styles/layout/_responsive.scss +100 -0
- package/styles/styles/layout/_spiderly-controls.scss +12 -0
- package/styles/styles/layout/_topbar.scss +231 -0
- package/styles/styles/layout/_typography.scss +63 -0
- package/styles/styles/layout/_utils.scss +20 -0
- package/styles/styles/layout/_variables.scss +903 -0
- package/styles/styles/layout/layout.scss +13 -0
- package/styles/styles/shared.scss +519 -0
- package/styles/styles/styles.scss +6 -0
- package/styles/styles/theme/base/_colors.scss +18 -0
- package/styles/styles/theme/base/_common.scss +75 -0
- package/styles/styles/theme/base/_components.scss +106 -0
- package/styles/styles/theme/base/_mixins.scss +343 -0
- package/styles/styles/theme/base/components/button/_button.scss +564 -0
- package/styles/styles/theme/base/components/button/_speeddial.scss +96 -0
- package/styles/styles/theme/base/components/button/_splitbutton.scss +381 -0
- package/styles/styles/theme/base/components/data/_carousel.scss +37 -0
- package/styles/styles/theme/base/components/data/_datatable.scss +338 -0
- package/styles/styles/theme/base/components/data/_dataview.scss +55 -0
- package/styles/styles/theme/base/components/data/_filter.scss +138 -0
- package/styles/styles/theme/base/components/data/_orderlist.scss +103 -0
- package/styles/styles/theme/base/components/data/_organizationchart.scss +50 -0
- package/styles/styles/theme/base/components/data/_paginator.scss +92 -0
- package/styles/styles/theme/base/components/data/_picklist.scss +103 -0
- package/styles/styles/theme/base/components/data/_timeline.scss +81 -0
- package/styles/styles/theme/base/components/data/_tree.scss +149 -0
- package/styles/styles/theme/base/components/data/_treetable.scss +256 -0
- package/styles/styles/theme/base/components/data/_virtualscroller.scss +28 -0
- package/styles/styles/theme/base/components/file/_fileupload.scss +64 -0
- package/styles/styles/theme/base/components/input/_autocomplete.scss +118 -0
- package/styles/styles/theme/base/components/input/_calendar.scss +263 -0
- package/styles/styles/theme/base/components/input/_cascadeselect.scss +130 -0
- package/styles/styles/theme/base/components/input/_checkbox.scss +90 -0
- package/styles/styles/theme/base/components/input/_chips.scss +55 -0
- package/styles/styles/theme/base/components/input/_colorpicker.scss +26 -0
- package/styles/styles/theme/base/components/input/_dropdown.scss +152 -0
- package/styles/styles/theme/base/components/input/_editor.scss +122 -0
- package/styles/styles/theme/base/components/input/_inputgroup.scss +75 -0
- package/styles/styles/theme/base/components/input/_inputmask.scss +16 -0
- package/styles/styles/theme/base/components/input/_inputnumber.scss +28 -0
- package/styles/styles/theme/base/components/input/_inputswitch.scss +60 -0
- package/styles/styles/theme/base/components/input/_inputtext.scss +100 -0
- package/styles/styles/theme/base/components/input/_listbox.scss +82 -0
- package/styles/styles/theme/base/components/input/_multiselect.scss +173 -0
- package/styles/styles/theme/base/components/input/_password.scss +52 -0
- package/styles/styles/theme/base/components/input/_radiobutton.scss +78 -0
- package/styles/styles/theme/base/components/input/_rating.scss +55 -0
- package/styles/styles/theme/base/components/input/_selectbutton.scss +50 -0
- package/styles/styles/theme/base/components/input/_slider.scss +71 -0
- package/styles/styles/theme/base/components/input/_togglebutton.scss +48 -0
- package/styles/styles/theme/base/components/input/_treeselect.scss +139 -0
- package/styles/styles/theme/base/components/menu/_breadcrumb.scss +42 -0
- package/styles/styles/theme/base/components/menu/_contextmenu.scss +39 -0
- package/styles/styles/theme/base/components/menu/_dock.scss +95 -0
- package/styles/styles/theme/base/components/menu/_megamenu.scss +55 -0
- package/styles/styles/theme/base/components/menu/_menu.scss +37 -0
- package/styles/styles/theme/base/components/menu/_menubar.scss +141 -0
- package/styles/styles/theme/base/components/menu/_panelmenu.scss +153 -0
- package/styles/styles/theme/base/components/menu/_slidemenu.scss +59 -0
- package/styles/styles/theme/base/components/menu/_steps.scss +56 -0
- package/styles/styles/theme/base/components/menu/_tabmenu.scss +74 -0
- package/styles/styles/theme/base/components/menu/_tieredmenu.scss +43 -0
- package/styles/styles/theme/base/components/messages/_inlinemessage.scss +69 -0
- package/styles/styles/theme/base/components/messages/_message.scss +107 -0
- package/styles/styles/theme/base/components/messages/_toast.scss +103 -0
- package/styles/styles/theme/base/components/misc/_avatar.scss +30 -0
- package/styles/styles/theme/base/components/misc/_badge.scss +48 -0
- package/styles/styles/theme/base/components/misc/_blockui.scss +0 -0
- package/styles/styles/theme/base/components/misc/_chip.scss +42 -0
- package/styles/styles/theme/base/components/misc/_inplace.scss +17 -0
- package/styles/styles/theme/base/components/misc/_progressbar.scss +17 -0
- package/styles/styles/theme/base/components/misc/_scrolltop.scss +25 -0
- package/styles/styles/theme/base/components/misc/_skeleton.scss +8 -0
- package/styles/styles/theme/base/components/misc/_tag.scss +40 -0
- package/styles/styles/theme/base/components/misc/_terminal.scss +12 -0
- package/styles/styles/theme/base/components/multimedia/_galleria.scss +155 -0
- package/styles/styles/theme/base/components/multimedia/_image.scss +49 -0
- package/styles/styles/theme/base/components/overlay/_confirmpopup.scss +72 -0
- package/styles/styles/theme/base/components/overlay/_dialog.scss +73 -0
- package/styles/styles/theme/base/components/overlay/_overlaypanel.scss +64 -0
- package/styles/styles/theme/base/components/overlay/_sidebar.scss +27 -0
- package/styles/styles/theme/base/components/overlay/_tooltip.scss +33 -0
- package/styles/styles/theme/base/components/panel/_accordion.scss +119 -0
- package/styles/styles/theme/base/components/panel/_card.scss +30 -0
- package/styles/styles/theme/base/components/panel/_divider.scss +31 -0
- package/styles/styles/theme/base/components/panel/_fieldset.scss +47 -0
- package/styles/styles/theme/base/components/panel/_panel.scss +58 -0
- package/styles/styles/theme/base/components/panel/_scrollpanel.scss +6 -0
- package/styles/styles/theme/base/components/panel/_splitter.scss +19 -0
- package/styles/styles/theme/base/components/panel/_tabview.scss +82 -0
- package/styles/styles/theme/base/components/panel/_toolbar.scss +11 -0
- package/styles/styles/theme/saga/_extensions.scss +27 -0
- package/styles/styles/theme/saga/_variables.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/_extensions.scss +2 -0
- package/styles/styles/theme/saga/saga-blue/_fonts.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/_variables.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/theme.scss +4 -0
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
.p-galleria {
|
|
2
|
+
.p-galleria-close {
|
|
3
|
+
margin: $galleriaCloseIconMargin;
|
|
4
|
+
background: $galleriaCloseIconBg;
|
|
5
|
+
color: $galleriaCloseIconColor;
|
|
6
|
+
width: $galleriaCloseIconWidth;
|
|
7
|
+
height: $galleriaCloseIconHeight;
|
|
8
|
+
transition: $actionIconTransition;
|
|
9
|
+
border-radius: $galleriaCloseIconBorderRadius;
|
|
10
|
+
|
|
11
|
+
.p-galleria-close-icon {
|
|
12
|
+
font-size: $galleriaCloseIconFontSize;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.p-icon-wrapper {
|
|
16
|
+
.p-icon {
|
|
17
|
+
width: $galleriaCloseIconFontSize;
|
|
18
|
+
height: $galleriaCloseIconFontSize;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:hover {
|
|
23
|
+
background: $galleriaCloseIconHoverBg;
|
|
24
|
+
color: $galleriaCloseIconHoverColor;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.p-galleria-item-nav {
|
|
29
|
+
background: $galleriaItemNavigatorBg;
|
|
30
|
+
color: $galleriaItemNavigatorColor;
|
|
31
|
+
width: $galleriaItemNavigatorWidth;
|
|
32
|
+
height: $galleriaItemNavigatorHeight;
|
|
33
|
+
transition: $actionIconTransition;
|
|
34
|
+
border-radius: $galleriaItemNavigatorBorderRadius;
|
|
35
|
+
margin: $galleriaItemNavigatorMargin;
|
|
36
|
+
|
|
37
|
+
.p-galleria-item-prev-icon,
|
|
38
|
+
.p-galleria-item-next-icon {
|
|
39
|
+
font-size: $galleriaItemNavigatorFontSize;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.p-icon-wrapper {
|
|
43
|
+
.p-icon {
|
|
44
|
+
width: $galleriaCloseIconFontSize;
|
|
45
|
+
height: $galleriaCloseIconFontSize;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:not(.p-disabled) {
|
|
50
|
+
&:hover {
|
|
51
|
+
background: $galleriaItemNavigatorHoverBg;
|
|
52
|
+
color: $galleriaItemNavigatorHoverColor;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.p-galleria-caption {
|
|
58
|
+
background: $galleriaCaptionBg;
|
|
59
|
+
color: $galleriaCaptionTextColor;
|
|
60
|
+
padding: $galleriaCaptionPadding;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.p-galleria-indicators {
|
|
64
|
+
padding: $galleriaIndicatorsPadding;
|
|
65
|
+
|
|
66
|
+
.p-galleria-indicator {
|
|
67
|
+
button {
|
|
68
|
+
background-color: $galleriaIndicatorBg;
|
|
69
|
+
width: $galleriaIndicatorWidth;
|
|
70
|
+
height: $galleriaIndicatorHeight;
|
|
71
|
+
transition: $actionIconTransition;
|
|
72
|
+
border-radius: $galleriaIndicatorBorderRadius;
|
|
73
|
+
|
|
74
|
+
&:hover {
|
|
75
|
+
background: $galleriaIndicatorHoverBg;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&.p-highlight {
|
|
80
|
+
button {
|
|
81
|
+
background: var(--highlight-bg);
|
|
82
|
+
color: $highlightTextColor;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&.p-galleria-indicators-bottom,
|
|
89
|
+
&.p-galleria-indicators-top {
|
|
90
|
+
.p-galleria-indicator {
|
|
91
|
+
margin-right: $inlineSpacing;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&.p-galleria-indicators-left,
|
|
96
|
+
&.p-galleria-indicators-right {
|
|
97
|
+
.p-galleria-indicator {
|
|
98
|
+
margin-bottom: $inlineSpacing;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.p-galleria-indicator-onitem {
|
|
103
|
+
.p-galleria-indicators {
|
|
104
|
+
background: $galleriaIndicatorsBgOnItem;
|
|
105
|
+
|
|
106
|
+
.p-galleria-indicator {
|
|
107
|
+
button {
|
|
108
|
+
background: $galleriaIndicatorBgOnItem;
|
|
109
|
+
|
|
110
|
+
&:hover {
|
|
111
|
+
background: $galleriaIndicatorHoverBgOnItem;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&.p-highlight {
|
|
116
|
+
button {
|
|
117
|
+
background: var(--highlight-bg);
|
|
118
|
+
color: $highlightTextColor;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.p-galleria-thumbnail-container {
|
|
126
|
+
background: $galleriaThumbnailContainerBg;
|
|
127
|
+
padding: $galleriaThumbnailContainerPadding;
|
|
128
|
+
|
|
129
|
+
.p-galleria-thumbnail-prev,
|
|
130
|
+
.p-galleria-thumbnail-next {
|
|
131
|
+
margin: $inlineSpacing;
|
|
132
|
+
background-color: $galleriaThumbnailNavigatorBg;
|
|
133
|
+
color: $galleriaThumbnailNavigatorColor;
|
|
134
|
+
width: $galleriaThumbnailNavigatorWidth;
|
|
135
|
+
height: $galleriaThumbnailNavigatorHeight;
|
|
136
|
+
transition: $actionIconTransition;
|
|
137
|
+
border-radius: $galleriaThumbnailNavigatorBorderRadius;
|
|
138
|
+
|
|
139
|
+
&:hover {
|
|
140
|
+
background: $galleriaThumbnailNavigatorHoverBg;
|
|
141
|
+
color: $galleriaThumbnailNavigatorHoverColor;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.p-galleria-thumbnail-item-content {
|
|
146
|
+
&:focus-visible {
|
|
147
|
+
@include focused();
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.p-galleria-mask {
|
|
154
|
+
--maskbg: #{$galleriaMaskBg};
|
|
155
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.p-image-mask {
|
|
2
|
+
--maskbg: #{$imageMaskBg};
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-image-preview-indicator {
|
|
6
|
+
background-color: transparent;
|
|
7
|
+
color: $imagePreviewIndicatorColor;
|
|
8
|
+
transition: $actionIconTransition;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-image-preview-container {
|
|
12
|
+
&:hover {
|
|
13
|
+
> .p-image-preview-indicator {
|
|
14
|
+
background-color: $imagePreviewIndicatorBg;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-image-toolbar {
|
|
20
|
+
padding: $imagePreviewToolbarPadding;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-image-action.p-link {
|
|
24
|
+
color: $imagePreviewActionIconColor;
|
|
25
|
+
background-color: $imagePreviewActionIconBg;
|
|
26
|
+
width: $imagePreviewActionIconWidth;
|
|
27
|
+
height: $imagePreviewActionIconHeight;
|
|
28
|
+
border-radius: $imagePreviewActionIconBorderRadius;
|
|
29
|
+
transition: $actionIconTransition;
|
|
30
|
+
margin-right: $inlineSpacing;
|
|
31
|
+
|
|
32
|
+
&:last-child {
|
|
33
|
+
margin-right: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:hover {
|
|
37
|
+
color: $imagePreviewActionIconHoverColor;
|
|
38
|
+
background-color: $imagePreviewActionIconHoverBg;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
i {
|
|
42
|
+
font-size: $imagePreviewActionIconFontSize;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.p-icon {
|
|
46
|
+
width: $imagePreviewActionIconFontSize;
|
|
47
|
+
height: $imagePreviewActionIconFontSize;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.p-confirm-popup {
|
|
2
|
+
background: $overlayContentBg;
|
|
3
|
+
color: $panelContentTextColor;
|
|
4
|
+
border: $overlayContentBorder;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
box-shadow: $overlayContainerShadow;
|
|
7
|
+
|
|
8
|
+
.p-confirm-popup-content {
|
|
9
|
+
padding: $panelContentPadding;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-confirm-popup-footer {
|
|
13
|
+
text-align: right;
|
|
14
|
+
padding: $panelFooterPadding;
|
|
15
|
+
|
|
16
|
+
button {
|
|
17
|
+
margin: 0 $inlineSpacing 0 0;
|
|
18
|
+
width: auto;
|
|
19
|
+
|
|
20
|
+
&:last-child {
|
|
21
|
+
margin: 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:after {
|
|
27
|
+
border: solid transparent;
|
|
28
|
+
border-color: rgba($overlayContentBg, 0);
|
|
29
|
+
border-bottom-color: $overlayContentBg;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&:before {
|
|
33
|
+
border: solid transparent;
|
|
34
|
+
|
|
35
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
36
|
+
border-color: rgba($overlayContentBg, 0);
|
|
37
|
+
border-bottom-color: $overlayContentBg;
|
|
38
|
+
}
|
|
39
|
+
@else {
|
|
40
|
+
border-color: rgba(nth($overlayContentBorder, 3), 0);
|
|
41
|
+
border-bottom-color: nth($overlayContentBorder, 3);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.p-confirm-popup-flipped {
|
|
46
|
+
&:after {
|
|
47
|
+
border-top-color: $overlayContentBg;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:before {
|
|
51
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
52
|
+
border-top-color: $overlayContentBg;
|
|
53
|
+
}
|
|
54
|
+
@else {
|
|
55
|
+
border-top-color: nth($overlayContentBorder, 3);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.p-confirm-popup-icon {
|
|
61
|
+
font-size: $primeIconFontSize * 1.5;
|
|
62
|
+
|
|
63
|
+
&.p-icon {
|
|
64
|
+
width: $primeIconFontSize * 1.5;
|
|
65
|
+
height: $primeIconFontSize * 1.5;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.p-confirm-popup-message {
|
|
70
|
+
margin-left: $inlineSpacing * 2;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
.p-dialog {
|
|
2
|
+
border-radius: $borderRadius;
|
|
3
|
+
box-shadow: $overlayContainerShadow;
|
|
4
|
+
border: $overlayContentBorder;
|
|
5
|
+
|
|
6
|
+
.p-dialog-header {
|
|
7
|
+
border-bottom: $dialogHeaderBorder;
|
|
8
|
+
background: $dialogHeaderBg;
|
|
9
|
+
color: $dialogHeaderTextColor;
|
|
10
|
+
padding: $dialogHeaderPadding;
|
|
11
|
+
border-top-right-radius: $borderRadius;
|
|
12
|
+
border-top-left-radius: $borderRadius;
|
|
13
|
+
|
|
14
|
+
.p-dialog-title {
|
|
15
|
+
font-weight: $dialogHeaderFontWeight;
|
|
16
|
+
font-size: $dialogHeaderFontSize;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-dialog-header-icon {
|
|
20
|
+
@include action-icon();
|
|
21
|
+
margin-right: $inlineSpacing;
|
|
22
|
+
|
|
23
|
+
&:last-child {
|
|
24
|
+
margin-right: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.p-dialog-content {
|
|
30
|
+
background: $overlayContentBg;
|
|
31
|
+
color: $panelContentTextColor;
|
|
32
|
+
padding: $dialogContentPadding;
|
|
33
|
+
|
|
34
|
+
&:last-of-type {
|
|
35
|
+
border-bottom-right-radius: $borderRadius;
|
|
36
|
+
border-bottom-left-radius: $borderRadius;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.p-dialog-footer {
|
|
41
|
+
border-top: $dialogFooterBorder;
|
|
42
|
+
background: $overlayContentBg;
|
|
43
|
+
color: $panelFooterTextColor;
|
|
44
|
+
padding: $dialogFooterPadding;
|
|
45
|
+
display: flex;
|
|
46
|
+
gap: $inlineSpacing;
|
|
47
|
+
justify-content: right;
|
|
48
|
+
flex-wrap: wrap;
|
|
49
|
+
border-bottom-right-radius: $borderRadius;
|
|
50
|
+
border-bottom-left-radius: $borderRadius;
|
|
51
|
+
|
|
52
|
+
button {
|
|
53
|
+
margin: 0 0 0 0;
|
|
54
|
+
width: auto;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&.p-confirm-dialog {
|
|
59
|
+
.p-confirm-dialog-icon {
|
|
60
|
+
font-size: $primeIconFontSize * 2;
|
|
61
|
+
|
|
62
|
+
&.p-icon {
|
|
63
|
+
width: $primeIconFontSize * 2;
|
|
64
|
+
height: $primeIconFontSize * 2;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.p-confirm-dialog-message {
|
|
69
|
+
margin-left: $inlineSpacing * 2;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-overlaypanel {
|
|
4
|
+
background: $overlayContentBg;
|
|
5
|
+
color: $panelContentTextColor;
|
|
6
|
+
border: $overlayContentBorder;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
box-shadow: $overlayContainerShadow;
|
|
9
|
+
|
|
10
|
+
.p-overlaypanel-content {
|
|
11
|
+
padding: $panelContentPadding;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.p-overlaypanel-close {
|
|
15
|
+
background: var(--primary-color);
|
|
16
|
+
color: $buttonTextColor;
|
|
17
|
+
width: $actionIconWidth;
|
|
18
|
+
height: $actionIconHeight;
|
|
19
|
+
transition: $actionIconTransition;
|
|
20
|
+
border-radius: $actionIconBorderRadius;
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: math.div(-1 * $actionIconWidth, 2);
|
|
23
|
+
right: math.div(-1 * $actionIconWidth, 2);
|
|
24
|
+
|
|
25
|
+
&:enabled:hover {
|
|
26
|
+
background: var(--primary-dark-color);
|
|
27
|
+
color: $buttonTextHoverColor;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:after {
|
|
32
|
+
border: solid transparent;
|
|
33
|
+
border-color: rgba($overlayContentBg, 0);
|
|
34
|
+
border-bottom-color: $overlayContentBg;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:before {
|
|
38
|
+
border: solid transparent;
|
|
39
|
+
|
|
40
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
41
|
+
border-color: rgba($overlayContentBg, 0);
|
|
42
|
+
border-bottom-color: scale-color($overlayContentBg, $lightness: -5%);
|
|
43
|
+
}
|
|
44
|
+
@else {
|
|
45
|
+
border-color: rgba(nth($overlayContentBorder, 3), 0);
|
|
46
|
+
border-bottom-color: scale-color(nth($overlayContentBorder, 3), $lightness: -5%);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.p-overlaypanel-flipped {
|
|
51
|
+
&:after {
|
|
52
|
+
border-top-color: $overlayContentBg;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&:before {
|
|
56
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
57
|
+
border-top-color: $overlayContentBg;
|
|
58
|
+
}
|
|
59
|
+
@else {
|
|
60
|
+
border-top-color: nth($overlayContentBorder, 3);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.p-sidebar {
|
|
2
|
+
background: $overlayContentBg;
|
|
3
|
+
color: $panelContentTextColor;
|
|
4
|
+
border: $overlayContentBorder;
|
|
5
|
+
box-shadow: $overlayContainerShadow;
|
|
6
|
+
|
|
7
|
+
.p-sidebar-header {
|
|
8
|
+
padding: $panelHeaderPadding;
|
|
9
|
+
|
|
10
|
+
.p-sidebar-close,
|
|
11
|
+
.p-sidebar-icon {
|
|
12
|
+
@include action-icon();
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& + .p-sidebar-content {
|
|
16
|
+
padding-top: 0;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-sidebar-content {
|
|
21
|
+
padding: $panelContentPadding;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-sidebar-footer {
|
|
25
|
+
padding: $panelHeaderPadding;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.p-tooltip {
|
|
2
|
+
.p-tooltip-text {
|
|
3
|
+
background: $tooltipBg;
|
|
4
|
+
color: $tooltipTextColor;
|
|
5
|
+
padding: $tooltipPadding;
|
|
6
|
+
box-shadow: $inputOverlayShadow;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&.p-tooltip-right {
|
|
11
|
+
.p-tooltip-arrow {
|
|
12
|
+
border-right-color: $tooltipBg;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.p-tooltip-left {
|
|
17
|
+
.p-tooltip-arrow {
|
|
18
|
+
border-left-color: $tooltipBg;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.p-tooltip-top {
|
|
23
|
+
.p-tooltip-arrow {
|
|
24
|
+
border-top-color: $tooltipBg;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-tooltip-bottom {
|
|
29
|
+
.p-tooltip-arrow {
|
|
30
|
+
border-bottom-color: $tooltipBg;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
.p-accordion {
|
|
2
|
+
.p-accordion-header {
|
|
3
|
+
.p-accordion-header-link {
|
|
4
|
+
padding: $accordionHeaderPadding;
|
|
5
|
+
border: $accordionHeaderBorder;
|
|
6
|
+
color: $accordionHeaderTextColor;
|
|
7
|
+
background: $accordionHeaderBg;
|
|
8
|
+
font-weight: $accordionHeaderFontWeight;
|
|
9
|
+
border-radius: $borderRadius;
|
|
10
|
+
transition: $listItemTransition;
|
|
11
|
+
|
|
12
|
+
.p-accordion-toggle-icon {
|
|
13
|
+
margin-right: $inlineSpacing;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&:not(.p-disabled) {
|
|
18
|
+
.p-accordion-header-link {
|
|
19
|
+
&:focus-visible {
|
|
20
|
+
@include focused-inset();
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
26
|
+
.p-accordion-header-link {
|
|
27
|
+
background: $accordionHeaderHoverBg;
|
|
28
|
+
border-color: $accordionHeaderHoverBorderColor;
|
|
29
|
+
color: $accordionHeaderTextHoverColor;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:not(.p-disabled).p-highlight {
|
|
34
|
+
.p-accordion-header-link {
|
|
35
|
+
background: $accordionHeaderActiveBg;
|
|
36
|
+
border-color: $accordionHeaderActiveBorderColor;
|
|
37
|
+
color: $accordionHeaderTextActiveColor;
|
|
38
|
+
border-bottom-right-radius: 0;
|
|
39
|
+
border-bottom-left-radius: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&:hover {
|
|
43
|
+
.p-accordion-header-link {
|
|
44
|
+
border-color: $accordionHeaderActiveHoverBorderColor;
|
|
45
|
+
background: $accordionHeaderActiveHoverBg;
|
|
46
|
+
color: $accordionHeaderTextActiveHoverColor;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.p-accordion-content {
|
|
53
|
+
padding: $accordionContentPadding;
|
|
54
|
+
border: $accordionContentBorder;
|
|
55
|
+
background: $accordionContentBg;
|
|
56
|
+
color: $accordionContentTextColor;
|
|
57
|
+
border-top: 0;
|
|
58
|
+
border-top-right-radius: 0;
|
|
59
|
+
border-top-left-radius: 0;
|
|
60
|
+
border-bottom-right-radius: $borderRadius;
|
|
61
|
+
border-bottom-left-radius: $borderRadius;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
p-accordiontab {
|
|
65
|
+
.p-accordion-tab {
|
|
66
|
+
margin-bottom: $accordionSpacing;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@if $accordionSpacing == 0 {
|
|
70
|
+
.p-accordion-header {
|
|
71
|
+
.p-accordion-header-link {
|
|
72
|
+
border-radius: 0;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.p-accordion-content {
|
|
77
|
+
border-radius: 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:not(:first-child) {
|
|
81
|
+
.p-accordion-header {
|
|
82
|
+
.p-accordion-header-link {
|
|
83
|
+
border-top: 0 none;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:not(.p-highlight):not(.p-disabled):hover,
|
|
87
|
+
&:not(.p-disabled).p-highlight:hover {
|
|
88
|
+
.p-accordion-header-link {
|
|
89
|
+
border-top: 0 none;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&:first-child {
|
|
96
|
+
.p-accordion-header {
|
|
97
|
+
.p-accordion-header-link {
|
|
98
|
+
border-top-right-radius: $borderRadius;
|
|
99
|
+
border-top-left-radius: $borderRadius;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&:last-child {
|
|
105
|
+
.p-accordion-header:not(.p-highlight) {
|
|
106
|
+
.p-accordion-header-link {
|
|
107
|
+
border-bottom-right-radius: $borderRadius;
|
|
108
|
+
border-bottom-left-radius: $borderRadius;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.p-accordion-content {
|
|
113
|
+
border-bottom-right-radius: $borderRadius;
|
|
114
|
+
border-bottom-left-radius: $borderRadius;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.p-card {
|
|
2
|
+
background: $panelContentBg;
|
|
3
|
+
color: $panelContentTextColor;
|
|
4
|
+
box-shadow: $cardShadow;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
|
|
7
|
+
.p-card-body {
|
|
8
|
+
padding: $cardBodyPadding;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-card-title {
|
|
12
|
+
font-size: $cardTitleFontSize;
|
|
13
|
+
font-weight: $cardTitleFontWeight;
|
|
14
|
+
margin-bottom: $inlineSpacing;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-card-subtitle {
|
|
18
|
+
font-weight: $cardSubTitleFontWeight;
|
|
19
|
+
margin-bottom: $inlineSpacing;
|
|
20
|
+
color: $cardSubTitleColor;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-card-content {
|
|
24
|
+
padding: $cardContentPadding;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-card-footer {
|
|
28
|
+
padding: $cardFooterPadding;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.p-divider {
|
|
2
|
+
.p-divider-content {
|
|
3
|
+
background-color: $panelContentBg;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
&.p-divider-horizontal {
|
|
7
|
+
margin: $dividerHorizontalMargin;
|
|
8
|
+
padding: $dividerHorizontalPadding;
|
|
9
|
+
|
|
10
|
+
&:before {
|
|
11
|
+
border-top: $dividerSize $dividerColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.p-divider-content {
|
|
15
|
+
padding: 0 $inlineSpacing;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.p-divider-vertical {
|
|
20
|
+
margin: $dividerVerticalMargin;
|
|
21
|
+
padding: $dividerVerticalPadding;
|
|
22
|
+
|
|
23
|
+
&:before {
|
|
24
|
+
border-left: $dividerSize $dividerColor;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-divider-content {
|
|
28
|
+
padding: $inlineSpacing 0;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.p-fieldset {
|
|
2
|
+
border: $panelContentBorder;
|
|
3
|
+
background: $panelContentBg;
|
|
4
|
+
color: $panelContentTextColor;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
|
|
7
|
+
.p-fieldset-legend {
|
|
8
|
+
padding: $panelHeaderPadding;
|
|
9
|
+
border: $panelHeaderBorder;
|
|
10
|
+
color: $panelHeaderTextColor;
|
|
11
|
+
background: $panelHeaderBg;
|
|
12
|
+
font-weight: $panelHeaderFontWeight;
|
|
13
|
+
border-radius: $borderRadius;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.p-fieldset-toggleable {
|
|
17
|
+
.p-fieldset-legend {
|
|
18
|
+
padding: 0;
|
|
19
|
+
transition: $actionIconTransition;
|
|
20
|
+
|
|
21
|
+
a {
|
|
22
|
+
padding: $panelHeaderPadding;
|
|
23
|
+
color: $panelHeaderTextColor;
|
|
24
|
+
border-radius: $borderRadius;
|
|
25
|
+
transition: $listItemTransition;
|
|
26
|
+
|
|
27
|
+
.p-fieldset-toggler {
|
|
28
|
+
margin-right: $inlineSpacing;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:focus-visible {
|
|
32
|
+
@include focused();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:hover {
|
|
37
|
+
background: $panelHeaderHoverBg;
|
|
38
|
+
border-color: $panelHeaderHoverBorderColor;
|
|
39
|
+
color: $panelHeaderTextHoverColor;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.p-fieldset-content {
|
|
45
|
+
padding: $panelContentPadding;
|
|
46
|
+
}
|
|
47
|
+
}
|