From a40bb5d49d048daffd74d9059d6c3527a9aad494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Fri, 23 Feb 2024 10:55:13 +0300 Subject: [PATCH] buttongroup added --- src/app/components/button/button.css | 12 +- src/app/components/buttongroup/buttongroup.ts | 24 + .../components/buttongroup/ng-package.json | 6 + src/app/components/buttongroup/public_api.ts | 1 + .../showcase/doc/button/buttondoc.module.ts | 8 +- src/app/showcase/doc/button/buttongroupdoc.ts | 44 + src/app/showcase/pages/button/buttondemo.scss | 4 +- src/app/showcase/pages/button/buttondemo.ts | 9 +- .../components/themes/arya-blue/theme.css | 654 ++---- .../components/themes/arya-green/theme.css | 654 ++---- .../components/themes/arya-orange/theme.css | 654 ++---- .../components/themes/arya-purple/theme.css | 654 ++---- .../themes/bootstrap4-dark-blue/theme.css | 655 ++---- .../themes/bootstrap4-dark-purple/theme.css | 655 ++---- .../themes/bootstrap4-light-blue/theme.css | 655 ++---- .../themes/bootstrap4-light-purple/theme.css | 655 ++---- .../components/themes/fluent-light/theme.css | 692 ++---- .../themes/lara-dark-blue/theme.css | 672 ++---- .../themes/lara-dark-indigo/theme.css | 672 ++---- .../themes/lara-dark-purple/theme.css | 672 ++---- .../themes/lara-dark-teal/theme.css | 672 ++---- .../themes/lara-light-blue/theme.css | 685 ++---- .../themes/lara-light-indigo/theme.css | 685 ++---- .../themes/lara-light-purple/theme.css | 685 ++---- .../themes/lara-light-teal/theme.css | 685 ++---- .../components/themes/luna-amber/theme.css | 681 ++---- .../components/themes/luna-blue/theme.css | 681 ++---- .../components/themes/luna-green/theme.css | 681 ++---- .../components/themes/luna-pink/theme.css | 681 ++---- .../themes/md-dark-deeppurple/theme.css | 1133 ++++------ .../themes/md-dark-indigo/theme.css | 1133 ++++------ .../themes/md-light-deeppurple/theme.css | 855 +++---- .../themes/md-light-indigo/theme.css | 855 +++---- .../themes/mdc-dark-deeppurple/theme.css | 1133 ++++------ .../themes/mdc-dark-indigo/theme.css | 1133 ++++------ .../themes/mdc-light-deeppurple/theme.css | 855 +++---- .../themes/mdc-light-indigo/theme.css | 855 +++---- src/assets/components/themes/mira/theme.css | 699 ++---- src/assets/components/themes/nano/theme.css | 652 ++---- .../components/themes/nova-accent/theme.css | 653 ++---- .../components/themes/nova-alt/theme.css | 656 ++---- src/assets/components/themes/nova/theme.css | 656 ++---- src/assets/components/themes/rhea/theme.css | 653 ++---- .../components/themes/saga-blue/theme.css | 654 ++---- .../components/themes/saga-green/theme.css | 654 ++---- .../components/themes/saga-orange/theme.css | 654 ++---- .../components/themes/saga-purple/theme.css | 654 ++---- .../components/themes/soho-dark/theme.css | 719 +++--- .../components/themes/soho-light/theme.css | 669 ++---- .../themes/tailwind-light/theme.css | 727 +++--- .../components/themes/vela-blue/theme.css | 654 ++---- .../components/themes/vela-green/theme.css | 654 ++---- .../components/themes/vela-orange/theme.css | 654 ++---- .../components/themes/vela-purple/theme.css | 654 ++---- .../components/themes/viva-dark/theme.css | 685 ++---- .../components/themes/viva-light/theme.css | 685 ++---- src/assets/showcase/styles/layout/layout.css | 2001 +++++++++++++++++ 57 files changed, 14342 insertions(+), 22485 deletions(-) create mode 100755 src/app/components/buttongroup/buttongroup.ts create mode 100644 src/app/components/buttongroup/ng-package.json create mode 100644 src/app/components/buttongroup/public_api.ts create mode 100644 src/app/showcase/doc/button/buttongroupdoc.ts create mode 100644 src/assets/showcase/styles/layout/layout.css diff --git a/src/app/components/button/button.css b/src/app/components/button/button.css index 7c2ca251cb1..b055e562d97 100755 --- a/src/app/components/button/button.css +++ b/src/app/components/button/button.css @@ -43,29 +43,29 @@ order: 2; } - .p-buttonset .p-button { + .p-button-group .p-button { margin: 0; } - .p-buttonset .p-button:not(:last-child) { + .p-button-group .p-button:not(:last-child) { border-right: 0 none; } - .p-buttonset .p-button:not(:first-of-type):not(:last-of-type) { + .p-button-group .p-button:not(:first-of-type):not(:last-of-type) { border-radius: 0; } - .p-buttonset .p-button:first-of-type { + .p-button-group .p-button:first-of-type { border-top-right-radius: 0; border-bottom-right-radius: 0; } - .p-buttonset .p-button:last-of-type { + .p-button-group .p-button:last-of-type { border-top-left-radius: 0; border-bottom-left-radius: 0; } - .p-buttonset .p-button:focus { + .p-button-group .p-button:focus { position: relative; z-index: 1; } diff --git a/src/app/components/buttongroup/buttongroup.ts b/src/app/components/buttongroup/buttongroup.ts new file mode 100755 index 00000000000..0aec18b52b3 --- /dev/null +++ b/src/app/components/buttongroup/buttongroup.ts @@ -0,0 +1,24 @@ +import { CommonModule } from '@angular/common'; +import { ChangeDetectionStrategy, Component, NgModule, ViewEncapsulation } from '@angular/core'; + +@Component({ + selector: 'p-buttonGroup', + template: ` + + + + `, + changeDetection: ChangeDetectionStrategy.OnPush, + encapsulation: ViewEncapsulation.None, + host: { + class: 'p-element' + } +}) +export class ButtonGroup {} + +@NgModule({ + imports: [CommonModule], + exports: [ButtonGroup], + declarations: [ButtonGroup] +}) +export class ButtonGroupModule {} diff --git a/src/app/components/buttongroup/ng-package.json b/src/app/components/buttongroup/ng-package.json new file mode 100644 index 00000000000..ab5467eb7e4 --- /dev/null +++ b/src/app/components/buttongroup/ng-package.json @@ -0,0 +1,6 @@ +{ + "$schema": "ng-packagr/ng-package.schema.json", + "lib": { + "entryFile": "public_api.ts" + } + } \ No newline at end of file diff --git a/src/app/components/buttongroup/public_api.ts b/src/app/components/buttongroup/public_api.ts new file mode 100644 index 00000000000..68b8e614797 --- /dev/null +++ b/src/app/components/buttongroup/public_api.ts @@ -0,0 +1 @@ +export * from './buttongroup'; diff --git a/src/app/showcase/doc/button/buttondoc.module.ts b/src/app/showcase/doc/button/buttondoc.module.ts index 1d53415caf1..2b868546388 100644 --- a/src/app/showcase/doc/button/buttondoc.module.ts +++ b/src/app/showcase/doc/button/buttondoc.module.ts @@ -2,6 +2,7 @@ import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { ButtonModule } from 'primeng/button'; +import { ButtonGroupModule } from 'primeng/buttongroup'; import { RippleModule } from 'primeng/ripple'; import { AppDocModule } from '../../layout/doc/app.doc.module'; import { AppCodeModule } from '../../layout/doc/app.code.component'; @@ -25,9 +26,11 @@ import { SizesDoc } from './sizesdoc'; import { StyleDoc } from './styledoc'; import { TemplateDoc } from './templatedoc'; import { TextDoc } from './textdoc'; +import { ButtonGroupDoc } from './buttongroupdoc'; + @NgModule({ - imports: [CommonModule, AppCodeModule, AppDocModule, ButtonModule, RippleModule, RouterModule], + imports: [CommonModule, AppCodeModule, AppDocModule, ButtonModule, ButtonGroupModule, RippleModule, RouterModule], exports: [AppDocModule], declarations: [ ImportDoc, @@ -44,12 +47,13 @@ import { TextDoc } from './textdoc'; OutlinedDoc, IconOnlyDoc, BadgeDoc, + ButtonGroupDoc, ButtonsetDoc, SizesDoc, TemplateDoc, StyleDoc, AccessibilityDoc, - DirectiveDoc + DirectiveDoc, ] }) export class ButtonDocModule {} diff --git a/src/app/showcase/doc/button/buttongroupdoc.ts b/src/app/showcase/doc/button/buttongroupdoc.ts new file mode 100644 index 00000000000..11d69f19fb9 --- /dev/null +++ b/src/app/showcase/doc/button/buttongroupdoc.ts @@ -0,0 +1,44 @@ +import { Component } from '@angular/core'; +import { Code } from '../../domain/code'; + +@Component({ + selector: 'button-group-demo', + template: ` + +

Multiple buttons are grouped when wrapped inside an element with ButtonGroup component.

+
+
+ + + + + +
+ + ` +}) +export class ButtonGroupDoc { + code: Code = { + basic: ` + + + +`, + + html: ` +
+ + + +
`, + + typescript: ` +import { Component } from '@angular/core'; + +@Component({ + selector: 'button-group-demo', + templateUrl: './button-group-demo.html' +}) +export class ButtonGroupDemo { }` + }; +} diff --git a/src/app/showcase/pages/button/buttondemo.scss b/src/app/showcase/pages/button/buttondemo.scss index e982f2f08b5..92f47bbcd97 100644 --- a/src/app/showcase/pages/button/buttondemo.scss +++ b/src/app/showcase/pages/button/buttondemo.scss @@ -2,7 +2,7 @@ margin-right: .5rem; } -:host ::ng-deep .p-buttonset { +:host ::ng-deep .p-button-group { .p-button { margin-right: 0; } @@ -29,7 +29,7 @@ } } - .p-buttonset { + .p-button-group { .p-button { margin-bottom: 0; } diff --git a/src/app/showcase/pages/button/buttondemo.ts b/src/app/showcase/pages/button/buttondemo.ts index 61f7d2fb861..047c2bfe272 100755 --- a/src/app/showcase/pages/button/buttondemo.ts +++ b/src/app/showcase/pages/button/buttondemo.ts @@ -2,7 +2,6 @@ import { Component } from '@angular/core'; import { AccessibilityDoc } from '../../doc/button/accessibilitydoc'; import { BadgeDoc } from '../../doc/button/badgedoc'; import { BasicDoc } from '../../doc/button/basicdoc'; -import { ButtonsetDoc } from '../../doc/button/buttonsetdoc'; import { DirectiveDoc } from '../../doc/button/directivedoc'; import { DisabledDoc } from '../../doc/button/disableddoc'; import { IconsDoc } from '../../doc/button/iconsdoc'; @@ -19,7 +18,7 @@ import { SizesDoc } from '../../doc/button/sizesdoc'; import { StyleDoc } from '../../doc/button/styledoc'; import { TemplateDoc } from '../../doc/button/templatedoc'; import { TextDoc } from '../../doc/button/textdoc'; - +import { ButtonGroupDoc } from '../../doc/button/buttongroupdoc'; @Component({ templateUrl: './buttondemo.html', styleUrls: ['./buttondemo.scss'] @@ -102,9 +101,9 @@ export class ButtonDemo { component: BadgeDoc }, { - id: 'buttonset', - label: 'Button Set', - component: ButtonsetDoc + id: 'buttongroup', + label: 'Button Group', + component: ButtonGroupDoc }, { id: 'sizes', diff --git a/src/assets/components/themes/arya-blue/theme.css b/src/assets/components/themes/arya-blue/theme.css index 826904c446f..cf5255846bf 100644 --- a/src/assets/components/themes/arya-blue/theme.css +++ b/src/assets/components/themes/arya-blue/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; border-color: #64B5F6; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #64B5F6; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #383838; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #2396f2; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #2396f2; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #64B5F6; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1e1e1e; border: 1px solid #383838; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #121212; border: 1px solid #383838; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #383838; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #383838; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #43a5f4; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #383838; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #383838; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #93cbf9; border-color: #64B5F6; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #121212; border: 1px solid #383838; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #383838; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #383838; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1e1e1e; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #2396f2; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #383838; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #2396f2; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #383838; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #121212; border: 1px solid #383838; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #383838; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #212529; background: #64B5F6; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #64B5F6; background: transparent; @@ -2526,7 +2418,6 @@ color: #64B5F6; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #121212; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -2901,7 +2775,6 @@ background: rgba(100, 181, 246, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -3047,12 +2920,12 @@ background: #64B5F6; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-column-filter-overlay { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #383838; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #64B5F6; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #383838; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #383838; background: #1e1e1e; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #64B5F6; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #383838; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #383838; background: #1e1e1e; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #383838; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #383838; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-splitter { border: 1px solid #383838; background: #1e1e1e; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #383838; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1e1e1e; border: 1px solid #383838; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #383838; } - .p-sidebar { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #383838; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #383838; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #43a5f4; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #2396f2; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid #383838; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1e1e1e; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1e1e1e; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #383838; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #93cbf9; } - .p-tieredmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #383838; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #64B5F6; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #383838; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #64B5F6; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #64B5F6; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #64B5F6; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #64B5F6; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #64B5F6; } diff --git a/src/assets/components/themes/arya-green/theme.css b/src/assets/components/themes/arya-green/theme.css index e03fffa3598..6ccea791777 100644 --- a/src/assets/components/themes/arya-green/theme.css +++ b/src/assets/components/themes/arya-green/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; border-color: #81C784; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #81C784; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #383838; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #54b358; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #54b358; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #81C784; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1e1e1e; border: 1px solid #383838; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #121212; border: 1px solid #383838; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #383838; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #383838; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #6abd6e; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #383838; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #383838; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #a7d8a9; border-color: #81C784; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #121212; border: 1px solid #383838; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #383838; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #383838; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1e1e1e; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #54b358; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #383838; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #54b358; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #383838; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #121212; border: 1px solid #383838; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #383838; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #212529; background: #81C784; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #81C784; background: transparent; @@ -2526,7 +2418,6 @@ color: #81C784; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #121212; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -2901,7 +2775,6 @@ background: rgba(129, 199, 132, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -3047,12 +2920,12 @@ background: #81C784; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-column-filter-overlay { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #383838; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #81C784; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #383838; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #383838; background: #1e1e1e; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #81C784; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #383838; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #383838; background: #1e1e1e; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #383838; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #383838; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-splitter { border: 1px solid #383838; background: #1e1e1e; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #383838; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1e1e1e; border: 1px solid #383838; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #383838; } - .p-sidebar { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #383838; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #383838; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #6abd6e; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #54b358; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid #383838; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1e1e1e; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1e1e1e; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #383838; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #a7d8a9; } - .p-tieredmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #383838; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #81C784; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #383838; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #81C784; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #81C784; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #81C784; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #81C784; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #81C784; } diff --git a/src/assets/components/themes/arya-orange/theme.css b/src/assets/components/themes/arya-orange/theme.css index 8cd8c32ab51..87842c6f9c3 100644 --- a/src/assets/components/themes/arya-orange/theme.css +++ b/src/assets/components/themes/arya-orange/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; border-color: #FFD54F; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #FFD54F; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #383838; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #ffc50c; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #ffc50c; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #FFD54F; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1e1e1e; border: 1px solid #383838; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #121212; border: 1px solid #383838; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #383838; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #383838; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #ffcd2e; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #383838; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #383838; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #ffe284; border-color: #FFD54F; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #121212; border: 1px solid #383838; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #383838; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #383838; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1e1e1e; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #ffc50c; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #383838; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffc50c; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #383838; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #121212; border: 1px solid #383838; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #383838; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #212529; background: #FFD54F; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #FFD54F; background: transparent; @@ -2526,7 +2418,6 @@ color: #FFD54F; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #121212; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -2901,7 +2775,6 @@ background: rgba(255, 213, 79, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -3047,12 +2920,12 @@ background: #FFD54F; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-column-filter-overlay { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #383838; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #FFD54F; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #383838; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #383838; background: #1e1e1e; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #FFD54F; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #383838; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #383838; background: #1e1e1e; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #383838; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #383838; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-splitter { border: 1px solid #383838; background: #1e1e1e; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #383838; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1e1e1e; border: 1px solid #383838; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #383838; } - .p-sidebar { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #383838; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #383838; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #ffcd2e; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #ffc50c; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid #383838; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1e1e1e; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1e1e1e; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #383838; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #ffe284; } - .p-tieredmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #383838; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #FFD54F; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #383838; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #FFD54F; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #FFD54F; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #FFD54F; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #FFD54F; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #FFD54F; } diff --git a/src/assets/components/themes/arya-purple/theme.css b/src/assets/components/themes/arya-purple/theme.css index 8eceecc17ab..8f8bb2fb838 100644 --- a/src/assets/components/themes/arya-purple/theme.css +++ b/src/assets/components/themes/arya-purple/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; border-color: #BA68C8; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #BA68C8; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #383838; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #a241b2; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #a241b2; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #BA68C8; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1e1e1e; border: 1px solid #383838; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #121212; border: 1px solid #383838; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #383838; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #383838; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #b052c0; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #383838; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #383838; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #cf95d9; border-color: #BA68C8; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #121212; border: 1px solid #383838; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #383838; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #383838; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1e1e1e; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #a241b2; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #383838; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #a241b2; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #383838; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #121212; border: 1px solid #383838; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #383838; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #383838; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #ffffff; background: #BA68C8; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #BA68C8; background: transparent; @@ -2526,7 +2418,6 @@ color: #BA68C8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #121212; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -2901,7 +2775,6 @@ background: rgba(186, 104, 200, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -3047,12 +2920,12 @@ background: #BA68C8; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-column-filter-overlay { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #383838; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #BA68C8; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #383838; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #383838; background: #1e1e1e; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #BA68C8; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #383838; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #383838; background: #1e1e1e; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #383838; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #383838; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-splitter { border: 1px solid #383838; background: #1e1e1e; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #383838; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1e1e1e; border: 1px solid #383838; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #383838; } - .p-sidebar { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #383838; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #383838; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #b052c0; color: #ffffff; @@ -4629,7 +4470,6 @@ color: #ffffff; border-color: #a241b2; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid #383838; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1e1e1e; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1e1e1e; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #383838; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #cf95d9; } - .p-tieredmenu { padding: 0.25rem 0; background: #1e1e1e; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #383838; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #BA68C8; color: #ffffff; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #383838; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #BA68C8; color: #ffffff; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #BA68C8; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #BA68C8; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #BA68C8; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #BA68C8; } diff --git a/src/assets/components/themes/bootstrap4-dark-blue/theme.css b/src/assets/components/themes/bootstrap4-dark-blue/theme.css index 2e8030b48c6..d7070766dc5 100644 --- a/src/assets/components/themes/bootstrap4-dark-blue/theme.css +++ b/src/assets/components/themes/bootstrap4-dark-blue/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.15s; } - .p-disabled, .p-component:disabled { opacity: 0.65; } - .p-error { color: #f19ea6; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f19ea6; } - .p-autocomplete-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f19ea6; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.107rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f19ea6; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; border-color: #8dd0ff; } - .p-datepicker { padding: 0; background: #2a323d; @@ -495,7 +476,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: color 0.15s, box-shadow 0.15s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: color 0.15s, box-shadow 0.15s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #8dd0ff; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.107rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f19ea6; } - .p-cascadeselect-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #3f4b5b; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #3f4b5b; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f19ea6; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #1dadff; color: #151515; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f19ea6; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #3f4b5b; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #1dadff; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #151515; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f19ea6; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #3f4b5b; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f19ea6; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -924,26 +888,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #2a323d; border: 1px solid #3f4b5b; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: none; } - .p-dropdown { background: #20262e; border: 1px solid #3f4b5b; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f19ea6; } - .p-dropdown-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1051,7 +1010,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #3f4b5b; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f19ea6; } - .p-inputgroup-addon { background: #2a323d; color: rgba(255, 255, 255, 0.6); @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #3f4b5b; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f19ea6; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1150,11 +1098,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f19ea6; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1162,14 +1108,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.107rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.107rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #8dd0ff; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f19ea6; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.15s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f19ea6; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #3f4b5b; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #3f4b5b; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-listbox { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 1px #e3f3fe; border-color: #8dd0ff; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f19ea6; } - .p-multiselect { background: #20262e; border: 1px solid #3f4b5b; @@ -1434,11 +1359,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1446,7 +1369,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1535,7 +1457,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #3f4b5b; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #3f4b5b; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f19ea6; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f19ea6; } - .p-password-panel { padding: 1.25rem; background: #2a323d; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #9fdaa8; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1583,7 +1500,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1591,7 +1507,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #1dadff; color: #151515; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f19ea6; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #3f4b5b; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #1dadff; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #151515; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f19ea6; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #151515; } - .p-selectbutton .p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1697,7 +1605,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f19ea6; } - .p-slider { background: #3f4b5b; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.15s; } - .p-togglebutton.p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1791,7 +1696,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f19ea6; } - .p-treeselect { background: #20262e; border: 1px solid #3f4b5b; @@ -1862,15 +1765,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f19ea6; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.75rem; } - .p-treeselect-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1930,7 +1830,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #3f4b5b; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #3f4b5b; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1948,7 +1846,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #151515; background: #8dd0ff; @@ -2060,7 +1957,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #6c757d; border: 1px solid #6c757d; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #5a6268; color: #ffffff; border-color: #5a6268; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px rgba(130, 138, 145, 0.5); } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #545b62; color: #ffffff; border-color: #4e555b; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(108, 117, 125, 0.16); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #6c757d; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); border-color: transparent; color: #6c757d; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(108, 117, 125, 0.16); border-color: transparent; color: #6c757d; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #151515; background: #7fd8e6; border: 1px solid #4cc8db; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #4cc8db; color: #151515; border-color: #26bdd3; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b1e8f0; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #26bdd3; color: #151515; border-color: #00b2cc; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #7fd8e6; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(127, 216, 230, 0.04); color: #7fd8e6; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(127, 216, 230, 0.16); color: #7fd8e6; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #7fd8e6; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(127, 216, 230, 0.04); border-color: transparent; color: #7fd8e6; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(127, 216, 230, 0.16); border-color: transparent; color: #7fd8e6; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #151515; background: #9fdaa8; border: 1px solid #78cc86; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #78cc86; color: #151515; border-color: #5ac06c; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #c5e8ca; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #5ac06c; color: #151515; border-color: #3cb553; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #9fdaa8; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(159, 218, 168, 0.04); color: #9fdaa8; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(159, 218, 168, 0.16); color: #9fdaa8; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #9fdaa8; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(159, 218, 168, 0.04); border-color: transparent; color: #9fdaa8; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(159, 218, 168, 0.16); border-color: transparent; color: #9fdaa8; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #151515; background: #ffe082; border: 1px solid #ffd54f; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd54f; color: #151515; border-color: #ffca28; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffecb3; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffca28; color: #151515; border-color: #ffc107; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #151515; background: #b7a2e0; border: 1px solid #9a7cd4; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9a7cd4; color: #151515; border-color: #845fca; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d3c7ec; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #845fca; color: #151515; border-color: #6d43c0; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #b7a2e0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(183, 162, 224, 0.04); color: #b7a2e0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(183, 162, 224, 0.16); color: #b7a2e0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #b7a2e0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(183, 162, 224, 0.04); border-color: transparent; color: #b7a2e0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(183, 162, 224, 0.16); border-color: transparent; color: #b7a2e0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #151515; background: #f19ea6; border: 1px solid #e97984; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #e97984; color: #151515; border-color: #f75965; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffd0d9; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #f75965; color: #151515; border-color: #fd464e; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f19ea6; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(241, 158, 166, 0.04); color: #f19ea6; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(241, 158, 166, 0.16); color: #f19ea6; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f19ea6; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(241, 158, 166, 0.04); border-color: transparent; color: #f19ea6; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(241, 158, 166, 0.16); border-color: transparent; color: #f19ea6; } - .p-button.p-button-link { color: #8dd0ff; background: transparent; @@ -2538,7 +2427,6 @@ color: #8dd0ff; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #3f4b5b; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 4px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #6c757d; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #6c757d; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #7fd8e6; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #7fd8e6; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #9fdaa8; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #9fdaa8; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #b7a2e0; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #b7a2e0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f19ea6; @@ -2868,9 +2740,8 @@ border-color: transparent; color: #f19ea6; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; @@ -2913,7 +2784,6 @@ background: #8dd0ff; color: #151515; } - .p-datatable .p-paginator-top { border-width: 0; border-radius: 0; @@ -3007,9 +2877,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3019,17 +2889,17 @@ transition: color 0.15s, box-shadow 0.15s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; @@ -3059,12 +2929,12 @@ background: #8dd0ff; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #2a323d; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #2a323d; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0; border-radius: 0; @@ -3206,12 +3075,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3239,7 +3106,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-column-filter-overlay { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -3297,7 +3162,6 @@ border-top: 1px solid #3f4b5b; margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.5rem; border-bottom: 1px solid #3f4b5b; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3421,7 +3283,6 @@ background: #2a323d; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); color: rgba(255, 255, 255, 0.87); @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-paginator { background: #2a323d; color: #8dd0ff; @@ -3470,9 +3330,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 1px solid #3f4b5b; color: #8dd0ff; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); border-color: #3f4b5b; color: #8dd0ff; @@ -3542,7 +3402,6 @@ border-color: #3f4b5b; color: #8dd0ff; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3637,7 +3495,6 @@ background: #2a323d; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #3f4b5b; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #3f4b5b; background: #2a323d; @@ -3719,11 +3575,11 @@ color: #151515; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #151515; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #151515; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-treetable .p-paginator-top { border-width: 0; border-radius: 0; @@ -3936,7 +3791,7 @@ background: #8dd0ff; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #2a323d; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #2a323d; color: rgba(255, 255, 255, 0.6); @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem 1.25rem; border: 1px solid #3f4b5b; @@ -4095,7 +3948,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4121,7 +3973,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #2a323d; } @@ -4145,7 +3996,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #3f4b5b; background: #2a323d; @@ -4186,7 +4036,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #3f4b5b; padding: 1rem 1.25rem; @@ -4253,7 +4102,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3f4b5b; border: 0 none; @@ -4264,7 +4112,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-splitter { border: 1px solid #3f4b5b; background: #2a323d; @@ -4286,7 +4133,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #3f4b5b; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4355,7 +4201,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #2a323d; border: 1px solid #3f4b5b; @@ -4366,7 +4211,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4414,7 +4258,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: none; @@ -4487,7 +4330,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4529,7 +4371,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #3f4b5b; } - .p-sidebar { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4540,7 +4381,7 @@ padding: 1rem 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4550,13 +4391,13 @@ transition: color 0.15s, box-shadow 0.15s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; @@ -4570,7 +4411,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem 1.25rem; } - .p-tooltip .p-tooltip-text { background: #3f4b5b; color: rgba(255, 255, 255, 0.87); @@ -4590,7 +4430,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #3f4b5b; } - .p-fileupload .p-fileupload-buttonbar { background: #2a323d; padding: 1rem 1.25rem; @@ -4630,7 +4469,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #56bdff; color: #151515; @@ -4641,7 +4479,6 @@ color: #151515; border-color: #1dadff; } - .p-breadcrumb { background: #343e4d; border: 0 none; @@ -4673,7 +4510,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.87); } - .p-contextmenu { padding: 0.5rem 0; background: #2a323d; @@ -4721,7 +4557,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4735,7 +4571,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4746,7 +4582,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4760,7 +4596,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4784,32 +4619,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4868,7 +4702,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4882,7 +4716,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4893,7 +4727,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4951,10 +4785,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.5rem 0; background: #2a323d; @@ -4991,7 +4824,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5005,7 +4838,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5016,7 +4849,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5050,7 +4883,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem 1rem; background: #343e4d; @@ -5089,7 +4921,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5120,7 +4952,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5134,7 +4966,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5145,7 +4977,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5162,7 +4994,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5337,7 +5168,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5351,7 +5182,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5362,7 +5193,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5402,7 +5233,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #2a323d; @@ -5445,7 +5275,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5459,7 +5289,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5470,7 +5300,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5517,7 +5347,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.15s; @@ -5562,7 +5391,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #3f4b5b; @@ -5633,7 +5461,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #e3f3fe; } - .p-tieredmenu { padding: 0.5rem 0; background: #2a323d; @@ -5684,7 +5511,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5698,7 +5525,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5709,7 +5536,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5723,7 +5550,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.75rem; margin: 0; @@ -5779,7 +5605,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5868,7 +5693,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5919,7 +5743,7 @@ color: #004085; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #004085; } .p-toast .p-toast-message.p-toast-message-success { @@ -5929,7 +5753,7 @@ color: #155724; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #155724; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5939,7 +5763,7 @@ color: #856404; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #856404; } .p-toast .p-toast-message.p-toast-message-error { @@ -5949,10 +5773,9 @@ color: #721c24; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #721c24; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5983,7 +5806,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6040,7 +5863,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.6); @@ -6050,7 +5873,7 @@ border-radius: 4px; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); } @@ -6059,29 +5882,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: color 0.15s, box-shadow 0.15s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6105,7 +5922,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #3f4b5b; border-radius: 4px; @@ -6126,11 +5942,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #2a323d; } - .p-badge { background: #8dd0ff; color: #151515; @@ -6172,7 +5986,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #3f4b5b; color: rgba(255, 255, 255, 0.87); @@ -6208,7 +6021,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.75rem; border-radius: 4px; @@ -6223,7 +6035,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6239,7 +6050,6 @@ color: #151515; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6261,7 +6071,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 4px; @@ -6269,7 +6078,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #8dd0ff; color: #151515; @@ -6302,7 +6110,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #2a323d; color: rgba(255, 255, 255, 0.87); diff --git a/src/assets/components/themes/bootstrap4-dark-purple/theme.css b/src/assets/components/themes/bootstrap4-dark-purple/theme.css index 9e574382dc0..69138abcf22 100644 --- a/src/assets/components/themes/bootstrap4-dark-purple/theme.css +++ b/src/assets/components/themes/bootstrap4-dark-purple/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.15s; } - .p-disabled, .p-component:disabled { opacity: 0.65; } - .p-error { color: #f19ea6; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f19ea6; } - .p-autocomplete-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f19ea6; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.107rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f19ea6; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; border-color: #c298d8; } - .p-datepicker { padding: 0; background: #2a323d; @@ -495,7 +476,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: color 0.15s, box-shadow 0.15s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: color 0.15s, box-shadow 0.15s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #c298d8; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.107rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f19ea6; } - .p-cascadeselect-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #3f4b5b; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #3f4b5b; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f19ea6; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #9954bb; color: #151515; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f19ea6; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #3f4b5b; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9954bb; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #151515; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f19ea6; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #3f4b5b; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f19ea6; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -924,26 +888,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #2a323d; border: 1px solid #3f4b5b; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: none; } - .p-dropdown { background: #20262e; border: 1px solid #3f4b5b; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f19ea6; } - .p-dropdown-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1051,7 +1010,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #3f4b5b; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f19ea6; } - .p-inputgroup-addon { background: #2a323d; color: rgba(255, 255, 255, 0.6); @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #3f4b5b; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f19ea6; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1150,11 +1098,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f19ea6; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1162,14 +1108,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.107rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.107rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #c298d8; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f19ea6; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.15s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f19ea6; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #3f4b5b; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #3f4b5b; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-listbox { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 1px #f0e6f5; border-color: #c298d8; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f19ea6; } - .p-multiselect { background: #20262e; border: 1px solid #3f4b5b; @@ -1434,11 +1359,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1446,7 +1369,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1535,7 +1457,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #3f4b5b; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #3f4b5b; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f19ea6; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f19ea6; } - .p-password-panel { padding: 1.25rem; background: #2a323d; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #9fdaa8; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1583,7 +1500,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1591,7 +1507,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #9954bb; color: #151515; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f19ea6; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #3f4b5b; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #9954bb; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #151515; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f19ea6; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #151515; } - .p-selectbutton .p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1697,7 +1605,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f19ea6; } - .p-slider { background: #3f4b5b; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.15s; } - .p-togglebutton.p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1791,7 +1696,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f19ea6; } - .p-treeselect { background: #20262e; border: 1px solid #3f4b5b; @@ -1862,15 +1765,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f19ea6; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.75rem; } - .p-treeselect-panel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -1930,7 +1830,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #3f4b5b; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #3f4b5b; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1948,7 +1846,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #151515; background: #c298d8; @@ -2060,7 +1957,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #6c757d; border: 1px solid #6c757d; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #5a6268; color: #ffffff; border-color: #5a6268; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px rgba(130, 138, 145, 0.5); } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #545b62; color: #ffffff; border-color: #4e555b; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(108, 117, 125, 0.16); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #6c757d; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); border-color: transparent; color: #6c757d; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(108, 117, 125, 0.16); border-color: transparent; color: #6c757d; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #151515; background: #7fd8e6; border: 1px solid #4cc8db; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #4cc8db; color: #151515; border-color: #26bdd3; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b1e8f0; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #26bdd3; color: #151515; border-color: #00b2cc; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #7fd8e6; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(127, 216, 230, 0.04); color: #7fd8e6; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(127, 216, 230, 0.16); color: #7fd8e6; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #7fd8e6; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(127, 216, 230, 0.04); border-color: transparent; color: #7fd8e6; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(127, 216, 230, 0.16); border-color: transparent; color: #7fd8e6; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #151515; background: #9fdaa8; border: 1px solid #78cc86; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #78cc86; color: #151515; border-color: #5ac06c; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #c5e8ca; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #5ac06c; color: #151515; border-color: #3cb553; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #9fdaa8; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(159, 218, 168, 0.04); color: #9fdaa8; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(159, 218, 168, 0.16); color: #9fdaa8; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #9fdaa8; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(159, 218, 168, 0.04); border-color: transparent; color: #9fdaa8; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(159, 218, 168, 0.16); border-color: transparent; color: #9fdaa8; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #151515; background: #ffe082; border: 1px solid #ffd54f; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd54f; color: #151515; border-color: #ffca28; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffecb3; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffca28; color: #151515; border-color: #ffc107; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #151515; background: #b7a2e0; border: 1px solid #9a7cd4; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9a7cd4; color: #151515; border-color: #845fca; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d3c7ec; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #845fca; color: #151515; border-color: #6d43c0; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #b7a2e0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(183, 162, 224, 0.04); color: #b7a2e0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(183, 162, 224, 0.16); color: #b7a2e0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #b7a2e0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(183, 162, 224, 0.04); border-color: transparent; color: #b7a2e0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(183, 162, 224, 0.16); border-color: transparent; color: #b7a2e0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #151515; background: #f19ea6; border: 1px solid #e97984; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #e97984; color: #151515; border-color: #f75965; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffd0d9; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #f75965; color: #151515; border-color: #fd464e; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f19ea6; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(241, 158, 166, 0.04); color: #f19ea6; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(241, 158, 166, 0.16); color: #f19ea6; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f19ea6; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(241, 158, 166, 0.04); border-color: transparent; color: #f19ea6; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(241, 158, 166, 0.16); border-color: transparent; color: #f19ea6; } - .p-button.p-button-link { color: #c298d8; background: transparent; @@ -2538,7 +2427,6 @@ color: #c298d8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #3f4b5b; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 4px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #6c757d; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #6c757d; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #7fd8e6; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #7fd8e6; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #9fdaa8; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #9fdaa8; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #b7a2e0; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #b7a2e0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f19ea6; @@ -2868,9 +2740,8 @@ border-color: transparent; color: #f19ea6; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; @@ -2913,7 +2784,6 @@ background: #c298d8; color: #151515; } - .p-datatable .p-paginator-top { border-width: 0; border-radius: 0; @@ -3007,9 +2877,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3019,17 +2889,17 @@ transition: color 0.15s, box-shadow 0.15s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; @@ -3059,12 +2929,12 @@ background: #c298d8; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #2a323d; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #2a323d; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0; border-radius: 0; @@ -3206,12 +3075,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3239,7 +3106,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-column-filter-overlay { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -3297,7 +3162,6 @@ border-top: 1px solid #3f4b5b; margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.5rem; border-bottom: 1px solid #3f4b5b; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3421,7 +3283,6 @@ background: #2a323d; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); color: rgba(255, 255, 255, 0.87); @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-paginator { background: #2a323d; color: #c298d8; @@ -3470,9 +3330,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 1px solid #3f4b5b; color: #c298d8; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); border-color: #3f4b5b; color: #c298d8; @@ -3542,7 +3402,6 @@ border-color: #3f4b5b; color: #c298d8; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3637,7 +3495,6 @@ background: #2a323d; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #3f4b5b; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #3f4b5b; background: #2a323d; @@ -3719,11 +3575,11 @@ color: #151515; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #151515; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #151515; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-treetable .p-paginator-top { border-width: 0; border-radius: 0; @@ -3936,7 +3791,7 @@ background: #c298d8; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #2a323d; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #2a323d; color: rgba(255, 255, 255, 0.6); @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem 1.25rem; border: 1px solid #3f4b5b; @@ -4095,7 +3948,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4121,7 +3973,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #2a323d; } @@ -4145,7 +3996,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #3f4b5b; background: #2a323d; @@ -4186,7 +4036,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #3f4b5b; padding: 1rem 1.25rem; @@ -4253,7 +4102,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3f4b5b; border: 0 none; @@ -4264,7 +4112,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-splitter { border: 1px solid #3f4b5b; background: #2a323d; @@ -4286,7 +4133,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #3f4b5b; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4355,7 +4201,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #2a323d; border: 1px solid #3f4b5b; @@ -4366,7 +4211,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4414,7 +4258,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: none; @@ -4487,7 +4330,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4529,7 +4371,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #3f4b5b; } - .p-sidebar { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -4540,7 +4381,7 @@ padding: 1rem 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4550,13 +4391,13 @@ transition: color 0.15s, box-shadow 0.15s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; @@ -4570,7 +4411,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem 1.25rem; } - .p-tooltip .p-tooltip-text { background: #3f4b5b; color: rgba(255, 255, 255, 0.87); @@ -4590,7 +4430,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #3f4b5b; } - .p-fileupload .p-fileupload-buttonbar { background: #2a323d; padding: 1rem 1.25rem; @@ -4630,7 +4469,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #aa70c7; color: #151515; @@ -4641,7 +4479,6 @@ color: #151515; border-color: #9954bb; } - .p-breadcrumb { background: #343e4d; border: 0 none; @@ -4673,7 +4510,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.87); } - .p-contextmenu { padding: 0.5rem 0; background: #2a323d; @@ -4721,7 +4557,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4735,7 +4571,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4746,7 +4582,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4760,7 +4596,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4784,32 +4619,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4868,7 +4702,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4882,7 +4716,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4893,7 +4727,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4951,10 +4785,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.5rem 0; background: #2a323d; @@ -4991,7 +4824,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5005,7 +4838,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5016,7 +4849,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5050,7 +4883,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem 1rem; background: #343e4d; @@ -5089,7 +4921,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5120,7 +4952,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5134,7 +4966,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5145,7 +4977,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5162,7 +4994,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5337,7 +5168,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5351,7 +5182,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5362,7 +5193,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5402,7 +5233,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #2a323d; @@ -5445,7 +5275,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5459,7 +5289,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5470,7 +5300,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5517,7 +5347,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.15s; @@ -5562,7 +5391,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #3f4b5b; @@ -5633,7 +5461,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #f0e6f5; } - .p-tieredmenu { padding: 0.5rem 0; background: #2a323d; @@ -5684,7 +5511,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5698,7 +5525,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5709,7 +5536,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5723,7 +5550,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.75rem; margin: 0; @@ -5779,7 +5605,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5868,7 +5693,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5919,7 +5743,7 @@ color: #004085; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #004085; } .p-toast .p-toast-message.p-toast-message-success { @@ -5929,7 +5753,7 @@ color: #155724; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #155724; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5939,7 +5763,7 @@ color: #856404; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #856404; } .p-toast .p-toast-message.p-toast-message-error { @@ -5949,10 +5773,9 @@ color: #721c24; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #721c24; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5983,7 +5806,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6040,7 +5863,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.6); @@ -6050,7 +5873,7 @@ border-radius: 4px; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); } @@ -6059,29 +5882,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: color 0.15s, box-shadow 0.15s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6105,7 +5922,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #3f4b5b; border-radius: 4px; @@ -6126,11 +5942,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #2a323d; } - .p-badge { background: #c298d8; color: #151515; @@ -6172,7 +5986,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #3f4b5b; color: rgba(255, 255, 255, 0.87); @@ -6208,7 +6021,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.75rem; border-radius: 4px; @@ -6223,7 +6035,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6239,7 +6050,6 @@ color: #151515; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6261,7 +6071,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 4px; @@ -6269,7 +6078,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #c298d8; color: #151515; @@ -6302,7 +6110,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #2a323d; color: rgba(255, 255, 255, 0.87); diff --git a/src/assets/components/themes/bootstrap4-light-blue/theme.css b/src/assets/components/themes/bootstrap4-light-blue/theme.css index 9933f933730..3d2678b4972 100644 --- a/src/assets/components/themes/bootstrap4-light-blue/theme.css +++ b/src/assets/components/themes/bootstrap4-light-blue/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.15s; } - .p-disabled, .p-component:disabled { opacity: 0.65; } - .p-error { color: #dc3545; } - .p-text-secondary { color: #6c757d; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #dc3545; } - .p-autocomplete-panel { background: #ffffff; color: #212529; @@ -440,11 +427,9 @@ color: #212529; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #dc3545; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -452,23 +437,19 @@ color: #495057; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #495057; right: 3.107rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #dc3545; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); border-color: #007bff; } - .p-datepicker { padding: 0; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6c757d; @@ -505,13 +486,13 @@ transition: box-shadow 0.15s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #212529; transition: box-shadow 0.15s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #007bff; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -684,12 +664,10 @@ color: #495057; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #495057; right: 3.107rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #dc3545; } - .p-cascadeselect-panel { background: #ffffff; color: #212529; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #efefef; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #efefef; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #dc3545; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -794,7 +768,6 @@ color: #495057; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #0062cc; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #dc3545; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #efefef; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #0062cc; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #ffffff; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #dc3545; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #ced4da; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #dc3545; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -924,26 +888,22 @@ color: #495057; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #212529; border: 1px solid #212529; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: none; } - .p-dropdown { background: #ffffff; border: 1px solid #ced4da; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #dc3545; } - .p-dropdown-panel { background: #ffffff; color: #212529; @@ -1051,7 +1010,6 @@ color: #212529; background: transparent; } - .p-input-filled .p-dropdown { background: #efefef; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #dc3545; } - .p-inputgroup-addon { background: #e9ecef; color: #495057; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #ced4da; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #dc3545; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1150,11 +1098,9 @@ color: #495057; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #dc3545; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1162,14 +1108,12 @@ color: #495057; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.107rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.107rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #007bff; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #dc3545; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #6c757d; transition-duration: 0.15s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #dc3545; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #495057; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #495057; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #6c757d; } - :-moz-placeholder { color: #6c757d; } - ::-moz-placeholder { color: #6c757d; } - :-ms-input-placeholder { color: #6c757d; } - .p-input-filled .p-inputtext { background-color: #efefef; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #efefef; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #212529; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); border-color: #007bff; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #dc3545; } - .p-multiselect { background: #ffffff; border: 1px solid #ced4da; @@ -1434,11 +1359,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1446,7 +1369,6 @@ color: #495057; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #212529; @@ -1535,7 +1457,6 @@ color: #212529; background: transparent; } - .p-input-filled .p-multiselect { background: #efefef; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #efefef; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #dc3545; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #dc3545; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #28a745; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1583,7 +1500,6 @@ color: #495057; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1591,7 +1507,6 @@ color: #495057; right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #0062cc; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #dc3545; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #efefef; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #0062cc; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #ffffff; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #dc3545; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #ffffff; } - .p-selectbutton .p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1697,7 +1605,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #dc3545; } - .p-slider { background: #e9ecef; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.15s; } - .p-togglebutton.p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1791,7 +1696,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #dc3545; } - .p-treeselect { background: #ffffff; border: 1px solid #ced4da; @@ -1862,15 +1765,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #dc3545; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #212529; @@ -1930,7 +1830,6 @@ color: #212529; background: transparent; } - .p-input-filled .p-treeselect { background: #efefef; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #efefef; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1948,7 +1846,6 @@ color: #495057; right: 2.357rem; } - .p-button { color: #ffffff; background: #007bff; @@ -2060,7 +1957,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #6c757d; border: 1px solid #6c757d; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #5a6268; color: #ffffff; border-color: #5a6268; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #545b62; color: #ffffff; border-color: #4e555b; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(108, 117, 125, 0.16); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #6c757d; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); border-color: transparent; color: #6c757d; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(108, 117, 125, 0.16); border-color: transparent; color: #6c757d; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #17a2b8; border: 1px solid #17a2b8; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #138496; color: #ffffff; border-color: #117a8b; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #138496; color: #ffffff; border-color: #117a8b; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #17a2b8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(23, 162, 184, 0.04); color: #17a2b8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(23, 162, 184, 0.16); color: #17a2b8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #17a2b8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(23, 162, 184, 0.04); border-color: transparent; color: #17a2b8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(23, 162, 184, 0.16); border-color: transparent; color: #17a2b8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #28a745; border: 1px solid #28a745; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #218838; color: #ffffff; border-color: #1e7e34; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #1e7e34; color: #ffffff; border-color: #1c7430; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #28a745; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(40, 167, 69, 0.04); color: #28a745; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(40, 167, 69, 0.16); color: #28a745; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #28a745; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(40, 167, 69, 0.04); border-color: transparent; color: #28a745; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(40, 167, 69, 0.16); border-color: transparent; color: #28a745; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #ffc107; border: 1px solid #ffc107; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #e0a800; color: #212529; border-color: #d39e00; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #d39e00; color: #212529; border-color: #c69500; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffc107; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 193, 7, 0.04); color: #ffc107; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 193, 7, 0.16); color: #ffc107; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffc107; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 193, 7, 0.04); border-color: transparent; color: #ffc107; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 193, 7, 0.16); border-color: transparent; color: #ffc107; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #6f42c1; border: 1px solid #6f42c1; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #633bad; color: #ffffff; border-color: #58349a; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #d3c6ec; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #58349a; color: #ffffff; border-color: #4d2e87; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #6f42c1; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(111, 66, 193, 0.04); color: #6f42c1; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(111, 66, 193, 0.16); color: #6f42c1; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #6f42c1; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(111, 66, 193, 0.04); border-color: transparent; color: #6f42c1; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(111, 66, 193, 0.16); border-color: transparent; color: #6f42c1; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #dc3545; border: 1px solid #dc3545; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c82333; color: #ffffff; border-color: #bd2130; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #bd2130; color: #ffffff; border-color: #b21f2d; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #dc3545; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(220, 53, 69, 0.04); color: #dc3545; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(220, 53, 69, 0.16); color: #dc3545; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #dc3545; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(220, 53, 69, 0.04); border-color: transparent; color: #dc3545; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(220, 53, 69, 0.16); border-color: transparent; color: #dc3545; } - .p-button.p-button-link { color: #007bff; background: transparent; @@ -2538,7 +2427,6 @@ color: #007bff; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #343a40; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 4px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #6c757d; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #6c757d; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #17a2b8; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #17a2b8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #28a745; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #28a745; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffc107; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffc107; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #6f42c1; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #6f42c1; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #dc3545; @@ -2868,9 +2740,8 @@ border-color: transparent; color: #dc3545; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6c757d; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); @@ -2913,7 +2784,6 @@ background: #007bff; color: #ffffff; } - .p-datatable .p-paginator-top { border-width: 1px 0 0 0; border-radius: 0; @@ -3007,9 +2877,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6c757d; @@ -3019,17 +2889,17 @@ transition: box-shadow 0.15s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); @@ -3059,12 +2929,12 @@ background: #007bff; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #efefef; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 0 0; border-radius: 0; @@ -3206,12 +3075,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3239,7 +3106,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-column-filter-overlay { background: #ffffff; color: #212529; @@ -3297,7 +3162,6 @@ border-top: 1px solid #dee2e6; margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #e9ecef; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3421,7 +3283,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #e9ecef; color: #212529; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-paginator { background: #ffffff; color: #007bff; @@ -3470,9 +3330,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: #ffffff; border: 1px solid #dee2e6; color: #007bff; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e9ecef; border-color: #dee2e6; color: #007bff; @@ -3542,7 +3402,6 @@ border-color: #dee2e6; color: #007bff; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #e9ecef; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3637,7 +3495,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3719,11 +3575,11 @@ color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-treetable .p-paginator-top { border-width: 1px 0 0 0; border-radius: 0; @@ -3936,7 +3791,7 @@ background: #007bff; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #efefef; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #efefef; color: #212529; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem 1.25rem; border: 1px solid #dee2e6; @@ -4095,7 +3948,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: #212529; @@ -4121,7 +3973,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4145,7 +3996,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4186,7 +4036,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem 1.25rem; @@ -4253,7 +4102,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #efefef; border: 0 none; @@ -4264,7 +4112,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4286,7 +4133,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4355,7 +4201,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #efefef; border: 1px solid #dee2e6; @@ -4366,7 +4211,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #212529; @@ -4414,7 +4258,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: none; @@ -4487,7 +4330,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #212529; @@ -4529,7 +4371,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: rgba(0, 0, 0, 0.2); } - .p-sidebar { background: #ffffff; color: #212529; @@ -4540,7 +4381,7 @@ padding: 1rem 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6c757d; @@ -4550,13 +4391,13 @@ transition: box-shadow 0.15s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); @@ -4570,7 +4411,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem 1.25rem; } - .p-tooltip .p-tooltip-text { background: #212529; color: #ffffff; @@ -4590,7 +4430,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #212529; } - .p-fileupload .p-fileupload-buttonbar { background: #efefef; padding: 1rem 1.25rem; @@ -4630,7 +4469,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #0069d9; color: #ffffff; @@ -4641,7 +4479,6 @@ color: #ffffff; border-color: #0062cc; } - .p-breadcrumb { background: #efefef; border: 0 none; @@ -4673,7 +4510,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6c757d; } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4721,7 +4557,7 @@ color: #212529; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4735,7 +4571,7 @@ color: #212529; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4746,7 +4582,7 @@ color: #212529; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem-separator { @@ -4760,7 +4596,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4784,32 +4619,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4868,7 +4702,7 @@ color: #212529; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4882,7 +4716,7 @@ color: #212529; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4893,7 +4727,7 @@ color: #212529; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-megamenu-panel { @@ -4951,10 +4785,9 @@ color: rgba(0, 0, 0, 0.7); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.7); } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -4991,7 +4824,7 @@ color: #212529; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5005,7 +4838,7 @@ color: #212529; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5016,7 +4849,7 @@ color: #212529; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu.p-menu-overlay { @@ -5050,7 +4883,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem 1rem; background: #efefef; @@ -5089,7 +4921,7 @@ color: rgba(0, 0, 0, 0.7); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.7); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5120,7 +4952,7 @@ color: #212529; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5134,7 +4966,7 @@ color: #212529; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5145,7 +4977,7 @@ color: #212529; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-submenu-list { @@ -5162,7 +4994,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5337,7 +5168,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5351,7 +5182,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5362,7 +5193,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5402,7 +5233,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5445,7 +5275,7 @@ color: #212529; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5459,7 +5289,7 @@ color: #212529; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5470,7 +5300,7 @@ color: #212529; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu.p-slidemenu-overlay { @@ -5517,7 +5347,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.15s; @@ -5562,7 +5391,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #dee2e6; @@ -5633,7 +5461,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5684,7 +5511,7 @@ color: #212529; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5698,7 +5525,7 @@ color: #212529; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5709,7 +5536,7 @@ color: #212529; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem-separator { @@ -5723,7 +5550,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.75rem; margin: 0; @@ -5779,7 +5605,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5868,7 +5693,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5919,7 +5743,7 @@ color: #004085; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #004085; } .p-toast .p-toast-message.p-toast-message-success { @@ -5929,7 +5753,7 @@ color: #155724; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #155724; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5939,7 +5763,7 @@ color: #856404; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #856404; } .p-toast .p-toast-message.p-toast-message-error { @@ -5949,10 +5773,9 @@ color: #721c24; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #721c24; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5983,7 +5806,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6040,7 +5863,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #efefef; @@ -6050,7 +5873,7 @@ border-radius: 4px; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #efefef; } @@ -6059,29 +5882,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: box-shadow 0.15s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6105,7 +5922,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 4px; @@ -6126,11 +5942,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #007bff; color: #ffffff; @@ -6172,7 +5986,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #212529; @@ -6208,7 +6021,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.75rem; border-radius: 4px; @@ -6223,7 +6035,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6239,7 +6050,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6261,7 +6071,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e9ecef; border-radius: 4px; @@ -6269,7 +6078,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #007bff; color: #ffffff; @@ -6302,7 +6110,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #212529; diff --git a/src/assets/components/themes/bootstrap4-light-purple/theme.css b/src/assets/components/themes/bootstrap4-light-purple/theme.css index 18860fef36a..895435195fe 100644 --- a/src/assets/components/themes/bootstrap4-light-purple/theme.css +++ b/src/assets/components/themes/bootstrap4-light-purple/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.15s; } - .p-disabled, .p-component:disabled { opacity: 0.65; } - .p-error { color: #dc3545; } - .p-text-secondary { color: #6c757d; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #dc3545; } - .p-autocomplete-panel { background: #ffffff; color: #212529; @@ -440,11 +427,9 @@ color: #212529; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #dc3545; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -452,23 +437,19 @@ color: #495057; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #495057; right: 3.107rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #dc3545; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); border-color: #883cae; } - .p-datepicker { padding: 0; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6c757d; @@ -505,13 +486,13 @@ transition: box-shadow 0.15s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #212529; transition: box-shadow 0.15s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #883cae; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -684,12 +664,10 @@ color: #495057; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #495057; right: 3.107rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #dc3545; } - .p-cascadeselect-panel { background: #ffffff; color: #212529; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #efefef; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #efefef; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #dc3545; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -794,7 +768,6 @@ color: #495057; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #68329e; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #dc3545; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #efefef; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #68329e; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #ffffff; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #dc3545; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #ced4da; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #dc3545; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -924,26 +888,22 @@ color: #495057; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #212529; border: 1px solid #212529; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: none; } - .p-dropdown { background: #ffffff; border: 1px solid #ced4da; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #dc3545; } - .p-dropdown-panel { background: #ffffff; color: #212529; @@ -1051,7 +1010,6 @@ color: #212529; background: transparent; } - .p-input-filled .p-dropdown { background: #efefef; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #dc3545; } - .p-inputgroup-addon { background: #e9ecef; color: #495057; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #ced4da; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #dc3545; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1150,11 +1098,9 @@ color: #495057; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #dc3545; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1162,14 +1108,12 @@ color: #495057; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.107rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.107rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #883cae; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #dc3545; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #6c757d; transition-duration: 0.15s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #dc3545; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #495057; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #495057; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #6c757d; } - :-moz-placeholder { color: #6c757d; } - ::-moz-placeholder { color: #6c757d; } - :-ms-input-placeholder { color: #6c757d; } - .p-input-filled .p-inputtext { background-color: #efefef; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #efefef; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #212529; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); border-color: #883cae; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #dc3545; } - .p-multiselect { background: #ffffff; border: 1px solid #ced4da; @@ -1434,11 +1359,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1446,7 +1369,6 @@ color: #495057; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #212529; @@ -1535,7 +1457,6 @@ color: #212529; background: transparent; } - .p-input-filled .p-multiselect { background: #efefef; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #efefef; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #dc3545; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #dc3545; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #28a745; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1583,7 +1500,6 @@ color: #495057; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1591,7 +1507,6 @@ color: #495057; right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #68329e; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #dc3545; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #efefef; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #68329e; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #ffffff; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #dc3545; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #ffffff; } - .p-selectbutton .p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1697,7 +1605,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #dc3545; } - .p-slider { background: #e9ecef; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.15s; } - .p-togglebutton.p-button { background: #6c757d; border: 1px solid #6c757d; @@ -1791,7 +1696,7 @@ transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #dc3545; } - .p-treeselect { background: #ffffff; border: 1px solid #ced4da; @@ -1862,15 +1765,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #dc3545; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #212529; @@ -1930,7 +1830,6 @@ color: #212529; background: transparent; } - .p-input-filled .p-treeselect { background: #efefef; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #efefef; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1948,7 +1846,6 @@ color: #495057; right: 2.357rem; } - .p-button { color: #ffffff; background: #883cae; @@ -2060,7 +1957,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #6c757d; border: 1px solid #6c757d; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #5a6268; color: #ffffff; border-color: #5a6268; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #545b62; color: #ffffff; border-color: #4e555b; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(108, 117, 125, 0.16); color: #6c757d; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #6c757d; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(108, 117, 125, 0.04); border-color: transparent; color: #6c757d; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(108, 117, 125, 0.16); border-color: transparent; color: #6c757d; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #17a2b8; border: 1px solid #17a2b8; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #138496; color: #ffffff; border-color: #117a8b; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #138496; color: #ffffff; border-color: #117a8b; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #17a2b8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(23, 162, 184, 0.04); color: #17a2b8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(23, 162, 184, 0.16); color: #17a2b8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #17a2b8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(23, 162, 184, 0.04); border-color: transparent; color: #17a2b8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(23, 162, 184, 0.16); border-color: transparent; color: #17a2b8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #28a745; border: 1px solid #28a745; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #218838; color: #ffffff; border-color: #1e7e34; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #1e7e34; color: #ffffff; border-color: #1c7430; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #28a745; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(40, 167, 69, 0.04); color: #28a745; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(40, 167, 69, 0.16); color: #28a745; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #28a745; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(40, 167, 69, 0.04); border-color: transparent; color: #28a745; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(40, 167, 69, 0.16); border-color: transparent; color: #28a745; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #ffc107; border: 1px solid #ffc107; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #e0a800; color: #212529; border-color: #d39e00; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #d39e00; color: #212529; border-color: #c69500; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffc107; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 193, 7, 0.04); color: #ffc107; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 193, 7, 0.16); color: #ffc107; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffc107; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 193, 7, 0.04); border-color: transparent; color: #ffc107; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 193, 7, 0.16); border-color: transparent; color: #ffc107; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #6f42c1; border: 1px solid #6f42c1; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #633bad; color: #ffffff; border-color: #58349a; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #d3c6ec; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #58349a; color: #ffffff; border-color: #4d2e87; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #6f42c1; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(111, 66, 193, 0.04); color: #6f42c1; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(111, 66, 193, 0.16); color: #6f42c1; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #6f42c1; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(111, 66, 193, 0.04); border-color: transparent; color: #6f42c1; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(111, 66, 193, 0.16); border-color: transparent; color: #6f42c1; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #dc3545; border: 1px solid #dc3545; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c82333; color: #ffffff; border-color: #bd2130; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #bd2130; color: #ffffff; border-color: #b21f2d; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #dc3545; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(220, 53, 69, 0.04); color: #dc3545; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(220, 53, 69, 0.16); color: #dc3545; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #dc3545; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(220, 53, 69, 0.04); border-color: transparent; color: #dc3545; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(220, 53, 69, 0.16); border-color: transparent; color: #dc3545; } - .p-button.p-button-link { color: #883cae; background: transparent; @@ -2538,7 +2427,6 @@ color: #883cae; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #343a40; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 4px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #6c757d; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #6c757d; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #17a2b8; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #17a2b8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #28a745; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #28a745; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffc107; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffc107; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #6f42c1; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #6f42c1; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #dc3545; @@ -2868,9 +2740,8 @@ border-color: transparent; color: #dc3545; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6c757d; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); @@ -2913,7 +2784,6 @@ background: #883cae; color: #ffffff; } - .p-datatable .p-paginator-top { border-width: 1px 0 0 0; border-radius: 0; @@ -3007,9 +2877,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6c757d; @@ -3019,17 +2889,17 @@ transition: box-shadow 0.15s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); @@ -3059,12 +2929,12 @@ background: #883cae; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #efefef; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 0 0; border-radius: 0; @@ -3206,12 +3075,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3239,7 +3106,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-column-filter-overlay { background: #ffffff; color: #212529; @@ -3297,7 +3162,6 @@ border-top: 1px solid #dee2e6; margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #e9ecef; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3421,7 +3283,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #e9ecef; color: #212529; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-paginator { background: #ffffff; color: #883cae; @@ -3470,9 +3330,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: #ffffff; border: 1px solid #dee2e6; color: #883cae; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e9ecef; border-color: #dee2e6; color: #883cae; @@ -3542,7 +3402,6 @@ border-color: #dee2e6; color: #883cae; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #e9ecef; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1.5rem; box-shadow: none; @@ -3637,7 +3495,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3719,11 +3575,11 @@ color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-treetable .p-paginator-top { border-width: 1px 0 0 0; border-radius: 0; @@ -3936,7 +3791,7 @@ background: #883cae; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #efefef; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #efefef; color: #212529; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem 1.25rem; border: 1px solid #dee2e6; @@ -4095,7 +3948,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: #212529; @@ -4121,7 +3973,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4145,7 +3996,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4186,7 +4036,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem 1.25rem; @@ -4253,7 +4102,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #efefef; border: 0 none; @@ -4264,7 +4112,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4286,7 +4133,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4355,7 +4201,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #efefef; border: 1px solid #dee2e6; @@ -4366,7 +4211,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #212529; @@ -4414,7 +4258,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: none; @@ -4487,7 +4330,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #212529; @@ -4529,7 +4371,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: rgba(0, 0, 0, 0.2); } - .p-sidebar { background: #ffffff; color: #212529; @@ -4540,7 +4381,7 @@ padding: 1rem 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6c757d; @@ -4550,13 +4391,13 @@ transition: box-shadow 0.15s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #495057; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); @@ -4570,7 +4411,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem 1.25rem; } - .p-tooltip .p-tooltip-text { background: #212529; color: #ffffff; @@ -4590,7 +4430,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #212529; } - .p-fileupload .p-fileupload-buttonbar { background: #efefef; padding: 1rem 1.25rem; @@ -4630,7 +4469,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #7a38a7; color: #ffffff; @@ -4641,7 +4479,6 @@ color: #ffffff; border-color: #68329e; } - .p-breadcrumb { background: #efefef; border: 0 none; @@ -4673,7 +4510,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6c757d; } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4721,7 +4557,7 @@ color: #212529; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4735,7 +4571,7 @@ color: #212529; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4746,7 +4582,7 @@ color: #212529; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem-separator { @@ -4760,7 +4596,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4784,32 +4619,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4868,7 +4702,7 @@ color: #212529; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4882,7 +4716,7 @@ color: #212529; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4893,7 +4727,7 @@ color: #212529; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-megamenu-panel { @@ -4951,10 +4785,9 @@ color: rgba(0, 0, 0, 0.7); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.7); } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -4991,7 +4824,7 @@ color: #212529; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5005,7 +4838,7 @@ color: #212529; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5016,7 +4849,7 @@ color: #212529; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu.p-menu-overlay { @@ -5050,7 +4883,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem 1rem; background: #efefef; @@ -5089,7 +4921,7 @@ color: rgba(0, 0, 0, 0.7); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.7); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5120,7 +4952,7 @@ color: #212529; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5134,7 +4966,7 @@ color: #212529; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5145,7 +4977,7 @@ color: #212529; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-submenu-list { @@ -5162,7 +4994,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5337,7 +5168,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5351,7 +5182,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5362,7 +5193,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5402,7 +5233,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5445,7 +5275,7 @@ color: #212529; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5459,7 +5289,7 @@ color: #212529; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5470,7 +5300,7 @@ color: #212529; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu.p-slidemenu-overlay { @@ -5517,7 +5347,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.15s; @@ -5562,7 +5391,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #dee2e6; @@ -5633,7 +5461,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5684,7 +5511,7 @@ color: #212529; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5698,7 +5525,7 @@ color: #212529; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5709,7 +5536,7 @@ color: #212529; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem-separator { @@ -5723,7 +5550,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.75rem; margin: 0; @@ -5779,7 +5605,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5868,7 +5693,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5919,7 +5743,7 @@ color: #004085; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #004085; } .p-toast .p-toast-message.p-toast-message-success { @@ -5929,7 +5753,7 @@ color: #155724; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #155724; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5939,7 +5763,7 @@ color: #856404; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #856404; } .p-toast .p-toast-message.p-toast-message-error { @@ -5949,10 +5773,9 @@ color: #721c24; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #721c24; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5983,7 +5806,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6040,7 +5863,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #efefef; @@ -6050,7 +5873,7 @@ border-radius: 4px; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #efefef; } @@ -6059,29 +5882,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: box-shadow 0.15s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6105,7 +5922,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 4px; @@ -6126,11 +5942,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #883cae; color: #ffffff; @@ -6172,7 +5986,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #212529; @@ -6208,7 +6021,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.75rem; border-radius: 4px; @@ -6223,7 +6035,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6239,7 +6050,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6261,7 +6071,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e9ecef; border-radius: 4px; @@ -6269,7 +6078,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #883cae; color: #ffffff; @@ -6302,7 +6110,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #212529; diff --git a/src/assets/components/themes/fluent-light/theme.css b/src/assets/components/themes/fluent-light/theme.css index 731b7ba30d5..1840df3c367 100644 --- a/src/assets/components/themes/fluent-light/theme.css +++ b/src/assets/components/themes/fluent-light/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #a4252c; } - .p-text-secondary { color: #605e5c; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #a4252c; } - .p-autocomplete-panel { background: #ffffff; color: #323130; @@ -440,11 +427,9 @@ color: #323130; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #a4252c; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: #605e5c; right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #605e5c; right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #a4252c; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; border-color: #0078d4; } - .p-datepicker { padding: 0.75rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 2px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #605e5c; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #605e5c; border-color: transparent; background: #f3f2f1; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #323130; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #0078d4; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: #605e5c; right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #605e5c; right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #a4252c; } - .p-cascadeselect-panel { background: #ffffff; color: #323130; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #faf9f8; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #faf9f8; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #a4252c; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: #605e5c; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #005a9e; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a4252c; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #faf9f8; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005a9e; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a4252c; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #323130; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #a4252c; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: #605e5c; right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: rgba(0, 0, 0, 0.133) 0px 3.2px 7.2px 0px, rgba(0, 0, 0, 0.11) 0px 0.6px 1.8px 0px; } - .p-dropdown { background: #ffffff; border: 1px solid #605e5c; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #a4252c; } - .p-dropdown-panel { background: #ffffff; color: #323130; @@ -1047,7 +1007,6 @@ color: #323130; background: transparent; } - .p-input-filled .p-dropdown { background: #faf9f8; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #a4252c; } - .p-inputgroup-addon { background: #f3f2f1; color: #605e5c; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #605e5c; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #a4252c; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: #605e5c; right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #a4252c; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: #605e5c; right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #005a9e; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #a4252c; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: #605e5c; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #a4252c; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: #605e5c; } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: #605e5c; } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: #605e5c; } - :-moz-placeholder { color: #605e5c; } - ::-moz-placeholder { color: #605e5c; } - :-ms-input-placeholder { color: #605e5c; } - .p-input-filled .p-inputtext { background-color: #faf9f8; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #faf9f8; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #ffffff; color: #323130; @@ -1386,11 +1314,9 @@ box-shadow: inset 0 0 0 1px #605e5c; border-color: #0078d4; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #a4252c; } - .p-multiselect { background: #ffffff; border: 1px solid #605e5c; @@ -1430,11 +1356,9 @@ border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: #605e5c; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #323130; @@ -1531,7 +1454,6 @@ color: #323130; background: transparent; } - .p-input-filled .p-multiselect { background: #faf9f8; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #faf9f8; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #a4252c; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #a4252c; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #498205; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: #605e5c; right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: #605e5c; right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #ffffff; color: #005a9e; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #a4252c; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #faf9f8; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffffff; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #a4252c; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #605e5c; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #605e5c; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #323130; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #605e5c; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #323130; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #323130; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #323130; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #323130; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #a4252c; } - .p-slider { background: #c8c6c4; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #605e5c; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #605e5c; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #323130; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #605e5c; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #323130; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #323130; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #323130; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #323130; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #a4252c; } - .p-treeselect { background: #ffffff; border: 1px solid #605e5c; @@ -1850,15 +1756,12 @@ border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #a4252c; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #ffffff; color: #323130; @@ -1918,7 +1821,6 @@ color: #323130; background: transparent; } - .p-input-filled .p-treeselect { background: #faf9f8; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #faf9f8; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: #605e5c; right: 2.357rem; } - .p-button { color: #ffffff; background: #0078d4; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #d45c00; border: 1px solid #d45c00; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #bf5300; color: #ffffff; border-color: #bf5300; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffbc88; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #aa4a00; color: #ffffff; border-color: #aa4a00; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #d45c00; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(212, 92, 0, 0.04); color: #d45c00; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(212, 92, 0, 0.16); color: #d45c00; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #d45c00; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(212, 92, 0, 0.04); border-color: transparent; color: #d45c00; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(212, 92, 0, 0.16); border-color: transparent; color: #d45c00; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #00b7c3; border: 1px solid #00b7c3; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #00a5b0; color: #ffffff; border-color: #00a5b0; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #81f7ff; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #00929c; color: #ffffff; border-color: #00929c; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #00b7c3; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(0, 183, 195, 0.04); color: #00b7c3; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(0, 183, 195, 0.16); color: #00b7c3; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #00b7c3; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(0, 183, 195, 0.04); border-color: transparent; color: #00b7c3; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(0, 183, 195, 0.16); border-color: transparent; color: #00b7c3; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #498205; border: 1px solid #498205; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #427505; color: #ffffff; border-color: #427505; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #baf96f; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #3a6804; color: #ffffff; border-color: #3a6804; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #498205; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(73, 130, 5, 0.04); color: #498205; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(73, 130, 5, 0.16); color: #498205; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #498205; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(73, 130, 5, 0.04); border-color: transparent; color: #498205; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(73, 130, 5, 0.16); border-color: transparent; color: #498205; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #323130; background: #ffaa44; border: 1px solid #ffaa44; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ff9b24; color: #323130; border-color: #ff9b24; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffddb4; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ff8d03; color: #323130; border-color: #ff8d03; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffaa44; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 170, 68, 0.04); color: #ffaa44; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 170, 68, 0.16); color: #ffaa44; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffaa44; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 170, 68, 0.04); border-color: transparent; color: #ffaa44; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 170, 68, 0.16); border-color: transparent; color: #ffaa44; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #8378de; border: 1px solid #8378de; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #6a5dd7; color: #ffffff; border-color: #6a5dd7; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #cdc9f2; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #5141d1; color: #ffffff; border-color: #5141d1; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #8378de; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(131, 120, 222, 0.04); color: #8378de; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(131, 120, 222, 0.16); color: #8378de; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #8378de; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(131, 120, 222, 0.04); border-color: transparent; color: #8378de; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(131, 120, 222, 0.16); border-color: transparent; color: #8378de; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d13438; border: 1px solid #d13438; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c02b2f; color: #ffffff; border-color: #c02b2f; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #edaeaf; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #aa272a; color: #ffffff; border-color: #aa272a; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d13438; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(209, 52, 56, 0.04); color: #d13438; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(209, 52, 56, 0.16); color: #d13438; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d13438; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(209, 52, 56, 0.04); border-color: transparent; color: #d13438; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(209, 52, 56, 0.16); border-color: transparent; color: #d13438; } - .p-button.p-button-link { color: #0078d4; background: transparent; @@ -2526,7 +2418,6 @@ color: #0078d4; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #605e5c; color: #ffffff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 2px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #d45c00; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #d45c00; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #00b7c3; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #00b7c3; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #498205; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #498205; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffaa44; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffaa44; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #8378de; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #8378de; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d13438; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #d13438; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #605e5c; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #605e5c; border-color: transparent; background: #f3f2f1; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; @@ -2901,7 +2775,6 @@ background: #edebe9; color: #323130; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 0.75rem 0.75rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #605e5c; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #605e5c; border-color: transparent; background: #f3f2f1; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; @@ -3047,12 +2920,12 @@ background: #0078d4; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #faf9f8; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.9375rem 0.9375rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-column-filter-overlay { background: #ffffff; color: #323130; @@ -3285,7 +3153,6 @@ border-top: 1px solid #edebe9; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 0.5rem; border-bottom: 1px solid #edebe9; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f3f2f1; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 0.5rem; box-shadow: rgba(0, 0, 0, 0.133) 0px 3.2px 7.2px 0px, rgba(0, 0, 0, 0.11) 0px 0.6px 1.8px 0px; @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f3f2f1; color: #323130; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-paginator { background: #ffffff; color: #605e5c; @@ -3458,9 +3321,9 @@ border-radius: 2px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #605e5c; @@ -3471,9 +3334,9 @@ border-radius: 2px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f3f2f1; border-color: transparent; color: #323130; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #323130; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f3f2f1; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 0.5rem; box-shadow: rgba(0, 0, 0, 0.133) 0px 3.2px 7.2px 0px, rgba(0, 0, 0, 0.11) 0px 0.6px 1.8px 0px; @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #a19f9d; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #a19f9d; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #323130; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #323130; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #323130; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #0078d4; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #faf9f8; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.9375rem 0.9375rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: #323130; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #a19f9d; @@ -4059,7 +3915,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #ffffff; color: #323130; @@ -4085,7 +3940,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4109,7 +3963,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #a19f9d; background: #ffffff; @@ -4150,7 +4003,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #a19f9d; padding: 1rem; @@ -4217,7 +4069,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f3f2f1; border: 0 none; @@ -4228,7 +4079,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-splitter { border: 1px solid #a19f9d; background: #ffffff; @@ -4250,7 +4100,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #edebe9; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4319,7 +4168,6 @@ border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } - .p-toolbar { background: #faf9f8; border: 1px solid #a19f9d; @@ -4330,7 +4178,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #323130; @@ -4378,7 +4225,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.133) 0px 6.4px 14.4px 0px, rgba(0, 0, 0, 0.11) 0px 1.2px 3.6px 0px; @@ -4451,7 +4297,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #323130; @@ -4493,7 +4338,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #323130; @@ -4504,7 +4348,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #605e5c; @@ -4514,13 +4358,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #605e5c; border-color: transparent; background: #f3f2f1; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; @@ -4534,7 +4378,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #ffffff; color: #323130; @@ -4554,7 +4397,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #ffffff; } - .p-fileupload .p-fileupload-buttonbar { background: #faf9f8; padding: 1rem; @@ -4594,7 +4436,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #106ebe; color: #ffffff; @@ -4605,7 +4446,6 @@ color: #ffffff; border-color: #005a9e; } - .p-breadcrumb { background: #ffffff; border: 1px solid #eeeeee; @@ -4637,7 +4477,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #0078d4; } - .p-contextmenu { padding: 0; background: #ffffff; @@ -4685,7 +4524,7 @@ color: #323130; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4699,7 +4538,7 @@ color: #323130; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4710,7 +4549,7 @@ color: #323130; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-contextmenu .p-menuitem-separator { @@ -4724,7 +4563,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4748,32 +4586,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4832,7 +4669,7 @@ color: #323130; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4846,7 +4683,7 @@ color: #323130; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4857,7 +4694,7 @@ color: #323130; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-megamenu .p-megamenu-panel { @@ -4915,10 +4752,9 @@ color: #323130; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } - .p-menu { padding: 0; background: #ffffff; @@ -4955,7 +4791,7 @@ color: #323130; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4969,7 +4805,7 @@ color: #323130; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4980,7 +4816,7 @@ color: #323130; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-menu.p-menu-overlay { @@ -5014,7 +4850,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #ffffff; @@ -5053,7 +4888,7 @@ color: #323130; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5084,7 +4919,7 @@ color: #323130; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5098,7 +4933,7 @@ color: #323130; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5109,7 +4944,7 @@ color: #323130; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-menubar .p-submenu-list { @@ -5126,7 +4961,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5301,7 +5135,7 @@ color: #323130; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5315,7 +5149,7 @@ color: #323130; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5326,7 +5160,7 @@ color: #323130; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5342,7 +5176,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0; background: #ffffff; @@ -5385,7 +5218,7 @@ color: #323130; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5399,7 +5232,7 @@ color: #323130; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5410,7 +5243,7 @@ color: #323130; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-slidemenu.p-slidemenu-overlay { @@ -5457,7 +5290,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5502,7 +5334,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 0 none; @@ -5573,7 +5404,6 @@ outline-offset: 0; box-shadow: inset inset 0 0 0 1px #605e5c; } - .p-tieredmenu { padding: 0; background: #ffffff; @@ -5624,7 +5454,7 @@ color: #323130; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5638,7 +5468,7 @@ color: #323130; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #323130; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5649,7 +5479,7 @@ color: #323130; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #0078d4; } .p-tieredmenu .p-menuitem-separator { @@ -5663,7 +5493,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5719,7 +5548,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 2px; @@ -5808,7 +5636,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5859,7 +5686,7 @@ color: #323130; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #605e5c; } .p-toast .p-toast-message.p-toast-message-success { @@ -5869,7 +5696,7 @@ color: #323130; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #107c10; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5879,7 +5706,7 @@ color: #323130; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #797775; } .p-toast .p-toast-message.p-toast-message-error { @@ -5889,10 +5716,9 @@ color: #323130; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #a80000; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5923,7 +5749,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5980,7 +5806,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #faf9f8; @@ -5990,7 +5816,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #faf9f8; } @@ -5999,29 +5825,23 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6045,7 +5865,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #edebe9; border-radius: 2px; @@ -6066,11 +5885,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #0078d4; color: #ffffff; @@ -6112,7 +5929,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #edebe9; color: #323130; @@ -6148,7 +5964,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 2px; @@ -6163,7 +5978,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #605e5c; } - .p-progressbar { border: 0 none; height: 2px; @@ -6179,7 +5993,6 @@ color: #ffffff; line-height: 2px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6201,7 +6014,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #edebe9; border-radius: 2px; @@ -6209,7 +6021,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #0078d4; color: #ffffff; @@ -6242,7 +6053,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #323130; @@ -6260,7 +6070,6 @@ .p-button-label { font-weight: 600; } - .p-slider:not(.p-disabled):hover { background-color: #deecf9; } @@ -6270,7 +6079,6 @@ .p-slider:not(.p-disabled):hover .p-slider-handle { border-color: #005a9e; } - .p-inputswitch { width: 40px; height: 20px; @@ -6298,7 +6106,6 @@ .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { border-color: #0078d4; } - .p-datepicker .p-datepicker-header .p-datepicker-title { order: 1; margin: 0 auto 0 0; @@ -6351,53 +6158,42 @@ .p-datepicker .p-monthpicker .p-monthpicker-month { padding: 0.5rem 0; } - .p-datatable { font-size: 90%; } - .p-toast { font-size: 90%; } .p-toast .p-toast-icon-close-icon { font-size: 90%; } - .p-message { font-size: 90%; } .p-message .p-message-close .p-message-close-icon { font-size: 90%; } - .p-tooltip .p-tooltip-text { font-size: 90%; } - .p-component .p-menu-separator { border-color: #eeeeee; } - .p-submenu-icon { color: #605e5c !important; } - .p-menuitem-active .p-submenu-icon { color: #323130 !important; } - .p-progressbar-label { display: none !important; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #0078d4; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #0078d4; } - .p-inputtext:disabled { background-color: #f3f2f1; border-color: #f3f2f1; @@ -6408,11 +6204,10 @@ .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #0078d4; } - .p-checkbox .p-checkbox-box.p-disabled, -.p-radiobutton .p-radiobutton-box.p-disabled, -.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container.p-disabled, -.p-chips .p-chips-multiple-container.p-disabled { + .p-radiobutton .p-radiobutton-box.p-disabled, + .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container.p-disabled, + .p-chips .p-chips-multiple-container.p-disabled { background-color: #f3f2f1; border-color: #f3f2f1; color: #a19f9d; @@ -6420,14 +6215,13 @@ user-select: none; } .p-checkbox .p-checkbox-box:not(.p-disabled).p-focus, -.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus, -.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled).p-focus, -.p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { + .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus, + .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled).p-focus, + .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #0078d4; } - .p-dropdown.p-disabled, -.p-multiselect.p-disabled { + .p-multiselect.p-disabled { background-color: #f3f2f1; border-color: #f3f2f1; color: #a19f9d; @@ -6435,22 +6229,20 @@ user-select: none; } .p-dropdown.p-disabled .p-dropdown-label, -.p-dropdown.p-disabled .p-dropdown-trigger-icon, -.p-multiselect.p-disabled .p-dropdown-label, -.p-multiselect.p-disabled .p-dropdown-trigger-icon { + .p-dropdown.p-disabled .p-dropdown-trigger-icon, + .p-multiselect.p-disabled .p-dropdown-label, + .p-multiselect.p-disabled .p-dropdown-trigger-icon { color: #a19f9d; } .p-dropdown:not(.p-disabled).p-focus, -.p-multiselect:not(.p-disabled).p-focus { + .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #0078d4; } - .p-inputswitch.p-focus .p-inputswitch-slider { box-shadow: none; outline: 1px solid #605e5c; outline-offset: 2px; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #0078d4; } diff --git a/src/assets/components/themes/lara-dark-blue/theme.css b/src/assets/components/themes/lara-dark-blue/theme.css index 06e494801ad..50c8d77fcc3 100644 --- a/src/assets/components/themes/lara-dark-blue/theme.css +++ b/src/assets/components/themes/lara-dark-blue/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #fca5a5; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #fca5a5; } - .p-autocomplete-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -457,11 +444,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #fca5a5; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #fca5a5; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); border-color: #60a5fa; } - .p-datepicker { padding: 0.5rem; background: #1f2937; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #60a5fa; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #fca5a5; } - .p-cascadeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #424b57; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #fca5a5; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #bfdbfe; color: #030712; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #424b57; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #bfdbfe; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #60a5fa; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #fca5a5; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2937; border: 1px solid #424b57; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #111827; border: 1px solid #424b57; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #fca5a5; } - .p-dropdown-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1064,7 +1024,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #424b57; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #fca5a5; } - .p-inputgroup-addon { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #424b57; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #fca5a5; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #fca5a5; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #93c5fd; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #fca5a5; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #fca5a5; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #424b57; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #424b57; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); border-color: #60a5fa; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #fca5a5; } - .p-multiselect { background: #111827; border: 1px solid #424b57; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-multiselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1548,7 +1471,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #424b57; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #fca5a5; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #fca5a5; } - .p-password-panel { padding: 1.25rem; background: #1f2937; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #93deac; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #bfdbfe; color: #030712; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #fca5a5; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #424b57; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #bfdbfe; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2937; border: 1px solid #424b57; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #030712; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #030712; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #030712; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #fca5a5; } - .p-slider { background: #424b57; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2937; border: 1px solid #424b57; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #030712; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #030712; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #030712; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #fca5a5; } - .p-treeselect { background: #111827; border: 1px solid #424b57; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #fca5a5; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1935,7 +1838,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #424b57; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { color: #030712; background: #60a5fa; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #020617; background: #94a3b8; border: 1px solid #94a3b8; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #cbd5e1; color: #020617; border-color: #cbd5e1; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b4bfcd; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #e2e8f0; color: #020617; border-color: #e2e8f0; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(148, 163, 184, 0.16); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #94a3b8; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); border-color: transparent; color: #94a3b8; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(148, 163, 184, 0.16); border-color: transparent; color: #94a3b8; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #082f49; background: #38bdf8; border: 1px solid #38bdf8; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #7dd3fc; color: #082f49; border-color: #7dd3fc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #74d1fa; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #bae6fd; color: #082f49; border-color: #bae6fd; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(56, 189, 248, 0.16); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #38bdf8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); border-color: transparent; color: #38bdf8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(56, 189, 248, 0.16); border-color: transparent; color: #38bdf8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #052e16; background: #4ade80; border: 1px solid #4ade80; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #86efac; color: #052e16; border-color: #86efac; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #80e8a6; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #bbf7d0; color: #052e16; border-color: #bbf7d0; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(74, 222, 128, 0.16); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #4ade80; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); border-color: transparent; color: #4ade80; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(74, 222, 128, 0.16); border-color: transparent; color: #4ade80; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #431407; background: #fb923c; border: 1px solid #fb923c; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fdba74; color: #431407; border-color: #fdba74; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fcb377; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #fed7aa; color: #431407; border-color: #fed7aa; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 146, 60, 0.16); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fb923c; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); border-color: transparent; color: #fb923c; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 146, 60, 0.16); border-color: transparent; color: #fb923c; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #3b0764; background: #c084fc; border: 1px solid #c084fc; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #d8b4fe; color: #3b0764; border-color: #d8b4fe; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d3a9fd; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #e9d5ff; color: #3b0764; border-color: #e9d5ff; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(192, 132, 252, 0.16); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #c084fc; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); border-color: transparent; color: #c084fc; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(192, 132, 252, 0.16); border-color: transparent; color: #c084fc; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #450a0a; background: #f87171; border: 1px solid #f87171; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #fca5a5; color: #450a0a; border-color: #fca5a5; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fa9c9c; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #fecaca; color: #450a0a; border-color: #fecaca; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(248, 113, 113, 0.16); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f87171; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); border-color: transparent; color: #f87171; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(248, 113, 113, 0.16); border-color: transparent; color: #f87171; } - .p-button.p-button-link { color: #60a5fa; background: transparent; @@ -2543,7 +2435,6 @@ color: #60a5fa; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: rgba(255, 255, 255, 0.6); color: #111827; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #94a3b8; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #94a3b8; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #38bdf8; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #38bdf8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #4ade80; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #4ade80; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fb923c; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #fb923c; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #c084fc; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #c084fc; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f87171; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #f87171; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); @@ -2918,7 +2792,6 @@ background: rgba(96, 165, 250, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); @@ -3064,12 +2937,12 @@ background: #60a5fa; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2937; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2937; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-column-filter-overlay { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -3302,7 +3170,6 @@ border-top: 1px solid #424b57; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #424b57; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3426,7 +3291,6 @@ background: #1f2937; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-paginator { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3488,9 +3351,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3547,7 +3410,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3642,7 +3503,6 @@ background: #1f2937; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #60a5fa; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #424b57; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #424b57; background: #1f2937; @@ -3724,11 +3583,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #60a5fa; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2937; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #424b57; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2937; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #424b57; background: #1f2937; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #424b57; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #424b57; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-splitter { border: 1px solid #424b57; background: #1f2937; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #424b57; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #1f2937; border: 1px solid #424b57; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #424b57; } - .p-sidebar { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #424b57; color: rgba(255, 255, 255, 0.87); @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #424b57; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2937; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #93c5fd; color: #030712; @@ -4622,7 +4463,6 @@ color: #030712; border-color: #bfdbfe; } - .p-breadcrumb { background: #374151; border: 1px solid #424b57; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #374151; @@ -4702,7 +4541,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #374151; @@ -4972,7 +4808,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #374151; @@ -5070,7 +4905,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #374151; @@ -5402,7 +5235,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #424b57; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-tieredmenu { padding: 0.25rem 0; background: #374151; @@ -5641,7 +5471,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #fde047; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #fde047; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #fca5a5; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #fca5a5; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #424b57; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2937; } - .p-badge { background: #60a5fa; color: #030712; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #424b57; color: rgba(255, 255, 255, 0.87); @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2); } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #030712; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #60a5fa; color: #030712; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -6276,32 +6086,25 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #60a5fa; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #60a5fa; } - .p-button:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(96, 165, 250, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } @@ -6323,46 +6126,37 @@ .p-button.p-button-danger:enabled:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(248, 113, 113, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #60a5fa; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #60a5fa; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #60a5fa; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #60a5fa; } - .p-speeddial-item.p-focus > .p-speeddial-action { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(96, 165, 250, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-message .p-message-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-toast .p-toast-message .p-toast-icon-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #60a5fa; color: #030712; diff --git a/src/assets/components/themes/lara-dark-indigo/theme.css b/src/assets/components/themes/lara-dark-indigo/theme.css index 6fb191d2c89..c1a24e154e7 100644 --- a/src/assets/components/themes/lara-dark-indigo/theme.css +++ b/src/assets/components/themes/lara-dark-indigo/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #fca5a5; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #fca5a5; } - .p-autocomplete-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -457,11 +444,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #fca5a5; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #fca5a5; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); border-color: #818cf8; } - .p-datepicker { padding: 0.5rem; background: #1f2937; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #818cf8; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #fca5a5; } - .p-cascadeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #424b57; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #fca5a5; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #c7d2fe; color: #030712; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #424b57; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #c7d2fe; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #818cf8; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #fca5a5; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2937; border: 1px solid #424b57; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #111827; border: 1px solid #424b57; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #fca5a5; } - .p-dropdown-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1064,7 +1024,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #424b57; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #fca5a5; } - .p-inputgroup-addon { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #424b57; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #fca5a5; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #fca5a5; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #a5b4fc; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #fca5a5; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #fca5a5; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #424b57; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #424b57; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); border-color: #818cf8; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #fca5a5; } - .p-multiselect { background: #111827; border: 1px solid #424b57; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-multiselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1548,7 +1471,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #424b57; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #fca5a5; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #fca5a5; } - .p-password-panel { padding: 1.25rem; background: #1f2937; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #93deac; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #c7d2fe; color: #030712; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #fca5a5; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #424b57; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #c7d2fe; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2937; border: 1px solid #424b57; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #030712; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #030712; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #030712; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #fca5a5; } - .p-slider { background: #424b57; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2937; border: 1px solid #424b57; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #030712; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #030712; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #030712; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #fca5a5; } - .p-treeselect { background: #111827; border: 1px solid #424b57; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #fca5a5; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1935,7 +1838,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #424b57; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { color: #030712; background: #818cf8; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #020617; background: #94a3b8; border: 1px solid #94a3b8; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #cbd5e1; color: #020617; border-color: #cbd5e1; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b4bfcd; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #e2e8f0; color: #020617; border-color: #e2e8f0; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(148, 163, 184, 0.16); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #94a3b8; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); border-color: transparent; color: #94a3b8; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(148, 163, 184, 0.16); border-color: transparent; color: #94a3b8; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #082f49; background: #38bdf8; border: 1px solid #38bdf8; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #7dd3fc; color: #082f49; border-color: #7dd3fc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #74d1fa; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #bae6fd; color: #082f49; border-color: #bae6fd; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(56, 189, 248, 0.16); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #38bdf8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); border-color: transparent; color: #38bdf8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(56, 189, 248, 0.16); border-color: transparent; color: #38bdf8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #052e16; background: #4ade80; border: 1px solid #4ade80; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #86efac; color: #052e16; border-color: #86efac; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #80e8a6; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #bbf7d0; color: #052e16; border-color: #bbf7d0; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(74, 222, 128, 0.16); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #4ade80; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); border-color: transparent; color: #4ade80; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(74, 222, 128, 0.16); border-color: transparent; color: #4ade80; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #431407; background: #fb923c; border: 1px solid #fb923c; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fdba74; color: #431407; border-color: #fdba74; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fcb377; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #fed7aa; color: #431407; border-color: #fed7aa; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 146, 60, 0.16); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fb923c; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); border-color: transparent; color: #fb923c; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 146, 60, 0.16); border-color: transparent; color: #fb923c; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #3b0764; background: #c084fc; border: 1px solid #c084fc; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #d8b4fe; color: #3b0764; border-color: #d8b4fe; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d3a9fd; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #e9d5ff; color: #3b0764; border-color: #e9d5ff; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(192, 132, 252, 0.16); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #c084fc; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); border-color: transparent; color: #c084fc; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(192, 132, 252, 0.16); border-color: transparent; color: #c084fc; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #450a0a; background: #f87171; border: 1px solid #f87171; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #fca5a5; color: #450a0a; border-color: #fca5a5; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fa9c9c; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #fecaca; color: #450a0a; border-color: #fecaca; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(248, 113, 113, 0.16); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f87171; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); border-color: transparent; color: #f87171; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(248, 113, 113, 0.16); border-color: transparent; color: #f87171; } - .p-button.p-button-link { color: #818cf8; background: transparent; @@ -2543,7 +2435,6 @@ color: #818cf8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: rgba(255, 255, 255, 0.6); color: #111827; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #94a3b8; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #94a3b8; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #38bdf8; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #38bdf8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #4ade80; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #4ade80; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fb923c; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #fb923c; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #c084fc; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #c084fc; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f87171; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #f87171; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); @@ -2918,7 +2792,6 @@ background: rgba(129, 140, 248, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); @@ -3064,12 +2937,12 @@ background: #818cf8; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2937; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2937; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-column-filter-overlay { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -3302,7 +3170,6 @@ border-top: 1px solid #424b57; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #424b57; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3426,7 +3291,6 @@ background: #1f2937; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-paginator { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3488,9 +3351,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3547,7 +3410,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3642,7 +3503,6 @@ background: #1f2937; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #818cf8; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #424b57; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #424b57; background: #1f2937; @@ -3724,11 +3583,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #818cf8; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2937; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #424b57; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2937; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #424b57; background: #1f2937; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #424b57; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #424b57; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-splitter { border: 1px solid #424b57; background: #1f2937; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #424b57; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #1f2937; border: 1px solid #424b57; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #424b57; } - .p-sidebar { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #424b57; color: rgba(255, 255, 255, 0.87); @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #424b57; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2937; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #a5b4fc; color: #030712; @@ -4622,7 +4463,6 @@ color: #030712; border-color: #c7d2fe; } - .p-breadcrumb { background: #374151; border: 1px solid #424b57; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #374151; @@ -4702,7 +4541,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #374151; @@ -4972,7 +4808,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #374151; @@ -5070,7 +4905,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #374151; @@ -5402,7 +5235,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #424b57; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-tieredmenu { padding: 0.25rem 0; background: #374151; @@ -5641,7 +5471,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #fde047; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #fde047; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #fca5a5; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #fca5a5; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #424b57; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2937; } - .p-badge { background: #818cf8; color: #030712; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #424b57; color: rgba(255, 255, 255, 0.87); @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2); } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #030712; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #818cf8; color: #030712; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -6276,32 +6086,25 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #818cf8; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #818cf8; } - .p-button:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(129, 140, 248, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } @@ -6323,46 +6126,37 @@ .p-button.p-button-danger:enabled:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(248, 113, 113, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #818cf8; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #818cf8; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #818cf8; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #818cf8; } - .p-speeddial-item.p-focus > .p-speeddial-action { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(129, 140, 248, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-message .p-message-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-toast .p-toast-message .p-toast-icon-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #818cf8; color: #030712; diff --git a/src/assets/components/themes/lara-dark-purple/theme.css b/src/assets/components/themes/lara-dark-purple/theme.css index 278966af800..4f483ad2299 100644 --- a/src/assets/components/themes/lara-dark-purple/theme.css +++ b/src/assets/components/themes/lara-dark-purple/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #fca5a5; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #fca5a5; } - .p-autocomplete-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -457,11 +444,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #fca5a5; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #fca5a5; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); border-color: #a78bfa; } - .p-datepicker { padding: 0.5rem; background: #1f2937; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #a78bfa; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #fca5a5; } - .p-cascadeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #424b57; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #fca5a5; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #ddd6fe; color: #030712; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #424b57; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #ddd6fe; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #a78bfa; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #fca5a5; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2937; border: 1px solid #424b57; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #111827; border: 1px solid #424b57; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #fca5a5; } - .p-dropdown-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1064,7 +1024,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #424b57; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #fca5a5; } - .p-inputgroup-addon { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #424b57; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #fca5a5; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #fca5a5; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #c4b5fd; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #fca5a5; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #fca5a5; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #424b57; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #424b57; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); border-color: #a78bfa; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #fca5a5; } - .p-multiselect { background: #111827; border: 1px solid #424b57; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-multiselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1548,7 +1471,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #424b57; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #fca5a5; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #fca5a5; } - .p-password-panel { padding: 1.25rem; background: #1f2937; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #93deac; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #ddd6fe; color: #030712; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #fca5a5; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #424b57; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ddd6fe; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2937; border: 1px solid #424b57; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #030712; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #030712; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #030712; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #fca5a5; } - .p-slider { background: #424b57; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2937; border: 1px solid #424b57; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #030712; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #030712; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #030712; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #fca5a5; } - .p-treeselect { background: #111827; border: 1px solid #424b57; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #fca5a5; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1935,7 +1838,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #424b57; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { color: #030712; background: #a78bfa; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #020617; background: #94a3b8; border: 1px solid #94a3b8; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #cbd5e1; color: #020617; border-color: #cbd5e1; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b4bfcd; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #e2e8f0; color: #020617; border-color: #e2e8f0; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(148, 163, 184, 0.16); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #94a3b8; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); border-color: transparent; color: #94a3b8; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(148, 163, 184, 0.16); border-color: transparent; color: #94a3b8; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #082f49; background: #38bdf8; border: 1px solid #38bdf8; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #7dd3fc; color: #082f49; border-color: #7dd3fc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #74d1fa; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #bae6fd; color: #082f49; border-color: #bae6fd; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(56, 189, 248, 0.16); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #38bdf8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); border-color: transparent; color: #38bdf8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(56, 189, 248, 0.16); border-color: transparent; color: #38bdf8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #052e16; background: #4ade80; border: 1px solid #4ade80; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #86efac; color: #052e16; border-color: #86efac; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #80e8a6; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #bbf7d0; color: #052e16; border-color: #bbf7d0; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(74, 222, 128, 0.16); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #4ade80; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); border-color: transparent; color: #4ade80; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(74, 222, 128, 0.16); border-color: transparent; color: #4ade80; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #431407; background: #fb923c; border: 1px solid #fb923c; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fdba74; color: #431407; border-color: #fdba74; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fcb377; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #fed7aa; color: #431407; border-color: #fed7aa; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 146, 60, 0.16); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fb923c; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); border-color: transparent; color: #fb923c; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 146, 60, 0.16); border-color: transparent; color: #fb923c; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #3b0764; background: #c084fc; border: 1px solid #c084fc; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #d8b4fe; color: #3b0764; border-color: #d8b4fe; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d3a9fd; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #e9d5ff; color: #3b0764; border-color: #e9d5ff; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(192, 132, 252, 0.16); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #c084fc; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); border-color: transparent; color: #c084fc; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(192, 132, 252, 0.16); border-color: transparent; color: #c084fc; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #450a0a; background: #f87171; border: 1px solid #f87171; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #fca5a5; color: #450a0a; border-color: #fca5a5; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fa9c9c; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #fecaca; color: #450a0a; border-color: #fecaca; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(248, 113, 113, 0.16); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f87171; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); border-color: transparent; color: #f87171; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(248, 113, 113, 0.16); border-color: transparent; color: #f87171; } - .p-button.p-button-link { color: #a78bfa; background: transparent; @@ -2543,7 +2435,6 @@ color: #a78bfa; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: rgba(255, 255, 255, 0.6); color: #111827; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #94a3b8; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #94a3b8; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #38bdf8; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #38bdf8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #4ade80; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #4ade80; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fb923c; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #fb923c; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #c084fc; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #c084fc; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f87171; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #f87171; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); @@ -2918,7 +2792,6 @@ background: rgba(167, 139, 250, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); @@ -3064,12 +2937,12 @@ background: #a78bfa; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2937; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2937; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-column-filter-overlay { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -3302,7 +3170,6 @@ border-top: 1px solid #424b57; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #424b57; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3426,7 +3291,6 @@ background: #1f2937; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-paginator { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3488,9 +3351,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3547,7 +3410,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3642,7 +3503,6 @@ background: #1f2937; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #a78bfa; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #424b57; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #424b57; background: #1f2937; @@ -3724,11 +3583,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #a78bfa; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2937; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #424b57; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2937; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #424b57; background: #1f2937; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #424b57; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #424b57; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-splitter { border: 1px solid #424b57; background: #1f2937; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #424b57; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #1f2937; border: 1px solid #424b57; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #424b57; } - .p-sidebar { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #424b57; color: rgba(255, 255, 255, 0.87); @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #424b57; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2937; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #c4b5fd; color: #030712; @@ -4622,7 +4463,6 @@ color: #030712; border-color: #ddd6fe; } - .p-breadcrumb { background: #374151; border: 1px solid #424b57; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #374151; @@ -4702,7 +4541,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #374151; @@ -4972,7 +4808,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #374151; @@ -5070,7 +4905,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #374151; @@ -5402,7 +5235,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #424b57; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-tieredmenu { padding: 0.25rem 0; background: #374151; @@ -5641,7 +5471,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #fde047; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #fde047; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #fca5a5; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #fca5a5; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #424b57; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2937; } - .p-badge { background: #a78bfa; color: #030712; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #424b57; color: rgba(255, 255, 255, 0.87); @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2); } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #030712; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #a78bfa; color: #030712; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -6276,32 +6086,25 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #a78bfa; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #a78bfa; } - .p-button:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(167, 139, 250, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } @@ -6323,46 +6126,37 @@ .p-button.p-button-danger:enabled:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(248, 113, 113, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #a78bfa; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #a78bfa; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #a78bfa; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #a78bfa; } - .p-speeddial-item.p-focus > .p-speeddial-action { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(167, 139, 250, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-message .p-message-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-toast .p-toast-message .p-toast-icon-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #a78bfa; color: #030712; diff --git a/src/assets/components/themes/lara-dark-teal/theme.css b/src/assets/components/themes/lara-dark-teal/theme.css index 8118d1b873b..a474e6321e4 100644 --- a/src/assets/components/themes/lara-dark-teal/theme.css +++ b/src/assets/components/themes/lara-dark-teal/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #fca5a5; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #fca5a5; } - .p-autocomplete-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -457,11 +444,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #fca5a5; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #fca5a5; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); border-color: #2dd4bf; } - .p-datepicker { padding: 0.5rem; background: #1f2937; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #2dd4bf; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #fca5a5; } - .p-cascadeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #424b57; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #fca5a5; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #99f6e4; color: #030712; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #424b57; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #99f6e4; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #fca5a5; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #2dd4bf; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #fca5a5; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2937; border: 1px solid #424b57; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #111827; border: 1px solid #424b57; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #fca5a5; } - .p-dropdown-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1064,7 +1024,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #424b57; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #fca5a5; } - .p-inputgroup-addon { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #424b57; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #fca5a5; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #fca5a5; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #5eead4; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #fca5a5; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #fca5a5; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #424b57; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #424b57; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); border-color: #2dd4bf; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #fca5a5; } - .p-multiselect { background: #111827; border: 1px solid #424b57; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-multiselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1548,7 +1471,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #424b57; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #fca5a5; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #fca5a5; } - .p-password-panel { padding: 1.25rem; background: #1f2937; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #93deac; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #99f6e4; color: #030712; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #fca5a5; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #424b57; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #99f6e4; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2937; border: 1px solid #424b57; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #030712; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #030712; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #030712; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #fca5a5; } - .p-slider { background: #424b57; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2937; border: 1px solid #424b57; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #030712; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #030712; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #030712; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #030712; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #fca5a5; } - .p-treeselect { background: #111827; border: 1px solid #424b57; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #fca5a5; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -1935,7 +1838,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #424b57; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #424b57; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { color: #030712; background: #2dd4bf; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #020617; background: #94a3b8; border: 1px solid #94a3b8; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #cbd5e1; color: #020617; border-color: #cbd5e1; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b4bfcd; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #e2e8f0; color: #020617; border-color: #e2e8f0; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(148, 163, 184, 0.16); color: #94a3b8; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #94a3b8; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(148, 163, 184, 0.04); border-color: transparent; color: #94a3b8; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(148, 163, 184, 0.16); border-color: transparent; color: #94a3b8; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #082f49; background: #38bdf8; border: 1px solid #38bdf8; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #7dd3fc; color: #082f49; border-color: #7dd3fc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #74d1fa; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #bae6fd; color: #082f49; border-color: #bae6fd; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(56, 189, 248, 0.16); color: #38bdf8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #38bdf8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(56, 189, 248, 0.04); border-color: transparent; color: #38bdf8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(56, 189, 248, 0.16); border-color: transparent; color: #38bdf8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #052e16; background: #4ade80; border: 1px solid #4ade80; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #86efac; color: #052e16; border-color: #86efac; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #80e8a6; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #bbf7d0; color: #052e16; border-color: #bbf7d0; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(74, 222, 128, 0.16); color: #4ade80; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #4ade80; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(74, 222, 128, 0.04); border-color: transparent; color: #4ade80; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(74, 222, 128, 0.16); border-color: transparent; color: #4ade80; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #431407; background: #fb923c; border: 1px solid #fb923c; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fdba74; color: #431407; border-color: #fdba74; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fcb377; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #fed7aa; color: #431407; border-color: #fed7aa; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 146, 60, 0.16); color: #fb923c; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fb923c; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 146, 60, 0.04); border-color: transparent; color: #fb923c; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 146, 60, 0.16); border-color: transparent; color: #fb923c; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #3b0764; background: #c084fc; border: 1px solid #c084fc; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #d8b4fe; color: #3b0764; border-color: #d8b4fe; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d3a9fd; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #e9d5ff; color: #3b0764; border-color: #e9d5ff; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(192, 132, 252, 0.16); color: #c084fc; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #c084fc; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(192, 132, 252, 0.04); border-color: transparent; color: #c084fc; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(192, 132, 252, 0.16); border-color: transparent; color: #c084fc; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #450a0a; background: #f87171; border: 1px solid #f87171; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #fca5a5; color: #450a0a; border-color: #fca5a5; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fa9c9c; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #fecaca; color: #450a0a; border-color: #fecaca; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(248, 113, 113, 0.16); color: #f87171; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f87171; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(248, 113, 113, 0.04); border-color: transparent; color: #f87171; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(248, 113, 113, 0.16); border-color: transparent; color: #f87171; } - .p-button.p-button-link { color: #2dd4bf; background: transparent; @@ -2543,7 +2435,6 @@ color: #2dd4bf; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: rgba(255, 255, 255, 0.6); color: #111827; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #94a3b8; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #94a3b8; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #38bdf8; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #38bdf8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #4ade80; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #4ade80; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fb923c; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #fb923c; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #c084fc; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #c084fc; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f87171; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #f87171; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); @@ -2918,7 +2792,6 @@ background: rgba(45, 212, 191, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); @@ -3064,12 +2937,12 @@ background: #2dd4bf; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2937; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2937; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-column-filter-overlay { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -3302,7 +3170,6 @@ border-top: 1px solid #424b57; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #424b57; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3426,7 +3291,6 @@ background: #1f2937; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-paginator { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3488,9 +3351,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3547,7 +3410,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3642,7 +3503,6 @@ background: #1f2937; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #2dd4bf; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #424b57; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #424b57; background: #1f2937; @@ -3724,11 +3583,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #2dd4bf; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2937; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2937; color: rgba(255, 255, 255, 0.6); @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #424b57; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2937; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #424b57; background: #1f2937; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #424b57; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #424b57; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-splitter { border: 1px solid #424b57; background: #1f2937; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #424b57; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #1f2937; border: 1px solid #424b57; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #424b57; } - .p-sidebar { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #424b57; color: rgba(255, 255, 255, 0.87); @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #424b57; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2937; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #5eead4; color: #030712; @@ -4622,7 +4463,6 @@ color: #030712; border-color: #99f6e4; } - .p-breadcrumb { background: #374151; border: 1px solid #424b57; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #374151; @@ -4702,7 +4541,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #374151; @@ -4972,7 +4808,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #374151; @@ -5070,7 +4905,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #374151; @@ -5402,7 +5235,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #424b57; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-tieredmenu { padding: 0.25rem 0; background: #374151; @@ -5641,7 +5471,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #93c5fd; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #6ee7b7; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #fde047; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #fde047; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #fca5a5; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #fca5a5; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #424b57; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2937; } - .p-badge { background: #2dd4bf; color: #030712; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #424b57; color: rgba(255, 255, 255, 0.87); @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2); } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #030712; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #2dd4bf; color: #030712; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2937; color: rgba(255, 255, 255, 0.87); @@ -6276,32 +6086,25 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #2dd4bf; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #2dd4bf; } - .p-button:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(45, 212, 191, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } @@ -6323,46 +6126,37 @@ .p-button.p-button-danger:enabled:focus { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(248, 113, 113, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #2dd4bf; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #2dd4bf; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #2dd4bf; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #2dd4bf; } - .p-speeddial-item.p-focus > .p-speeddial-action { box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(45, 212, 191, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-message .p-message-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-toast .p-toast-message .p-toast-icon-close:hover { background: rgba(255, 255, 255, 0.1); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #2dd4bf; color: #030712; diff --git a/src/assets/components/themes/lara-light-blue/theme.css b/src/assets/components/themes/lara-light-blue/theme.css index 2a62954fab8..c0f07072f96 100644 --- a/src/assets/components/themes/lara-light-blue/theme.css +++ b/src/assets/components/themes/lara-light-blue/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #e24c4c; } - .p-text-secondary { color: #6b7280; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e24c4c; } - .p-autocomplete-panel { background: #ffffff; color: #4b5563; @@ -457,11 +444,9 @@ color: #4b5563; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e24c4c; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: #6b7280; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6b7280; right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e24c4c; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; border-color: #3B82F6; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6b7280; @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #4b5563; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #3B82F6; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: #6b7280; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6b7280; right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e24c4c; } - .p-cascadeselect-panel { background: #ffffff; color: #4b5563; @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f3f4f6; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e24c4c; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: #6b7280; right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #1D4ED8; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f3f4f6; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #1D4ED8; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #3B82F6; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e24c4c; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: #6b7280; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } - .p-dropdown { background: #ffffff; border: 1px solid #d1d5db; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e24c4c; } - .p-dropdown-panel { background: #ffffff; color: #4b5563; @@ -1064,7 +1024,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-dropdown { background: #f3f4f6; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e24c4c; } - .p-inputgroup-addon { background: #f3f4f6; color: #6b7280; @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d1d5db; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e24c4c; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e24c4c; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #2563eb; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e24c4c; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #6b7280; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e24c4c; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #6b7280; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #6b7280; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #6b7280; } - :-moz-placeholder { color: #6b7280; } - ::-moz-placeholder { color: #6b7280; } - :-ms-input-placeholder { color: #6b7280; } - .p-input-filled .p-inputtext { background-color: #f3f4f6; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #4b5563; @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem #BFDBFE; border-color: #3B82F6; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e24c4c; } - .p-multiselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: #6b7280; right: 3rem; } - .p-multiselect-panel { background: #ffffff; color: #4b5563; @@ -1548,7 +1471,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-multiselect { background: #f3f4f6; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e24c4c; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e24c4c; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #29c76f; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: #6b7280; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: #6b7280; right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #1D4ED8; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e24c4c; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f3f4f6; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #1D4ED8; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #e73d3e; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6b7280; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: #4b5563; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e24c4c; } - .p-slider { background: #e5e7eb; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6b7280; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: #4b5563; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e24c4c; } - .p-treeselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e24c4c; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #4b5563; @@ -1935,7 +1838,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-treeselect { background: #f3f4f6; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: #6b7280; right: 3rem; } - .p-button { color: #ffffff; background: #3B82F6; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #64748b; border: 1px solid #64748b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #475569; color: #ffffff; border-color: #475569; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e2e8f0; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #334155; color: #ffffff; border-color: #334155; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(100, 116, 139, 0.16); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #64748b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); border-color: transparent; color: #64748b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(100, 116, 139, 0.16); border-color: transparent; color: #64748b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0ea5e9; border: 1px solid #0ea5e9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #0284c7; color: #ffffff; border-color: #0284c7; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bfdbfe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #0369a1; color: #ffffff; border-color: #0369a1; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(14, 165, 233, 0.16); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0ea5e9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); border-color: transparent; color: #0ea5e9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(14, 165, 233, 0.16); border-color: transparent; color: #0ea5e9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #22c55e; border: 1px solid #22c55e; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #16a34a; color: #ffffff; border-color: #16a34a; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bbf7d0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #15803d; color: #ffffff; border-color: #15803d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(34, 197, 94, 0.16); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #22c55e; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); border-color: transparent; color: #22c55e; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(34, 197, 94, 0.16); border-color: transparent; color: #22c55e; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #f97316; border: 1px solid #f97316; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ea580c; color: #ffffff; border-color: #ea580c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde68a; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #c2410c; color: #ffffff; border-color: #c2410c; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(249, 115, 22, 0.16); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #f97316; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); border-color: transparent; color: #f97316; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(249, 115, 22, 0.16); border-color: transparent; color: #f97316; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #a855f7; border: 1px solid #a855f7; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9333ea; color: #ffffff; border-color: #9333ea; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e9d5ff; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7e22ce; color: #ffffff; border-color: #7e22ce; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(168, 85, 247, 0.16); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #a855f7; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); border-color: transparent; color: #a855f7; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(168, 85, 247, 0.16); border-color: transparent; color: #a855f7; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #ef4444; border: 1px solid #ef4444; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #dc2626; color: #ffffff; border-color: #dc2626; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fecaca; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #b91c1c; color: #ffffff; border-color: #b91c1c; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 68, 68, 0.16); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef4444; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); border-color: transparent; color: #ef4444; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 68, 68, 0.16); border-color: transparent; color: #ef4444; } - .p-button.p-button-link { color: #1D4ED8; background: transparent; @@ -2543,7 +2435,6 @@ color: #1D4ED8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: #022354; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #64748b; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #64748b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0ea5e9; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #0ea5e9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #22c55e; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #22c55e; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #f97316; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #f97316; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #a855f7; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #a855f7; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef4444; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #ef4444; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6b7280; @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; @@ -2918,7 +2792,6 @@ background: #EFF6FF; color: #1D4ED8; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6b7280; @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; @@ -3064,12 +2937,12 @@ background: #3B82F6; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f9fafb; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f9fafb; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-column-filter-overlay { background: #ffffff; color: #4b5563; @@ -3302,7 +3170,6 @@ border-top: 1px solid #e5e7eb; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #e5e7eb; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f3f4f6; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3426,7 +3291,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f3f4f6; color: #4b5563; @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-paginator { background: #ffffff; color: #6b7280; @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6b7280; @@ -3488,9 +3351,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f3f4f6; border-color: transparent; color: #374151; @@ -3547,7 +3410,6 @@ border-color: transparent; color: #374151; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f3f4f6; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3642,7 +3503,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #3B82F6; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #e5e7eb; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e5e7eb; background: #ffffff; @@ -3724,11 +3583,11 @@ color: #1D4ED8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #1D4ED8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #1D4ED8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #3B82F6; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f9fafb; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f9fafb; color: #374151; @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #e5e7eb; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #ffffff; color: #4b5563; @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e5e7eb; background: #ffffff; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #e5e7eb; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f9fafb; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-splitter { border: 1px solid #e5e7eb; background: #ffffff; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #e5e7eb; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #f9fafb; border: 1px solid #e5e7eb; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #4b5563; @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #4b5563; @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #4b5563; @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6b7280; @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #4b5563; color: #ffffff; @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4b5563; } - .p-fileupload .p-fileupload-buttonbar { background: #f9fafb; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #2563eb; color: #ffffff; @@ -4622,7 +4463,6 @@ color: #ffffff; border-color: #1D4ED8; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e7eb; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6b7280; } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4702,7 +4541,7 @@ color: #1D4ED8; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: #1D4ED8; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: #4b5563; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -4972,7 +4808,7 @@ color: #1D4ED8; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f9fafb; @@ -5070,7 +4905,7 @@ color: #4b5563; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: #1D4ED8; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: #1D4ED8; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5402,7 +5235,7 @@ color: #1D4ED8; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #e5e7eb; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #BFDBFE; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5641,7 +5471,7 @@ color: #1D4ED8; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #1D4ED8; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #cc8925; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #cc8925; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #ff5757; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #ff5757; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f9fafb; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f9fafb; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #e5e7eb; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #3B82F6; color: #ffffff; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #e5e7eb; color: #4b5563; @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #BFDBFE; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e5e7eb; border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #3B82F6; color: #ffffff; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #4b5563; @@ -6276,78 +6086,65 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #3B82F6; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #3B82F6; } - .p-button:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #9dc1fb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #9dc1fb, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-secondary:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-success:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-info:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-warning:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-help:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-danger:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 rgb(0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #3B82F6; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #3B82F6; } - .p-speeddial-item.p-focus > .p-speeddial-action { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #9dc1fb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #9dc1fb, 0 1px 2px 0 rgb(0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #3B82F6; color: #ffffff; diff --git a/src/assets/components/themes/lara-light-indigo/theme.css b/src/assets/components/themes/lara-light-indigo/theme.css index 2974a643020..eafeb199d31 100644 --- a/src/assets/components/themes/lara-light-indigo/theme.css +++ b/src/assets/components/themes/lara-light-indigo/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #e24c4c; } - .p-text-secondary { color: #6b7280; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e24c4c; } - .p-autocomplete-panel { background: #ffffff; color: #4b5563; @@ -457,11 +444,9 @@ color: #4b5563; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e24c4c; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: #6b7280; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6b7280; right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e24c4c; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; border-color: #6366F1; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6b7280; @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #4b5563; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #6366F1; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: #6b7280; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6b7280; right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e24c4c; } - .p-cascadeselect-panel { background: #ffffff; color: #4b5563; @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f3f4f6; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e24c4c; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: #6b7280; right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #4338CA; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f3f4f6; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #4338CA; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #6366F1; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e24c4c; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: #6b7280; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } - .p-dropdown { background: #ffffff; border: 1px solid #d1d5db; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e24c4c; } - .p-dropdown-panel { background: #ffffff; color: #4b5563; @@ -1064,7 +1024,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-dropdown { background: #f3f4f6; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e24c4c; } - .p-inputgroup-addon { background: #f3f4f6; color: #6b7280; @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d1d5db; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e24c4c; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e24c4c; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #4F46E5; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e24c4c; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #6b7280; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e24c4c; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #6b7280; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #6b7280; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #6b7280; } - :-moz-placeholder { color: #6b7280; } - ::-moz-placeholder { color: #6b7280; } - :-ms-input-placeholder { color: #6b7280; } - .p-input-filled .p-inputtext { background-color: #f3f4f6; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #4b5563; @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem #C7D2FE; border-color: #6366F1; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e24c4c; } - .p-multiselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: #6b7280; right: 3rem; } - .p-multiselect-panel { background: #ffffff; color: #4b5563; @@ -1548,7 +1471,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-multiselect { background: #f3f4f6; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e24c4c; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e24c4c; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #29c76f; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: #6b7280; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: #6b7280; right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #4338CA; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e24c4c; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f3f4f6; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #4338CA; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #e73d3e; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6b7280; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: #4b5563; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e24c4c; } - .p-slider { background: #e5e7eb; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6b7280; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: #4b5563; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e24c4c; } - .p-treeselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e24c4c; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #4b5563; @@ -1935,7 +1838,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-treeselect { background: #f3f4f6; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: #6b7280; right: 3rem; } - .p-button { color: #ffffff; background: #6366F1; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #64748b; border: 1px solid #64748b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #475569; color: #ffffff; border-color: #475569; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e2e8f0; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #334155; color: #ffffff; border-color: #334155; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(100, 116, 139, 0.16); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #64748b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); border-color: transparent; color: #64748b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(100, 116, 139, 0.16); border-color: transparent; color: #64748b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0ea5e9; border: 1px solid #0ea5e9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #0284c7; color: #ffffff; border-color: #0284c7; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bfdbfe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #0369a1; color: #ffffff; border-color: #0369a1; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(14, 165, 233, 0.16); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0ea5e9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); border-color: transparent; color: #0ea5e9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(14, 165, 233, 0.16); border-color: transparent; color: #0ea5e9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #22c55e; border: 1px solid #22c55e; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #16a34a; color: #ffffff; border-color: #16a34a; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bbf7d0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #15803d; color: #ffffff; border-color: #15803d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(34, 197, 94, 0.16); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #22c55e; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); border-color: transparent; color: #22c55e; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(34, 197, 94, 0.16); border-color: transparent; color: #22c55e; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #f97316; border: 1px solid #f97316; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ea580c; color: #ffffff; border-color: #ea580c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde68a; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #c2410c; color: #ffffff; border-color: #c2410c; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(249, 115, 22, 0.16); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #f97316; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); border-color: transparent; color: #f97316; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(249, 115, 22, 0.16); border-color: transparent; color: #f97316; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #a855f7; border: 1px solid #a855f7; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9333ea; color: #ffffff; border-color: #9333ea; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e9d5ff; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7e22ce; color: #ffffff; border-color: #7e22ce; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(168, 85, 247, 0.16); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #a855f7; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); border-color: transparent; color: #a855f7; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(168, 85, 247, 0.16); border-color: transparent; color: #a855f7; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #ef4444; border: 1px solid #ef4444; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #dc2626; color: #ffffff; border-color: #dc2626; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fecaca; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #b91c1c; color: #ffffff; border-color: #b91c1c; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 68, 68, 0.16); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef4444; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); border-color: transparent; color: #ef4444; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 68, 68, 0.16); border-color: transparent; color: #ef4444; } - .p-button.p-button-link { color: #4338CA; background: transparent; @@ -2543,7 +2435,6 @@ color: #4338CA; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: #022354; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #64748b; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #64748b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0ea5e9; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #0ea5e9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #22c55e; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #22c55e; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #f97316; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #f97316; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #a855f7; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #a855f7; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef4444; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #ef4444; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6b7280; @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; @@ -2918,7 +2792,6 @@ background: #EEF2FF; color: #4338CA; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6b7280; @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; @@ -3064,12 +2937,12 @@ background: #6366F1; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f9fafb; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f9fafb; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-column-filter-overlay { background: #ffffff; color: #4b5563; @@ -3302,7 +3170,6 @@ border-top: 1px solid #e5e7eb; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #e5e7eb; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f3f4f6; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3426,7 +3291,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f3f4f6; color: #4b5563; @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-paginator { background: #ffffff; color: #6b7280; @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6b7280; @@ -3488,9 +3351,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f3f4f6; border-color: transparent; color: #374151; @@ -3547,7 +3410,6 @@ border-color: transparent; color: #374151; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f3f4f6; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3642,7 +3503,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #6366F1; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #e5e7eb; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e5e7eb; background: #ffffff; @@ -3724,11 +3583,11 @@ color: #4338CA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #4338CA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #4338CA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #6366F1; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f9fafb; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f9fafb; color: #374151; @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #e5e7eb; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #ffffff; color: #4b5563; @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e5e7eb; background: #ffffff; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #e5e7eb; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f9fafb; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-splitter { border: 1px solid #e5e7eb; background: #ffffff; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #e5e7eb; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #f9fafb; border: 1px solid #e5e7eb; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #4b5563; @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #4b5563; @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #4b5563; @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6b7280; @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #4b5563; color: #ffffff; @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4b5563; } - .p-fileupload .p-fileupload-buttonbar { background: #f9fafb; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #4F46E5; color: #ffffff; @@ -4622,7 +4463,6 @@ color: #ffffff; border-color: #4338CA; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e7eb; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6b7280; } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4702,7 +4541,7 @@ color: #4338CA; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: #4338CA; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: #4b5563; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -4972,7 +4808,7 @@ color: #4338CA; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f9fafb; @@ -5070,7 +4905,7 @@ color: #4b5563; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: #4338CA; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: #4338CA; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5402,7 +5235,7 @@ color: #4338CA; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #e5e7eb; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #C7D2FE; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5641,7 +5471,7 @@ color: #4338CA; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4338CA; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #cc8925; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #cc8925; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #ff5757; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #ff5757; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f9fafb; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f9fafb; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #e5e7eb; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #6366F1; color: #ffffff; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #e5e7eb; color: #4b5563; @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #C7D2FE; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e5e7eb; border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #6366F1; color: #ffffff; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #4b5563; @@ -6276,78 +6086,65 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #6366F1; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #6366F1; } - .p-button:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b1b3f8, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b1b3f8, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-secondary:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-success:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-info:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-warning:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-help:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-danger:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 rgb(0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #6366F1; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #6366F1; } - .p-speeddial-item.p-focus > .p-speeddial-action { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b1b3f8, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b1b3f8, 0 1px 2px 0 rgb(0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #6366F1; color: #ffffff; diff --git a/src/assets/components/themes/lara-light-purple/theme.css b/src/assets/components/themes/lara-light-purple/theme.css index 8b0976b250f..5c51f852ded 100644 --- a/src/assets/components/themes/lara-light-purple/theme.css +++ b/src/assets/components/themes/lara-light-purple/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #e24c4c; } - .p-text-secondary { color: #6b7280; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e24c4c; } - .p-autocomplete-panel { background: #ffffff; color: #4b5563; @@ -457,11 +444,9 @@ color: #4b5563; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e24c4c; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: #6b7280; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6b7280; right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e24c4c; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; border-color: #8B5CF6; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6b7280; @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #4b5563; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #8B5CF6; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: #6b7280; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6b7280; right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e24c4c; } - .p-cascadeselect-panel { background: #ffffff; color: #4b5563; @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f3f4f6; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e24c4c; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: #6b7280; right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #6D28D9; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f3f4f6; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #6D28D9; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #8B5CF6; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e24c4c; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: #6b7280; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } - .p-dropdown { background: #ffffff; border: 1px solid #d1d5db; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e24c4c; } - .p-dropdown-panel { background: #ffffff; color: #4b5563; @@ -1064,7 +1024,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-dropdown { background: #f3f4f6; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e24c4c; } - .p-inputgroup-addon { background: #f3f4f6; color: #6b7280; @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d1d5db; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e24c4c; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e24c4c; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #7C3AED; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e24c4c; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #6b7280; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e24c4c; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #6b7280; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #6b7280; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #6b7280; } - :-moz-placeholder { color: #6b7280; } - ::-moz-placeholder { color: #6b7280; } - :-ms-input-placeholder { color: #6b7280; } - .p-input-filled .p-inputtext { background-color: #f3f4f6; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #4b5563; @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem #DDD6FE; border-color: #8B5CF6; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e24c4c; } - .p-multiselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: #6b7280; right: 3rem; } - .p-multiselect-panel { background: #ffffff; color: #4b5563; @@ -1548,7 +1471,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-multiselect { background: #f3f4f6; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e24c4c; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e24c4c; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #29c76f; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: #6b7280; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: #6b7280; right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #6D28D9; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e24c4c; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f3f4f6; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #6D28D9; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #e73d3e; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6b7280; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: #4b5563; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e24c4c; } - .p-slider { background: #e5e7eb; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6b7280; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: #4b5563; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e24c4c; } - .p-treeselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e24c4c; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #4b5563; @@ -1935,7 +1838,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-treeselect { background: #f3f4f6; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: #6b7280; right: 3rem; } - .p-button { color: #ffffff; background: #8B5CF6; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #64748b; border: 1px solid #64748b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #475569; color: #ffffff; border-color: #475569; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e2e8f0; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #334155; color: #ffffff; border-color: #334155; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(100, 116, 139, 0.16); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #64748b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); border-color: transparent; color: #64748b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(100, 116, 139, 0.16); border-color: transparent; color: #64748b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0ea5e9; border: 1px solid #0ea5e9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #0284c7; color: #ffffff; border-color: #0284c7; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bfdbfe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #0369a1; color: #ffffff; border-color: #0369a1; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(14, 165, 233, 0.16); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0ea5e9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); border-color: transparent; color: #0ea5e9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(14, 165, 233, 0.16); border-color: transparent; color: #0ea5e9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #22c55e; border: 1px solid #22c55e; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #16a34a; color: #ffffff; border-color: #16a34a; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bbf7d0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #15803d; color: #ffffff; border-color: #15803d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(34, 197, 94, 0.16); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #22c55e; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); border-color: transparent; color: #22c55e; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(34, 197, 94, 0.16); border-color: transparent; color: #22c55e; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #f97316; border: 1px solid #f97316; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ea580c; color: #ffffff; border-color: #ea580c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde68a; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #c2410c; color: #ffffff; border-color: #c2410c; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(249, 115, 22, 0.16); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #f97316; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); border-color: transparent; color: #f97316; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(249, 115, 22, 0.16); border-color: transparent; color: #f97316; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #a855f7; border: 1px solid #a855f7; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9333ea; color: #ffffff; border-color: #9333ea; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e9d5ff; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7e22ce; color: #ffffff; border-color: #7e22ce; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(168, 85, 247, 0.16); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #a855f7; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); border-color: transparent; color: #a855f7; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(168, 85, 247, 0.16); border-color: transparent; color: #a855f7; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #ef4444; border: 1px solid #ef4444; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #dc2626; color: #ffffff; border-color: #dc2626; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fecaca; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #b91c1c; color: #ffffff; border-color: #b91c1c; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 68, 68, 0.16); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef4444; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); border-color: transparent; color: #ef4444; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 68, 68, 0.16); border-color: transparent; color: #ef4444; } - .p-button.p-button-link { color: #6D28D9; background: transparent; @@ -2543,7 +2435,6 @@ color: #6D28D9; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: #022354; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #64748b; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #64748b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0ea5e9; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #0ea5e9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #22c55e; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #22c55e; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #f97316; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #f97316; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #a855f7; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #a855f7; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef4444; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #ef4444; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6b7280; @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; @@ -2918,7 +2792,6 @@ background: #F5F3FF; color: #6D28D9; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6b7280; @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; @@ -3064,12 +2937,12 @@ background: #8B5CF6; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f9fafb; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f9fafb; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-column-filter-overlay { background: #ffffff; color: #4b5563; @@ -3302,7 +3170,6 @@ border-top: 1px solid #e5e7eb; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #e5e7eb; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f3f4f6; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3426,7 +3291,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f3f4f6; color: #4b5563; @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-paginator { background: #ffffff; color: #6b7280; @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6b7280; @@ -3488,9 +3351,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f3f4f6; border-color: transparent; color: #374151; @@ -3547,7 +3410,6 @@ border-color: transparent; color: #374151; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f3f4f6; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3642,7 +3503,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #8B5CF6; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #e5e7eb; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e5e7eb; background: #ffffff; @@ -3724,11 +3583,11 @@ color: #6D28D9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #6D28D9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #6D28D9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #8B5CF6; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f9fafb; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f9fafb; color: #374151; @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #e5e7eb; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #ffffff; color: #4b5563; @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e5e7eb; background: #ffffff; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #e5e7eb; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f9fafb; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-splitter { border: 1px solid #e5e7eb; background: #ffffff; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #e5e7eb; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #f9fafb; border: 1px solid #e5e7eb; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #4b5563; @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #4b5563; @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #4b5563; @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6b7280; @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #4b5563; color: #ffffff; @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4b5563; } - .p-fileupload .p-fileupload-buttonbar { background: #f9fafb; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #7C3AED; color: #ffffff; @@ -4622,7 +4463,6 @@ color: #ffffff; border-color: #6D28D9; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e7eb; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6b7280; } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4702,7 +4541,7 @@ color: #6D28D9; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: #6D28D9; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: #4b5563; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -4972,7 +4808,7 @@ color: #6D28D9; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f9fafb; @@ -5070,7 +4905,7 @@ color: #4b5563; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: #6D28D9; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: #6D28D9; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5402,7 +5235,7 @@ color: #6D28D9; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #e5e7eb; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #DDD6FE; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5641,7 +5471,7 @@ color: #6D28D9; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6D28D9; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #cc8925; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #cc8925; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #ff5757; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #ff5757; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f9fafb; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f9fafb; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #e5e7eb; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #8B5CF6; color: #ffffff; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #e5e7eb; color: #4b5563; @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #DDD6FE; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e5e7eb; border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #8B5CF6; color: #ffffff; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #4b5563; @@ -6276,78 +6086,65 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #8B5CF6; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #8B5CF6; } - .p-button:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #c5aefb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #c5aefb, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-secondary:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-success:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-info:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-warning:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-help:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-danger:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 rgb(0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #8B5CF6; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #8B5CF6; } - .p-speeddial-item.p-focus > .p-speeddial-action { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #c5aefb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #c5aefb, 0 1px 2px 0 rgb(0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #8B5CF6; color: #ffffff; diff --git a/src/assets/components/themes/lara-light-teal/theme.css b/src/assets/components/themes/lara-light-teal/theme.css index 359f03e5362..8554957bcea 100644 --- a/src/assets/components/themes/lara-light-teal/theme.css +++ b/src/assets/components/themes/lara-light-teal/theme.css @@ -293,40 +293,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #e24c4c; } - .p-text-secondary { color: #6b7280; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -338,15 +330,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -363,7 +352,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -410,7 +398,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e24c4c; } - .p-autocomplete-panel { background: #ffffff; color: #4b5563; @@ -457,11 +444,9 @@ color: #4b5563; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e24c4c; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -469,23 +454,19 @@ color: #6b7280; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6b7280; right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e24c4c; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; border-color: #14b8a6; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -512,7 +493,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6b7280; @@ -522,13 +503,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; @@ -537,14 +518,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #4b5563; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #14b8a6; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -693,7 +674,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -701,12 +681,10 @@ color: #6b7280; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6b7280; right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -749,7 +727,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e24c4c; } - .p-cascadeselect-panel { background: #ffffff; color: #4b5563; @@ -789,7 +766,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f3f4f6; } @@ -799,11 +775,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e24c4c; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -811,7 +785,6 @@ color: #6b7280; right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -820,7 +793,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -861,11 +833,9 @@ background: #0f766e; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f3f4f6; } @@ -878,15 +848,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #0f766e; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e24c4c; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #14b8a6; } @@ -925,11 +892,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e24c4c; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -937,26 +902,22 @@ color: #6b7280; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } - .p-dropdown { background: #ffffff; border: 1px solid #d1d5db; @@ -1000,7 +961,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e24c4c; } - .p-dropdown-panel { background: #ffffff; color: #4b5563; @@ -1064,7 +1024,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-dropdown { background: #f3f4f6; } @@ -1077,11 +1036,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e24c4c; } - .p-inputgroup-addon { background: #f3f4f6; color: #6b7280; @@ -1094,68 +1051,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d1d5db; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e24c4c; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1163,11 +1112,9 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e24c4c; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1175,14 +1122,12 @@ color: #6b7280; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1221,11 +1166,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #0d9488; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e24c4c; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1258,57 +1201,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #6b7280; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e24c4c; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #6b7280; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #6b7280; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #6b7280; } - :-moz-placeholder { color: #6b7280; } - ::-moz-placeholder { color: #6b7280; } - :-ms-input-placeholder { color: #6b7280; } - .p-input-filled .p-inputtext { background-color: #f3f4f6; } @@ -1318,17 +1249,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #4b5563; @@ -1403,11 +1331,9 @@ box-shadow: 0 0 0 0.2rem #99f6e4; border-color: #14b8a6; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e24c4c; } - .p-multiselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1447,11 +1373,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1459,7 +1383,6 @@ color: #6b7280; right: 3rem; } - .p-multiselect-panel { background: #ffffff; color: #4b5563; @@ -1548,7 +1471,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-multiselect { background: #f3f4f6; } @@ -1558,15 +1480,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e24c4c; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e24c4c; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1588,7 +1507,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #29c76f; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1596,7 +1514,6 @@ color: #6b7280; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1604,7 +1521,6 @@ color: #6b7280; right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1642,11 +1558,9 @@ background: #0f766e; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e24c4c; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f3f4f6; } @@ -1659,11 +1573,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #0f766e; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1694,7 +1606,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #e73d3e; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1702,7 +1613,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6b7280; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1711,7 +1622,7 @@ color: #4b5563; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-selectbutton .p-button.p-highlight { @@ -1720,7 +1631,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1729,14 +1640,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e24c4c; } - .p-slider { background: #e5e7eb; border: 0 none; @@ -1788,7 +1697,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #d1d5db; @@ -1796,7 +1704,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6b7280; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1805,7 +1713,7 @@ color: #4b5563; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #374151; } .p-togglebutton.p-button.p-highlight { @@ -1814,7 +1722,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1823,14 +1731,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e24c4c; } - .p-treeselect { background: #ffffff; border: 1px solid #d1d5db; @@ -1867,15 +1773,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e24c4c; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #4b5563; @@ -1935,7 +1838,6 @@ color: #4b5563; background: transparent; } - .p-input-filled .p-treeselect { background: #f3f4f6; } @@ -1945,7 +1847,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1953,7 +1854,6 @@ color: #6b7280; right: 3rem; } - .p-button { color: #ffffff; background: #14b8a6; @@ -2065,7 +1965,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2092,434 +1992,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #64748b; border: 1px solid #64748b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #475569; color: #ffffff; border-color: #475569; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e2e8f0; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #334155; color: #ffffff; border-color: #334155; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(100, 116, 139, 0.16); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #64748b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); border-color: transparent; color: #64748b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(100, 116, 139, 0.16); border-color: transparent; color: #64748b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0ea5e9; border: 1px solid #0ea5e9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #0284c7; color: #ffffff; border-color: #0284c7; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bfdbfe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #0369a1; color: #ffffff; border-color: #0369a1; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(14, 165, 233, 0.16); color: #0ea5e9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0ea5e9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(14, 165, 233, 0.04); border-color: transparent; color: #0ea5e9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(14, 165, 233, 0.16); border-color: transparent; color: #0ea5e9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #22c55e; border: 1px solid #22c55e; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #16a34a; color: #ffffff; border-color: #16a34a; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bbf7d0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #15803d; color: #ffffff; border-color: #15803d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(34, 197, 94, 0.16); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #22c55e; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); border-color: transparent; color: #22c55e; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(34, 197, 94, 0.16); border-color: transparent; color: #22c55e; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #f97316; border: 1px solid #f97316; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ea580c; color: #ffffff; border-color: #ea580c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde68a; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #c2410c; color: #ffffff; border-color: #c2410c; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(249, 115, 22, 0.16); color: #f97316; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #f97316; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(249, 115, 22, 0.04); border-color: transparent; color: #f97316; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(249, 115, 22, 0.16); border-color: transparent; color: #f97316; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #a855f7; border: 1px solid #a855f7; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9333ea; color: #ffffff; border-color: #9333ea; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e9d5ff; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7e22ce; color: #ffffff; border-color: #7e22ce; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(168, 85, 247, 0.16); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #a855f7; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); border-color: transparent; color: #a855f7; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(168, 85, 247, 0.16); border-color: transparent; color: #a855f7; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #ef4444; border: 1px solid #ef4444; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #dc2626; color: #ffffff; border-color: #dc2626; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fecaca; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #b91c1c; color: #ffffff; border-color: #b91c1c; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 68, 68, 0.16); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef4444; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); border-color: transparent; color: #ef4444; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 68, 68, 0.16); border-color: transparent; color: #ef4444; } - .p-button.p-button-link { color: #0f766e; background: transparent; @@ -2543,7 +2435,6 @@ color: #0f766e; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2555,17 +2446,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2576,52 +2464,45 @@ background: #022354; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2699,7 +2580,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #64748b; @@ -2728,7 +2608,6 @@ border-color: transparent; color: #64748b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0ea5e9; @@ -2757,7 +2636,6 @@ border-color: transparent; color: #0ea5e9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #22c55e; @@ -2786,7 +2664,6 @@ border-color: transparent; color: #22c55e; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #f97316; @@ -2815,7 +2692,6 @@ border-color: transparent; color: #f97316; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #a855f7; @@ -2844,7 +2720,6 @@ border-color: transparent; color: #a855f7; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef4444; @@ -2873,9 +2748,8 @@ border-color: transparent; color: #ef4444; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6b7280; @@ -2886,13 +2760,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; @@ -2918,7 +2792,6 @@ background: #f0fdfa; color: #0f766e; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3012,9 +2885,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6b7280; @@ -3024,17 +2897,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; @@ -3064,12 +2937,12 @@ background: #14b8a6; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f9fafb; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f9fafb; } .p-datatable .p-datatable-loading-icon { @@ -3172,7 +3045,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3211,12 +3083,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3244,7 +3114,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3264,7 +3133,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-column-filter-overlay { background: #ffffff; color: #4b5563; @@ -3302,7 +3170,6 @@ border-top: 1px solid #e5e7eb; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #e5e7eb; @@ -3331,7 +3198,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3417,7 +3283,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f3f4f6; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3426,7 +3291,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f3f4f6; color: #4b5563; @@ -3465,7 +3329,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-paginator { background: #ffffff; color: #6b7280; @@ -3475,9 +3338,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6b7280; @@ -3488,9 +3351,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f3f4f6; border-color: transparent; color: #374151; @@ -3547,7 +3410,6 @@ border-color: transparent; color: #374151; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3633,7 +3495,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f3f4f6; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3642,7 +3503,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #14b8a6; border-radius: 50%; @@ -3654,20 +3514,19 @@ background-color: #e5e7eb; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e5e7eb; background: #ffffff; @@ -3724,11 +3583,11 @@ color: #0f766e; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #0f766e; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #0f766e; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3801,7 +3660,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3941,7 +3799,7 @@ background: #14b8a6; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f9fafb; } .p-treetable .p-treetable-loading-icon { @@ -4002,7 +3860,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f9fafb; color: #374151; @@ -4027,7 +3884,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #e5e7eb; @@ -4076,7 +3932,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #ffffff; color: #4b5563; @@ -4102,7 +3957,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4126,7 +3980,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e5e7eb; background: #ffffff; @@ -4167,7 +4020,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #e5e7eb; padding: 1.25rem; @@ -4234,7 +4086,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f9fafb; border: 0 none; @@ -4245,7 +4096,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-splitter { border: 1px solid #e5e7eb; background: #ffffff; @@ -4267,7 +4117,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #e5e7eb; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4336,7 +4185,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #f9fafb; border: 1px solid #e5e7eb; @@ -4347,7 +4195,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #4b5563; @@ -4395,7 +4242,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); @@ -4468,7 +4314,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #4b5563; @@ -4510,7 +4355,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #4b5563; @@ -4521,7 +4365,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6b7280; @@ -4531,13 +4375,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #374151; border-color: transparent; background: #f3f4f6; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; @@ -4551,7 +4395,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #4b5563; color: #ffffff; @@ -4571,7 +4414,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4b5563; } - .p-fileupload .p-fileupload-buttonbar { background: #f9fafb; padding: 1.25rem; @@ -4611,7 +4453,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #0d9488; color: #ffffff; @@ -4622,7 +4463,6 @@ color: #ffffff; border-color: #0f766e; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e7eb; @@ -4654,7 +4494,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6b7280; } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4702,7 +4541,7 @@ color: #0f766e; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4716,7 +4555,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4727,7 +4566,7 @@ color: #4b5563; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-contextmenu .p-menuitem-separator { @@ -4741,7 +4580,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4765,32 +4603,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4849,7 +4686,7 @@ color: #0f766e; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4863,7 +4700,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4874,7 +4711,7 @@ color: #4b5563; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-megamenu .p-megamenu-panel { @@ -4932,10 +4769,9 @@ color: #4b5563; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -4972,7 +4808,7 @@ color: #0f766e; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4986,7 +4822,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4997,7 +4833,7 @@ color: #4b5563; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menu.p-menu-overlay { @@ -5031,7 +4867,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f9fafb; @@ -5070,7 +4905,7 @@ color: #4b5563; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5101,7 +4936,7 @@ color: #0f766e; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5115,7 +4950,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5126,7 +4961,7 @@ color: #4b5563; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-menubar .p-submenu-list { @@ -5143,7 +4978,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5318,7 +5152,7 @@ color: #0f766e; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5332,7 +5166,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5343,7 +5177,7 @@ color: #4b5563; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5359,7 +5193,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5402,7 +5235,7 @@ color: #0f766e; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5416,7 +5249,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5427,7 +5260,7 @@ color: #4b5563; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-slidemenu.p-slidemenu-overlay { @@ -5474,7 +5307,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5519,7 +5351,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #e5e7eb; @@ -5590,7 +5421,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #99f6e4; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5641,7 +5471,7 @@ color: #0f766e; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #0f766e; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5655,7 +5485,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5666,7 +5496,7 @@ color: #4b5563; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6b7280; } .p-tieredmenu .p-menuitem-separator { @@ -5680,7 +5510,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5736,7 +5565,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5825,7 +5653,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 1; } @@ -5876,7 +5703,7 @@ color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #3b82f6; } .p-toast .p-toast-message.p-toast-message-success { @@ -5886,7 +5713,7 @@ color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5896,7 +5723,7 @@ color: #cc8925; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #cc8925; } .p-toast .p-toast-message.p-toast-message-error { @@ -5906,10 +5733,9 @@ color: #ff5757; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #ff5757; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5940,7 +5766,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5997,7 +5823,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f9fafb; @@ -6007,7 +5833,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f9fafb; } @@ -6016,29 +5842,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6062,7 +5882,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #e5e7eb; border-radius: 6px; @@ -6083,11 +5902,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #14b8a6; color: #ffffff; @@ -6129,7 +5946,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #e5e7eb; color: #4b5563; @@ -6165,7 +5981,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6180,7 +5995,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #99f6e4; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6196,7 +6010,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6218,7 +6031,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e5e7eb; border-radius: 6px; @@ -6226,7 +6038,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #14b8a6; color: #ffffff; @@ -6259,7 +6070,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #4b5563; @@ -6276,78 +6086,65 @@ .p-button-label { font-weight: 700; } - .p-selectbutton > .p-button, -.p-togglebutton.p-button { + .p-togglebutton.p-button { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-accordion .p-accordion-header .p-accordion-header-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #14b8a6; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #14b8a6; } - .p-button:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #75f0e3, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #75f0e3, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-secondary:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-success:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-info:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #83d3f8, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-warning:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #fcb98b, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-help:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d4aafb, 0 1px 2px 0 rgb(0, 0, 0); } .p-button.p-button-danger:enabled:focus { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 rgb(0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #14b8a6; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #14b8a6; } - .p-speeddial-item.p-focus > .p-speeddial-action { - box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #75f0e3, 0 1px 2px 0 black; + box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #75f0e3, 0 1px 2px 0 rgb(0, 0, 0); } - .p-toast-message { backdrop-filter: blur(10px); } - .p-inline-message-text { font-weight: 500; } - .p-picklist-buttons .p-button, -.p-orderlist-controls .p-button { + .p-orderlist-controls .p-button { transition: opacity 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } - .p-steps .p-steps-item.p-highlight .p-steps-number { background: #14b8a6; color: #ffffff; diff --git a/src/assets/components/themes/luna-amber/theme.css b/src/assets/components/themes/luna-amber/theme.css index 1e165c183e4..72343ae0247 100644 --- a/src/assets/components/themes/luna-amber/theme.css +++ b/src/assets/components/themes/luna-amber/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #e57373; } - .p-text-secondary { color: #888888; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e57373; } - .p-autocomplete-panel { background: #323232; color: #dedede; @@ -440,11 +427,9 @@ color: #dedede; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e57373; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #888888; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #888888; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e57373; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #FFE082; } - .p-datepicker { padding: 0.857rem; background: #323232; @@ -495,23 +476,23 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #dedede; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #FFE082; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -586,7 +567,7 @@ .p-datepicker .p-timepicker button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #888888; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #888888; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e57373; } - .p-cascadeselect-panel { background: #323232; color: #dedede; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #4b4b4b; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e57373; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #888888; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #FFCA28; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #FFCA28; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #212529; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #FFE082; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e57373; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -924,26 +888,22 @@ color: #888888; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #191919; border: 1px solid #4b4b4b; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e57373; } - .p-dropdown-panel { background: #323232; color: #dedede; @@ -1051,7 +1010,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-dropdown { background: #4b4b4b; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e57373; } - .p-inputgroup-addon { background: #252525; color: #888888; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #4b4b4b; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e57373; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1150,11 +1098,9 @@ color: #888888; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e57373; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1162,14 +1108,12 @@ color: #888888; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #FFD54F; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e57373; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #9b9b9b; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e57373; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #888888; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #888888; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #9b9b9b; } - :-moz-placeholder { color: #9b9b9b; } - ::-moz-placeholder { color: #9b9b9b; } - :-ms-input-placeholder { color: #9b9b9b; } - .p-input-filled .p-inputtext { background-color: #4b4b4b; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #4b4b4b; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #323232; color: #dedede; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.1rem white; border-color: #FFE082; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e57373; } - .p-multiselect { background: #191919; border: 1px solid #4b4b4b; @@ -1434,11 +1359,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1446,7 +1369,6 @@ color: #888888; right: 2.357rem; } - .p-multiselect-panel { background: #323232; color: #dedede; @@ -1477,7 +1399,7 @@ margin-left: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1535,7 +1457,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-multiselect { background: #4b4b4b; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e57373; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e57373; } - .p-password-panel { padding: 0.571rem 1rem; background: #323232; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #aed581; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1583,7 +1500,6 @@ color: #888888; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1591,7 +1507,6 @@ color: #888888; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #FFCA28; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e57373; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #4b4b4b; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #FFCA28; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #212529; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #212529; } - .p-selectbutton .p-button { background: #252525; border: 1px solid #252525; @@ -1697,7 +1605,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #888888; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #dedede; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e57373; } - .p-slider { background: #4b4b4b; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #252525; border: 1px solid #252525; @@ -1791,7 +1696,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #888888; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #dedede; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e57373; } - .p-treeselect { background: #191919; border: 1px solid #4b4b4b; @@ -1862,15 +1765,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e57373; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #323232; color: #dedede; @@ -1906,7 +1806,7 @@ .p-treeselect-panel .p-treeselect-header .p-treeselect-close { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1930,7 +1830,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-treeselect { background: #4b4b4b; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1948,7 +1846,6 @@ color: #888888; right: 2.357rem; } - .p-button { color: #212529; background: #FFE082; @@ -2060,7 +1957,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #b0bec5; border: 1px solid #b0bec5; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #90a4ae; color: #121212; border-color: #90a4ae; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #cfd8dc; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #78909c; color: #121212; border-color: #78909c; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(176, 190, 197, 0.16); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #b0bec5; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); border-color: transparent; color: #b0bec5; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(176, 190, 197, 0.16); border-color: transparent; color: #b0bec5; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212529; background: #4fc3f7; border: 1px solid #4fc3f7; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #29b6f6; color: #212529; border-color: #29b6f6; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #e1f5fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #03a9f4; color: #212529; border-color: #03a9f4; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(79, 195, 247, 0.16); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #4fc3f7; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); border-color: transparent; color: #4fc3f7; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(79, 195, 247, 0.16); border-color: transparent; color: #4fc3f7; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212529; background: #aed581; border: 1px solid #aed581; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #9ccc65; color: #212529; border-color: #9ccc65; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #f1f8e9; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #8bc34a; color: #212529; border-color: #8bc34a; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(174, 213, 129, 0.16); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #aed581; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); border-color: transparent; color: #aed581; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(174, 213, 129, 0.16); border-color: transparent; color: #aed581; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #ffb74d; border: 1px solid #ffb74d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffa726; color: #212529; border-color: #ffa726; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #fffde7; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ff9800; color: #212529; border-color: #ff9800; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 183, 77, 0.16); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffb74d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); border-color: transparent; color: #ffb74d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 183, 77, 0.16); border-color: transparent; color: #ffb74d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #ba68c8; color: #121212; border-color: #ba68c8; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #ab47bc; color: #121212; border-color: #ab47bc; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212529; background: #e57373; border: 1px solid #e57373; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #ef5350; color: #212529; border-color: #ef5350; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #ffebee; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #f44336; color: #212529; border-color: #f44336; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(229, 115, 115, 0.16); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e57373; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); border-color: transparent; color: #e57373; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(229, 115, 115, 0.16); border-color: transparent; color: #e57373; } - .p-button.p-button-link { color: #FFE082; background: transparent; @@ -2538,7 +2427,6 @@ color: #FFE082; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #4d4d4d; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #b0bec5; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #b0bec5; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #4fc3f7; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #4fc3f7; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #aed581; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #aed581; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffb74d; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffb74d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e57373; @@ -2868,12 +2740,11 @@ border-color: transparent; color: #e57373; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -2913,7 +2784,6 @@ background: #FFE082; color: #212529; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3007,29 +2877,29 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -3059,12 +2929,12 @@ background: #FFE082; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #191919; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #252525; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3206,16 +3075,14 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3239,11 +3106,10 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-overlay { background: #323232; color: #dedede; @@ -3297,7 +3162,6 @@ border-top: 1px solid #4b4b4b; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #191919; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #4c4c4c; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3421,7 +3283,6 @@ background: #323232; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #4c4c4c; color: #dedede; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-paginator { background: #252525; color: #dedede; @@ -3470,9 +3330,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #dedede; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #4c4c4c; @@ -3542,7 +3402,6 @@ border-color: transparent; color: #4c4c4c; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #4c4c4c; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3637,7 +3495,6 @@ background: #323232; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #191919; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #191919; background: #323232; @@ -3688,7 +3544,7 @@ margin-right: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3719,11 +3575,11 @@ color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3884,7 +3739,7 @@ .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3936,7 +3791,7 @@ background: #FFE082; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #191919; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #191919; color: #dedede; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #191919; @@ -4071,7 +3924,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #323232; color: #dedede; @@ -4097,7 +3949,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #323232; } @@ -4121,7 +3972,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #191919; background: #323232; @@ -4162,7 +4012,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #191919; padding: 0.857rem 1rem; @@ -4177,7 +4026,7 @@ .p-panel .p-panel-header .p-panel-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4229,7 +4078,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3f3f3f; border: 0 none; @@ -4240,7 +4088,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-splitter { border: 1px solid #191919; background: #323232; @@ -4262,7 +4109,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #4b4b4b; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4331,7 +4177,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #191919; border: 1px solid #191919; @@ -4342,7 +4187,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #323232; color: #dedede; @@ -4390,7 +4234,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4411,7 +4254,7 @@ .p-dialog .p-dialog-header .p-dialog-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4463,7 +4306,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #323232; color: #dedede; @@ -4505,7 +4347,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #191919; } - .p-sidebar { background: #323232; color: #dedede; @@ -4516,23 +4357,23 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -4546,7 +4387,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #4c4c4c; color: #dedede; @@ -4566,7 +4406,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4c4c4c; } - .p-fileupload .p-fileupload-buttonbar { background: #191919; padding: 0.857rem 1rem; @@ -4606,7 +4445,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #FFD54F; color: #212529; @@ -4617,7 +4455,6 @@ color: #212529; border-color: #FFCA28; } - .p-breadcrumb { background: #252525; border: 1px solid #191919; @@ -4649,7 +4486,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #dedede; } - .p-contextmenu { padding: 0; background: #252525; @@ -4697,7 +4533,7 @@ color: #212529; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4711,7 +4547,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4722,7 +4558,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem-separator { @@ -4736,7 +4572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4760,32 +4595,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4844,7 +4678,7 @@ color: #212529; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4858,7 +4692,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4869,7 +4703,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-megamenu-panel { @@ -4927,10 +4761,9 @@ color: #dedede; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } - .p-menu { padding: 0; background: #252525; @@ -4967,7 +4800,7 @@ color: #212529; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4981,7 +4814,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4992,7 +4825,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu.p-menu-overlay { @@ -5026,7 +4859,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #252525; @@ -5065,7 +4897,7 @@ color: #dedede; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5096,7 +4928,7 @@ color: #212529; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5110,7 +4942,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5121,7 +4953,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-submenu-list { @@ -5138,7 +4970,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5313,7 +5144,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5327,7 +5158,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5338,7 +5169,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5354,7 +5185,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #252525; @@ -5397,7 +5227,7 @@ color: #212529; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5411,7 +5241,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5422,7 +5252,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu.p-slidemenu-overlay { @@ -5469,7 +5299,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; @@ -5514,7 +5343,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5585,7 +5413,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.1rem white; } - .p-tieredmenu { padding: 0; background: #252525; @@ -5636,7 +5463,7 @@ color: #212529; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5650,7 +5477,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5661,7 +5488,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem-separator { @@ -5675,7 +5502,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5731,7 +5557,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5820,7 +5645,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5871,7 +5695,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5881,7 +5705,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5891,7 +5715,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5901,10 +5725,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5935,7 +5758,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5992,7 +5815,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -6002,7 +5825,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -6011,29 +5834,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6057,7 +5874,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #4b4b4b; border-radius: 3px; @@ -6078,11 +5894,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #323232; } - .p-badge { background: #FFE082; color: #212529; @@ -6124,7 +5938,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #4b4b4b; color: #dedede; @@ -6160,7 +5973,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6175,7 +5987,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-progressbar { border: 0 none; height: 24px; @@ -6191,7 +6002,6 @@ color: #212529; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6213,7 +6023,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6221,7 +6030,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #FFE082; color: #212529; @@ -6254,7 +6062,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #323232; color: #dedede; diff --git a/src/assets/components/themes/luna-blue/theme.css b/src/assets/components/themes/luna-blue/theme.css index 0b83a4ee11a..e389f151101 100644 --- a/src/assets/components/themes/luna-blue/theme.css +++ b/src/assets/components/themes/luna-blue/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #e57373; } - .p-text-secondary { color: #888888; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e57373; } - .p-autocomplete-panel { background: #323232; color: #dedede; @@ -440,11 +427,9 @@ color: #dedede; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e57373; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #888888; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #888888; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e57373; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #81D4FA; } - .p-datepicker { padding: 0.857rem; background: #323232; @@ -495,23 +476,23 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #dedede; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #81D4FA; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -586,7 +567,7 @@ .p-datepicker .p-timepicker button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #888888; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #888888; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e57373; } - .p-cascadeselect-panel { background: #323232; color: #dedede; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #4b4b4b; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e57373; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #888888; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #29B6F6; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #29B6F6; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #212529; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #81D4FA; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e57373; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -924,26 +888,22 @@ color: #888888; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #191919; border: 1px solid #4b4b4b; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e57373; } - .p-dropdown-panel { background: #323232; color: #dedede; @@ -1051,7 +1010,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-dropdown { background: #4b4b4b; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e57373; } - .p-inputgroup-addon { background: #252525; color: #888888; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #4b4b4b; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e57373; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1150,11 +1098,9 @@ color: #888888; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e57373; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1162,14 +1108,12 @@ color: #888888; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #4FC3F7; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e57373; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #9b9b9b; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e57373; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #888888; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #888888; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #9b9b9b; } - :-moz-placeholder { color: #9b9b9b; } - ::-moz-placeholder { color: #9b9b9b; } - :-ms-input-placeholder { color: #9b9b9b; } - .p-input-filled .p-inputtext { background-color: #4b4b4b; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #4b4b4b; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #323232; color: #dedede; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.1rem white; border-color: #81D4FA; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e57373; } - .p-multiselect { background: #191919; border: 1px solid #4b4b4b; @@ -1434,11 +1359,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1446,7 +1369,6 @@ color: #888888; right: 2.357rem; } - .p-multiselect-panel { background: #323232; color: #dedede; @@ -1477,7 +1399,7 @@ margin-left: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1535,7 +1457,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-multiselect { background: #4b4b4b; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e57373; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e57373; } - .p-password-panel { padding: 0.571rem 1rem; background: #323232; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #aed581; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1583,7 +1500,6 @@ color: #888888; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1591,7 +1507,6 @@ color: #888888; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #29B6F6; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e57373; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #4b4b4b; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #29B6F6; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #212529; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #212529; } - .p-selectbutton .p-button { background: #252525; border: 1px solid #252525; @@ -1697,7 +1605,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #888888; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #dedede; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e57373; } - .p-slider { background: #4b4b4b; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #252525; border: 1px solid #252525; @@ -1791,7 +1696,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #888888; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #dedede; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e57373; } - .p-treeselect { background: #191919; border: 1px solid #4b4b4b; @@ -1862,15 +1765,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e57373; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #323232; color: #dedede; @@ -1906,7 +1806,7 @@ .p-treeselect-panel .p-treeselect-header .p-treeselect-close { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1930,7 +1830,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-treeselect { background: #4b4b4b; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1948,7 +1846,6 @@ color: #888888; right: 2.357rem; } - .p-button { color: #212529; background: #81D4FA; @@ -2060,7 +1957,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #b0bec5; border: 1px solid #b0bec5; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #90a4ae; color: #121212; border-color: #90a4ae; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #cfd8dc; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #78909c; color: #121212; border-color: #78909c; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(176, 190, 197, 0.16); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #b0bec5; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); border-color: transparent; color: #b0bec5; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(176, 190, 197, 0.16); border-color: transparent; color: #b0bec5; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212529; background: #4fc3f7; border: 1px solid #4fc3f7; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #29b6f6; color: #212529; border-color: #29b6f6; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #e1f5fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #03a9f4; color: #212529; border-color: #03a9f4; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(79, 195, 247, 0.16); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #4fc3f7; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); border-color: transparent; color: #4fc3f7; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(79, 195, 247, 0.16); border-color: transparent; color: #4fc3f7; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212529; background: #aed581; border: 1px solid #aed581; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #9ccc65; color: #212529; border-color: #9ccc65; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #f1f8e9; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #8bc34a; color: #212529; border-color: #8bc34a; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(174, 213, 129, 0.16); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #aed581; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); border-color: transparent; color: #aed581; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(174, 213, 129, 0.16); border-color: transparent; color: #aed581; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #ffb74d; border: 1px solid #ffb74d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffa726; color: #212529; border-color: #ffa726; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #fffde7; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ff9800; color: #212529; border-color: #ff9800; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 183, 77, 0.16); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffb74d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); border-color: transparent; color: #ffb74d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 183, 77, 0.16); border-color: transparent; color: #ffb74d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #ba68c8; color: #121212; border-color: #ba68c8; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #ab47bc; color: #121212; border-color: #ab47bc; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212529; background: #e57373; border: 1px solid #e57373; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #ef5350; color: #212529; border-color: #ef5350; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #ffebee; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #f44336; color: #212529; border-color: #f44336; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(229, 115, 115, 0.16); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e57373; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); border-color: transparent; color: #e57373; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(229, 115, 115, 0.16); border-color: transparent; color: #e57373; } - .p-button.p-button-link { color: #81D4FA; background: transparent; @@ -2538,7 +2427,6 @@ color: #81D4FA; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #4d4d4d; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #b0bec5; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #b0bec5; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #4fc3f7; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #4fc3f7; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #aed581; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #aed581; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffb74d; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffb74d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e57373; @@ -2868,12 +2740,11 @@ border-color: transparent; color: #e57373; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -2913,7 +2784,6 @@ background: #81D4FA; color: #212529; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3007,29 +2877,29 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -3059,12 +2929,12 @@ background: #81D4FA; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #191919; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #252525; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3206,16 +3075,14 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3239,11 +3106,10 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-overlay { background: #323232; color: #dedede; @@ -3297,7 +3162,6 @@ border-top: 1px solid #4b4b4b; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #191919; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #4c4c4c; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3421,7 +3283,6 @@ background: #323232; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #4c4c4c; color: #dedede; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-paginator { background: #252525; color: #dedede; @@ -3470,9 +3330,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #dedede; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #4c4c4c; @@ -3542,7 +3402,6 @@ border-color: transparent; color: #4c4c4c; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #4c4c4c; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3637,7 +3495,6 @@ background: #323232; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #191919; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #191919; background: #323232; @@ -3688,7 +3544,7 @@ margin-right: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3719,11 +3575,11 @@ color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3884,7 +3739,7 @@ .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3936,7 +3791,7 @@ background: #81D4FA; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #191919; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #191919; color: #dedede; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #191919; @@ -4071,7 +3924,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #323232; color: #dedede; @@ -4097,7 +3949,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #323232; } @@ -4121,7 +3972,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #191919; background: #323232; @@ -4162,7 +4012,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #191919; padding: 0.857rem 1rem; @@ -4177,7 +4026,7 @@ .p-panel .p-panel-header .p-panel-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4229,7 +4078,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3f3f3f; border: 0 none; @@ -4240,7 +4088,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-splitter { border: 1px solid #191919; background: #323232; @@ -4262,7 +4109,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #4b4b4b; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4331,7 +4177,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #191919; border: 1px solid #191919; @@ -4342,7 +4187,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #323232; color: #dedede; @@ -4390,7 +4234,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4411,7 +4254,7 @@ .p-dialog .p-dialog-header .p-dialog-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4463,7 +4306,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #323232; color: #dedede; @@ -4505,7 +4347,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #191919; } - .p-sidebar { background: #323232; color: #dedede; @@ -4516,23 +4357,23 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -4546,7 +4387,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #4c4c4c; color: #dedede; @@ -4566,7 +4406,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4c4c4c; } - .p-fileupload .p-fileupload-buttonbar { background: #191919; padding: 0.857rem 1rem; @@ -4606,7 +4445,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #4FC3F7; color: #212529; @@ -4617,7 +4455,6 @@ color: #212529; border-color: #29B6F6; } - .p-breadcrumb { background: #252525; border: 1px solid #191919; @@ -4649,7 +4486,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #dedede; } - .p-contextmenu { padding: 0; background: #252525; @@ -4697,7 +4533,7 @@ color: #212529; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4711,7 +4547,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4722,7 +4558,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem-separator { @@ -4736,7 +4572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4760,32 +4595,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4844,7 +4678,7 @@ color: #212529; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4858,7 +4692,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4869,7 +4703,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-megamenu-panel { @@ -4927,10 +4761,9 @@ color: #dedede; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } - .p-menu { padding: 0; background: #252525; @@ -4967,7 +4800,7 @@ color: #212529; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4981,7 +4814,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4992,7 +4825,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu.p-menu-overlay { @@ -5026,7 +4859,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #252525; @@ -5065,7 +4897,7 @@ color: #dedede; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5096,7 +4928,7 @@ color: #212529; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5110,7 +4942,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5121,7 +4953,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-submenu-list { @@ -5138,7 +4970,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5313,7 +5144,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5327,7 +5158,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5338,7 +5169,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5354,7 +5185,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #252525; @@ -5397,7 +5227,7 @@ color: #212529; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5411,7 +5241,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5422,7 +5252,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu.p-slidemenu-overlay { @@ -5469,7 +5299,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; @@ -5514,7 +5343,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5585,7 +5413,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.1rem white; } - .p-tieredmenu { padding: 0; background: #252525; @@ -5636,7 +5463,7 @@ color: #212529; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5650,7 +5477,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5661,7 +5488,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem-separator { @@ -5675,7 +5502,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5731,7 +5557,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5820,7 +5645,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5871,7 +5695,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5881,7 +5705,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5891,7 +5715,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5901,10 +5725,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5935,7 +5758,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5992,7 +5815,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -6002,7 +5825,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -6011,29 +5834,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6057,7 +5874,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #4b4b4b; border-radius: 3px; @@ -6078,11 +5894,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #323232; } - .p-badge { background: #81D4FA; color: #212529; @@ -6124,7 +5938,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #4b4b4b; color: #dedede; @@ -6160,7 +5973,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6175,7 +5987,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-progressbar { border: 0 none; height: 24px; @@ -6191,7 +6002,6 @@ color: #212529; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6213,7 +6023,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6221,7 +6030,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #81D4FA; color: #212529; @@ -6254,7 +6062,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #323232; color: #dedede; diff --git a/src/assets/components/themes/luna-green/theme.css b/src/assets/components/themes/luna-green/theme.css index ec637309407..6d363ab9af5 100644 --- a/src/assets/components/themes/luna-green/theme.css +++ b/src/assets/components/themes/luna-green/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #e57373; } - .p-text-secondary { color: #888888; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e57373; } - .p-autocomplete-panel { background: #323232; color: #dedede; @@ -440,11 +427,9 @@ color: #dedede; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e57373; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #888888; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #888888; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e57373; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #C5E1A5; } - .p-datepicker { padding: 0.857rem; background: #323232; @@ -495,23 +476,23 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #dedede; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #C5E1A5; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -586,7 +567,7 @@ .p-datepicker .p-timepicker button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #888888; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #888888; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e57373; } - .p-cascadeselect-panel { background: #323232; color: #dedede; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #4b4b4b; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e57373; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #888888; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #9CCC65; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9CCC65; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #212529; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #C5E1A5; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e57373; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -924,26 +888,22 @@ color: #888888; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #191919; border: 1px solid #4b4b4b; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e57373; } - .p-dropdown-panel { background: #323232; color: #dedede; @@ -1051,7 +1010,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-dropdown { background: #4b4b4b; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e57373; } - .p-inputgroup-addon { background: #252525; color: #888888; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #4b4b4b; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e57373; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1150,11 +1098,9 @@ color: #888888; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e57373; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1162,14 +1108,12 @@ color: #888888; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #AED581; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e57373; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #9b9b9b; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e57373; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #888888; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #888888; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #9b9b9b; } - :-moz-placeholder { color: #9b9b9b; } - ::-moz-placeholder { color: #9b9b9b; } - :-ms-input-placeholder { color: #9b9b9b; } - .p-input-filled .p-inputtext { background-color: #4b4b4b; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #4b4b4b; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #323232; color: #dedede; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.1rem white; border-color: #C5E1A5; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e57373; } - .p-multiselect { background: #191919; border: 1px solid #4b4b4b; @@ -1434,11 +1359,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1446,7 +1369,6 @@ color: #888888; right: 2.357rem; } - .p-multiselect-panel { background: #323232; color: #dedede; @@ -1477,7 +1399,7 @@ margin-left: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1535,7 +1457,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-multiselect { background: #4b4b4b; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e57373; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e57373; } - .p-password-panel { padding: 0.571rem 1rem; background: #323232; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #aed581; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1583,7 +1500,6 @@ color: #888888; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1591,7 +1507,6 @@ color: #888888; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #9CCC65; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e57373; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #4b4b4b; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #9CCC65; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #212529; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #212529; } - .p-selectbutton .p-button { background: #252525; border: 1px solid #252525; @@ -1697,7 +1605,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #888888; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #dedede; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e57373; } - .p-slider { background: #4b4b4b; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #252525; border: 1px solid #252525; @@ -1791,7 +1696,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #888888; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #dedede; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e57373; } - .p-treeselect { background: #191919; border: 1px solid #4b4b4b; @@ -1862,15 +1765,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e57373; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #323232; color: #dedede; @@ -1906,7 +1806,7 @@ .p-treeselect-panel .p-treeselect-header .p-treeselect-close { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1930,7 +1830,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-treeselect { background: #4b4b4b; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1948,7 +1846,6 @@ color: #888888; right: 2.357rem; } - .p-button { color: #212529; background: #C5E1A5; @@ -2060,7 +1957,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #b0bec5; border: 1px solid #b0bec5; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #90a4ae; color: #121212; border-color: #90a4ae; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #cfd8dc; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #78909c; color: #121212; border-color: #78909c; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(176, 190, 197, 0.16); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #b0bec5; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); border-color: transparent; color: #b0bec5; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(176, 190, 197, 0.16); border-color: transparent; color: #b0bec5; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212529; background: #4fc3f7; border: 1px solid #4fc3f7; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #29b6f6; color: #212529; border-color: #29b6f6; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #e1f5fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #03a9f4; color: #212529; border-color: #03a9f4; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(79, 195, 247, 0.16); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #4fc3f7; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); border-color: transparent; color: #4fc3f7; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(79, 195, 247, 0.16); border-color: transparent; color: #4fc3f7; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212529; background: #aed581; border: 1px solid #aed581; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #9ccc65; color: #212529; border-color: #9ccc65; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #f1f8e9; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #8bc34a; color: #212529; border-color: #8bc34a; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(174, 213, 129, 0.16); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #aed581; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); border-color: transparent; color: #aed581; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(174, 213, 129, 0.16); border-color: transparent; color: #aed581; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #ffb74d; border: 1px solid #ffb74d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffa726; color: #212529; border-color: #ffa726; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #fffde7; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ff9800; color: #212529; border-color: #ff9800; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 183, 77, 0.16); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffb74d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); border-color: transparent; color: #ffb74d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 183, 77, 0.16); border-color: transparent; color: #ffb74d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #ba68c8; color: #121212; border-color: #ba68c8; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #ab47bc; color: #121212; border-color: #ab47bc; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212529; background: #e57373; border: 1px solid #e57373; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #ef5350; color: #212529; border-color: #ef5350; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #ffebee; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #f44336; color: #212529; border-color: #f44336; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(229, 115, 115, 0.16); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e57373; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); border-color: transparent; color: #e57373; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(229, 115, 115, 0.16); border-color: transparent; color: #e57373; } - .p-button.p-button-link { color: #C5E1A5; background: transparent; @@ -2538,7 +2427,6 @@ color: #C5E1A5; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #4d4d4d; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #b0bec5; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #b0bec5; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #4fc3f7; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #4fc3f7; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #aed581; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #aed581; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffb74d; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffb74d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e57373; @@ -2868,12 +2740,11 @@ border-color: transparent; color: #e57373; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -2913,7 +2784,6 @@ background: #C5E1A5; color: #212529; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3007,29 +2877,29 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -3059,12 +2929,12 @@ background: #C5E1A5; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #191919; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #252525; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3206,16 +3075,14 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3239,11 +3106,10 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-overlay { background: #323232; color: #dedede; @@ -3297,7 +3162,6 @@ border-top: 1px solid #4b4b4b; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #191919; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #4c4c4c; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3421,7 +3283,6 @@ background: #323232; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #4c4c4c; color: #dedede; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-paginator { background: #252525; color: #dedede; @@ -3470,9 +3330,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #dedede; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #4c4c4c; @@ -3542,7 +3402,6 @@ border-color: transparent; color: #4c4c4c; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #4c4c4c; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3637,7 +3495,6 @@ background: #323232; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #191919; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #191919; background: #323232; @@ -3688,7 +3544,7 @@ margin-right: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3719,11 +3575,11 @@ color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3884,7 +3739,7 @@ .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3936,7 +3791,7 @@ background: #C5E1A5; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #191919; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #191919; color: #dedede; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #191919; @@ -4071,7 +3924,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #323232; color: #dedede; @@ -4097,7 +3949,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #323232; } @@ -4121,7 +3972,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #191919; background: #323232; @@ -4162,7 +4012,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #191919; padding: 0.857rem 1rem; @@ -4177,7 +4026,7 @@ .p-panel .p-panel-header .p-panel-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4229,7 +4078,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3f3f3f; border: 0 none; @@ -4240,7 +4088,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-splitter { border: 1px solid #191919; background: #323232; @@ -4262,7 +4109,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #4b4b4b; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4331,7 +4177,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #191919; border: 1px solid #191919; @@ -4342,7 +4187,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #323232; color: #dedede; @@ -4390,7 +4234,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4411,7 +4254,7 @@ .p-dialog .p-dialog-header .p-dialog-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4463,7 +4306,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #323232; color: #dedede; @@ -4505,7 +4347,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #191919; } - .p-sidebar { background: #323232; color: #dedede; @@ -4516,23 +4357,23 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -4546,7 +4387,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #4c4c4c; color: #dedede; @@ -4566,7 +4406,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4c4c4c; } - .p-fileupload .p-fileupload-buttonbar { background: #191919; padding: 0.857rem 1rem; @@ -4606,7 +4445,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #AED581; color: #212529; @@ -4617,7 +4455,6 @@ color: #212529; border-color: #9CCC65; } - .p-breadcrumb { background: #252525; border: 1px solid #191919; @@ -4649,7 +4486,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #dedede; } - .p-contextmenu { padding: 0; background: #252525; @@ -4697,7 +4533,7 @@ color: #212529; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4711,7 +4547,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4722,7 +4558,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem-separator { @@ -4736,7 +4572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4760,32 +4595,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4844,7 +4678,7 @@ color: #212529; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4858,7 +4692,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4869,7 +4703,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-megamenu-panel { @@ -4927,10 +4761,9 @@ color: #dedede; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } - .p-menu { padding: 0; background: #252525; @@ -4967,7 +4800,7 @@ color: #212529; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4981,7 +4814,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4992,7 +4825,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu.p-menu-overlay { @@ -5026,7 +4859,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #252525; @@ -5065,7 +4897,7 @@ color: #dedede; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5096,7 +4928,7 @@ color: #212529; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5110,7 +4942,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5121,7 +4953,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-submenu-list { @@ -5138,7 +4970,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5313,7 +5144,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5327,7 +5158,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5338,7 +5169,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5354,7 +5185,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #252525; @@ -5397,7 +5227,7 @@ color: #212529; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5411,7 +5241,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5422,7 +5252,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu.p-slidemenu-overlay { @@ -5469,7 +5299,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; @@ -5514,7 +5343,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5585,7 +5413,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.1rem white; } - .p-tieredmenu { padding: 0; background: #252525; @@ -5636,7 +5463,7 @@ color: #212529; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5650,7 +5477,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5661,7 +5488,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem-separator { @@ -5675,7 +5502,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5731,7 +5557,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5820,7 +5645,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5871,7 +5695,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5881,7 +5705,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5891,7 +5715,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5901,10 +5725,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5935,7 +5758,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5992,7 +5815,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -6002,7 +5825,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -6011,29 +5834,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6057,7 +5874,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #4b4b4b; border-radius: 3px; @@ -6078,11 +5894,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #323232; } - .p-badge { background: #C5E1A5; color: #212529; @@ -6124,7 +5938,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #4b4b4b; color: #dedede; @@ -6160,7 +5973,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6175,7 +5987,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-progressbar { border: 0 none; height: 24px; @@ -6191,7 +6002,6 @@ color: #212529; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6213,7 +6023,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6221,7 +6030,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #C5E1A5; color: #212529; @@ -6254,7 +6062,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #323232; color: #dedede; diff --git a/src/assets/components/themes/luna-pink/theme.css b/src/assets/components/themes/luna-pink/theme.css index 9f8cc241d35..60e828932ef 100644 --- a/src/assets/components/themes/luna-pink/theme.css +++ b/src/assets/components/themes/luna-pink/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #e57373; } - .p-text-secondary { color: #888888; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e57373; } - .p-autocomplete-panel { background: #323232; color: #dedede; @@ -440,11 +427,9 @@ color: #dedede; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e57373; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #888888; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #888888; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e57373; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #F48FB1; } - .p-datepicker { padding: 0.857rem; background: #323232; @@ -495,23 +476,23 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #dedede; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #F48FB1; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -586,7 +567,7 @@ .p-datepicker .p-timepicker button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #888888; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #888888; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e57373; } - .p-cascadeselect-panel { background: #323232; color: #dedede; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #4b4b4b; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e57373; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #888888; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #EC407A; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #EC407A; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #212529; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e57373; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #F48FB1; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e57373; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -924,26 +888,22 @@ color: #888888; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #191919; border: 1px solid #4b4b4b; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e57373; } - .p-dropdown-panel { background: #323232; color: #dedede; @@ -1051,7 +1010,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-dropdown { background: #4b4b4b; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e57373; } - .p-inputgroup-addon { background: #252525; color: #888888; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #4b4b4b; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e57373; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1150,11 +1098,9 @@ color: #888888; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e57373; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1162,14 +1108,12 @@ color: #888888; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #F06292; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e57373; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #9b9b9b; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e57373; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #888888; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #888888; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #9b9b9b; } - :-moz-placeholder { color: #9b9b9b; } - ::-moz-placeholder { color: #9b9b9b; } - :-ms-input-placeholder { color: #9b9b9b; } - .p-input-filled .p-inputtext { background-color: #4b4b4b; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #4b4b4b; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #323232; color: #dedede; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.1rem white; border-color: #F48FB1; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e57373; } - .p-multiselect { background: #191919; border: 1px solid #4b4b4b; @@ -1434,11 +1359,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1446,7 +1369,6 @@ color: #888888; right: 2.357rem; } - .p-multiselect-panel { background: #323232; color: #dedede; @@ -1477,7 +1399,7 @@ margin-left: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1535,7 +1457,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-multiselect { background: #4b4b4b; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e57373; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e57373; } - .p-password-panel { padding: 0.571rem 1rem; background: #323232; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #aed581; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1583,7 +1500,6 @@ color: #888888; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1591,7 +1507,6 @@ color: #888888; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #EC407A; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e57373; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #4b4b4b; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #EC407A; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #212529; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #212529; } - .p-selectbutton .p-button { background: #252525; border: 1px solid #252525; @@ -1697,7 +1605,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #888888; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #dedede; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e57373; } - .p-slider { background: #4b4b4b; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #252525; border: 1px solid #252525; @@ -1791,7 +1696,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #888888; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #dedede; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #dedede; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e57373; } - .p-treeselect { background: #191919; border: 1px solid #4b4b4b; @@ -1862,15 +1765,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e57373; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #323232; color: #dedede; @@ -1906,7 +1806,7 @@ .p-treeselect-panel .p-treeselect-header .p-treeselect-close { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -1930,7 +1830,6 @@ color: #dedede; background: transparent; } - .p-input-filled .p-treeselect { background: #4b4b4b; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #4b4b4b; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1948,7 +1846,6 @@ color: #888888; right: 2.357rem; } - .p-button { color: #212529; background: #F48FB1; @@ -2060,7 +1957,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #b0bec5; border: 1px solid #b0bec5; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #90a4ae; color: #121212; border-color: #90a4ae; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #cfd8dc; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #78909c; color: #121212; border-color: #78909c; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(176, 190, 197, 0.16); color: #b0bec5; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #b0bec5; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(176, 190, 197, 0.04); border-color: transparent; color: #b0bec5; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(176, 190, 197, 0.16); border-color: transparent; color: #b0bec5; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212529; background: #4fc3f7; border: 1px solid #4fc3f7; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #29b6f6; color: #212529; border-color: #29b6f6; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #e1f5fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #03a9f4; color: #212529; border-color: #03a9f4; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(79, 195, 247, 0.16); color: #4fc3f7; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #4fc3f7; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(79, 195, 247, 0.04); border-color: transparent; color: #4fc3f7; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(79, 195, 247, 0.16); border-color: transparent; color: #4fc3f7; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212529; background: #aed581; border: 1px solid #aed581; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #9ccc65; color: #212529; border-color: #9ccc65; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #f1f8e9; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #8bc34a; color: #212529; border-color: #8bc34a; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(174, 213, 129, 0.16); color: #aed581; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #aed581; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(174, 213, 129, 0.04); border-color: transparent; color: #aed581; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(174, 213, 129, 0.16); border-color: transparent; color: #aed581; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #ffb74d; border: 1px solid #ffb74d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffa726; color: #212529; border-color: #ffa726; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #fffde7; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ff9800; color: #212529; border-color: #ff9800; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 183, 77, 0.16); color: #ffb74d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffb74d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 183, 77, 0.04); border-color: transparent; color: #ffb74d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 183, 77, 0.16); border-color: transparent; color: #ffb74d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #ba68c8; color: #121212; border-color: #ba68c8; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #ab47bc; color: #121212; border-color: #ab47bc; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212529; background: #e57373; border: 1px solid #e57373; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #ef5350; color: #212529; border-color: #ef5350; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #ffebee; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #f44336; color: #212529; border-color: #f44336; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(229, 115, 115, 0.16); color: #e57373; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e57373; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(229, 115, 115, 0.04); border-color: transparent; color: #e57373; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(229, 115, 115, 0.16); border-color: transparent; color: #e57373; } - .p-button.p-button-link { color: #F48FB1; background: transparent; @@ -2538,7 +2427,6 @@ color: #F48FB1; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #4d4d4d; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #b0bec5; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #b0bec5; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #4fc3f7; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #4fc3f7; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #aed581; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #aed581; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffb74d; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffb74d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e57373; @@ -2868,12 +2740,11 @@ border-color: transparent; color: #e57373; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -2913,7 +2784,6 @@ background: #F48FB1; color: #212529; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3007,29 +2877,29 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -3059,12 +2929,12 @@ background: #F48FB1; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #191919; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #252525; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3206,16 +3075,14 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3239,11 +3106,10 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-column-filter-overlay { background: #323232; color: #dedede; @@ -3297,7 +3162,6 @@ border-top: 1px solid #4b4b4b; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #191919; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #4c4c4c; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3421,7 +3283,6 @@ background: #323232; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #4c4c4c; color: #dedede; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-paginator { background: #252525; color: #dedede; @@ -3470,9 +3330,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #dedede; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #4c4c4c; @@ -3542,7 +3402,6 @@ border-color: transparent; color: #4c4c4c; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #4c4c4c; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3637,7 +3495,6 @@ background: #323232; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #191919; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #191919; background: #323232; @@ -3688,7 +3544,7 @@ margin-right: 0.5rem; width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3719,11 +3575,11 @@ color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #212529; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3884,7 +3739,7 @@ .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -3936,7 +3791,7 @@ background: #F48FB1; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #191919; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #191919; color: #dedede; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #191919; @@ -4071,7 +3924,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #323232; color: #dedede; @@ -4097,7 +3949,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #323232; } @@ -4121,7 +3972,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #191919; background: #323232; @@ -4162,7 +4012,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #191919; padding: 0.857rem 1rem; @@ -4177,7 +4026,7 @@ .p-panel .p-panel-header .p-panel-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4229,7 +4078,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3f3f3f; border: 0 none; @@ -4240,7 +4088,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-splitter { border: 1px solid #191919; background: #323232; @@ -4262,7 +4109,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #4b4b4b; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4331,7 +4177,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #191919; border: 1px solid #191919; @@ -4342,7 +4187,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #323232; color: #dedede; @@ -4390,7 +4234,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4411,7 +4254,7 @@ .p-dialog .p-dialog-header .p-dialog-header-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; @@ -4463,7 +4306,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #323232; color: #dedede; @@ -4505,7 +4347,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #191919; } - .p-sidebar { background: #323232; color: #dedede; @@ -4516,23 +4357,23 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; - color: #8888; + color: rgba(136, 136, 136, 0.5333333333); border: 0 none; background: transparent; border-radius: 50%; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #dedede; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; @@ -4546,7 +4387,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #4c4c4c; color: #dedede; @@ -4566,7 +4406,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4c4c4c; } - .p-fileupload .p-fileupload-buttonbar { background: #191919; padding: 0.857rem 1rem; @@ -4606,7 +4445,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #F06292; color: #212529; @@ -4617,7 +4455,6 @@ color: #212529; border-color: #EC407A; } - .p-breadcrumb { background: #252525; border: 1px solid #191919; @@ -4649,7 +4486,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #dedede; } - .p-contextmenu { padding: 0; background: #252525; @@ -4697,7 +4533,7 @@ color: #212529; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4711,7 +4547,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4722,7 +4558,7 @@ color: #dedede; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-contextmenu .p-menuitem-separator { @@ -4736,7 +4572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4760,32 +4595,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4844,7 +4678,7 @@ color: #212529; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4858,7 +4692,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4869,7 +4703,7 @@ color: #dedede; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-megamenu .p-megamenu-panel { @@ -4927,10 +4761,9 @@ color: #dedede; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } - .p-menu { padding: 0; background: #252525; @@ -4967,7 +4800,7 @@ color: #212529; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4981,7 +4814,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4992,7 +4825,7 @@ color: #dedede; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menu.p-menu-overlay { @@ -5026,7 +4859,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #252525; @@ -5065,7 +4897,7 @@ color: #dedede; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5096,7 +4928,7 @@ color: #212529; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5110,7 +4942,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5121,7 +4953,7 @@ color: #dedede; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-menubar .p-submenu-list { @@ -5138,7 +4970,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5313,7 +5144,7 @@ color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5327,7 +5158,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5338,7 +5169,7 @@ color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5354,7 +5185,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #252525; @@ -5397,7 +5227,7 @@ color: #212529; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5411,7 +5241,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5422,7 +5252,7 @@ color: #dedede; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-slidemenu.p-slidemenu-overlay { @@ -5469,7 +5299,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; @@ -5514,7 +5343,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5585,7 +5413,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.1rem white; } - .p-tieredmenu { padding: 0; background: #252525; @@ -5636,7 +5463,7 @@ color: #212529; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #212529; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5650,7 +5477,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5661,7 +5488,7 @@ color: #dedede; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #dedede; } .p-tieredmenu .p-menuitem-separator { @@ -5675,7 +5502,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5731,7 +5557,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5820,7 +5645,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5871,7 +5695,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5881,7 +5705,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5891,7 +5715,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5901,10 +5725,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5935,7 +5758,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5992,7 +5815,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -6002,7 +5825,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -6011,29 +5834,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6057,7 +5874,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #4b4b4b; border-radius: 3px; @@ -6078,11 +5894,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #323232; } - .p-badge { background: #F48FB1; color: #212529; @@ -6124,7 +5938,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #4b4b4b; color: #dedede; @@ -6160,7 +5973,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6175,7 +5987,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem white; } - .p-progressbar { border: 0 none; height: 24px; @@ -6191,7 +6002,6 @@ color: #212529; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6213,7 +6023,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6221,7 +6030,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #F48FB1; color: #212529; @@ -6254,7 +6062,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #323232; color: #dedede; diff --git a/src/assets/components/themes/md-dark-deeppurple/theme.css b/src/assets/components/themes/md-dark-deeppurple/theme.css index 917acca6a2a..ad8303810c3 100644 --- a/src/assets/components/themes/md-dark-deeppurple/theme.css +++ b/src/assets/components/themes/md-dark-deeppurple/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -244,7 +241,7 @@ } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item { padding: 1rem 1rem; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #f44435; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 1rem; } @@ -402,7 +387,7 @@ } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.5rem 1rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -410,13 +395,12 @@ margin-left: 0.5rem; } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44435; } - .p-autocomplete-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -445,11 +429,11 @@ } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group { margin: 0; @@ -463,11 +447,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44435; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 3rem; } @@ -475,28 +457,24 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 4rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44435; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #CE93D8; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; } .p-datepicker:not(.p-datepicker-inline) { @@ -513,12 +491,12 @@ background: #1e1e1e; font-weight: 500; margin: 0; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); border-top-right-radius: 4px; border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #CE93D8; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -597,13 +575,13 @@ } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); } .p-datepicker .p-datepicker-buttonbar .p-button { width: auto; } .p-datepicker .p-timepicker { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); padding: 0.5rem; } .p-datepicker .p-timepicker button { @@ -662,7 +640,7 @@ background: rgba(206, 147, 216, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { - border-left: 1px solid rgba(255, 255, 255, 0.12); + border-left: 1px solid hsla(0, 0%, 100%, 0.12); padding-right: 0.5rem; padding-left: 0.5rem; padding-top: 0; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 3rem; } @@ -707,12 +684,10 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 4rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -720,7 +695,7 @@ } .p-cascadeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44435; } - .p-cascadeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -783,11 +757,11 @@ } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content { padding: 1rem 1rem; @@ -795,21 +769,18 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44435; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 1rem; } @@ -817,7 +788,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,13 +796,12 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; } .p-checkbox .p-checkbox-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 18px; height: 18px; @@ -867,32 +836,27 @@ background: #CE93D8; color: #121212; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-input-filled .p-checkbox .p-checkbox-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #CE93D8; } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #CE93D8; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(255, 255, 255, 0.6); } @@ -909,12 +873,12 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.5rem 1rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } .p-chips .p-chips-multiple-container .p-chips-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44435; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 2rem; } @@ -943,29 +905,25 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #2b2b2b; border: 1px solid #1e1e1e; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44435; } - .p-dropdown-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1016,7 +973,7 @@ } .p-dropdown-panel .p-dropdown-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1052,11 +1009,11 @@ } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; @@ -1070,98 +1027,87 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44435; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); - border-top: 1px solid rgba(255, 255, 255, 0.3); - border-left: 1px solid rgba(255, 255, 255, 0.3); - border-bottom: 1px solid rgba(255, 255, 255, 0.3); + border-top: 1px solid hsla(0, 0%, 100%, 0.3); + border-left: 1px solid hsla(0, 0%, 100%, 0.3); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.3); padding: 1rem 1rem; min-width: 2.357rem; } .p-inputgroup-addon:last-child { - border-right: 1px solid rgba(255, 255, 255, 0.3); + border-right: 1px solid hsla(0, 0%, 100%, 0.3); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44435; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 3rem; } @@ -1169,11 +1115,9 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44435; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 3rem; } @@ -1181,20 +1125,18 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 4rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 4rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; } .p-inputswitch .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 0.5rem; } @@ -1216,7 +1158,7 @@ box-shadow: none; } .p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); } .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { background: rgba(206, 147, 216, 0.5); @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(206, 147, 216, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44435; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1239,7 +1179,7 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; padding: 1rem 1rem; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); appearance: none; border-radius: 4px; @@ -1264,87 +1204,72 @@ font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-float-label > label { left: 1rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44435; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 1rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 1rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 3rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-inputtext:enabled:focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.875rem 0.875rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-listbox .p-listbox-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #1e1e1e; margin: 0; @@ -1397,11 +1322,11 @@ } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-listbox.p-focus { outline: 0 none; @@ -1409,14 +1334,12 @@ box-shadow: none; border-color: #CE93D8; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44435; } - .p-multiselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1439,7 +1362,7 @@ .p-multiselect.p-multiselect-chip .p-multiselect-token { padding: 0.5rem 1rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.5rem 1rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 2rem; } @@ -1465,7 +1386,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1475,7 +1395,7 @@ } .p-multiselect-panel .p-multiselect-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1533,11 +1453,11 @@ } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { margin-right: 0.5rem; @@ -1554,25 +1474,21 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44435; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44435; } - .p-password-panel { padding: 1rem; background: #1e1e1e; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 3rem; } @@ -1602,7 +1517,6 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 5rem; } @@ -1610,13 +1524,12 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-radiobutton { width: 20px; height: 20px; } .p-radiobutton .p-radiobutton-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 20px; height: 20px; @@ -1648,16 +1561,14 @@ background: #121212; color: #CE93D8; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44435; } - .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { background: #121212; @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #121212; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f44435; } - .p-selectbutton .p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,16 +1643,14 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44435; } - .p-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); border: 0 none; border-radius: 4px; } @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,17 +1734,15 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44435; } - .p-treeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1862,7 +1765,7 @@ .p-treeselect.p-treeselect-chip .p-treeselect-token { padding: 0.5rem 1rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44435; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.5rem 1rem; } - .p-treeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1891,7 +1791,7 @@ } .p-treeselect-panel .p-treeselect-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1941,17 +1841,15 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 2rem; } @@ -1959,7 +1857,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { color: #121212; background: #CE93D8; @@ -2071,7 +1968,7 @@ padding: 0.714rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #A5D6A7; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(165, 214, 167, 0.92); color: #121212; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(165, 214, 167, 0.68); color: #121212; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #A5D6A7; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(165, 214, 167, 0.04); color: #A5D6A7; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(165, 214, 167, 0.16); color: #A5D6A7; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #A5D6A7; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(165, 214, 167, 0.04); border-color: transparent; color: #A5D6A7; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(165, 214, 167, 0.16); border-color: transparent; color: #A5D6A7; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212121; background: #90caf9; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(144, 202, 249, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(144, 202, 249, 0.16); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #90caf9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); border-color: transparent; color: #90caf9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(144, 202, 249, 0.16); border-color: transparent; color: #90caf9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212121; background: #c5e1a5; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(197, 225, 165, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212121; background: #fff59d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(255, 245, 157, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 245, 157, 0.16); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fff59d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); border-color: transparent; color: #fff59d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 245, 157, 0.16); border-color: transparent; color: #fff59d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #212121; background: #ce93d8; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(206, 147, 216, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212121; background: #ef9a9a; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(239, 154, 154, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 154, 154, 0.16); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef9a9a; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); border-color: transparent; color: #ef9a9a; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 154, 154, 0.16); border-color: transparent; color: #ef9a9a; } - .p-button.p-button-link { color: #CE93D8; background: transparent; @@ -2549,7 +2438,6 @@ color: #CE93D8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(165, 214, 167, 0.92); color: #212121; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #A5D6A7; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #A5D6A7; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #90caf9; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #90caf9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fff59d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fff59d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef9a9a; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #ef9a9a; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(206, 147, 216, 0.16); color: #CE93D8; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #CE93D8; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2.5rem; height: 2.5rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2.5rem; height: 2.5rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -3297,7 +3162,7 @@ } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible { outline: 0 none; @@ -3305,13 +3170,12 @@ box-shadow: none; } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -3320,7 +3184,7 @@ } .p-column-filter-overlay-menu .p-column-filter-constraint { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); } .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown { margin-bottom: 0.5rem; @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3395,12 +3258,12 @@ transition: none; } .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { color: #CE93D8; @@ -3414,16 +3277,15 @@ color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list:not(.cdk-drop-list-dragging) .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,9 +3294,8 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); border-color: transparent; color: rgba(255, 255, 255, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.6); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3611,12 +3470,12 @@ transition: none; } .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list .p-picklist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { color: #CE93D8; @@ -3630,16 +3489,15 @@ color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list:not(.cdk-drop-list-dragging) .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -3730,19 +3586,19 @@ color: #CE93D8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #CE93D8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #CE93D8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-filter-container { @@ -3799,7 +3655,7 @@ color: inherit; } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content:focus { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #CE93D8; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.5rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4141,7 +3992,7 @@ padding: 0 1.25rem; } .p-divider.p-divider-horizontal:before { - border-top: 1px rgba(255, 255, 255, 0.12); + border-top: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-horizontal .p-divider-content { padding: 0 0.5rem; @@ -4151,12 +4002,11 @@ padding: 1.25rem 0; } .p-divider.p-divider-vertical:before { - border-left: 1px rgba(255, 255, 255, 0.12); + border-left: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid rgba(255, 255, 255, 0.12); padding: 1rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(255, 255, 255, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4284,10 +4131,10 @@ } .p-splitter .p-splitter-gutter { transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible { outline: 0 none; @@ -4295,9 +4142,8 @@ box-shadow: none; } .p-splitter .p-splitter-gutter-resizing { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #262626; } - .p-sidebar { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4551,7 +4392,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #444444; color: rgba(255, 255, 255, 0.87); @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #444444; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 1rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(206, 147, 216, 0.92); color: #121212; @@ -4652,7 +4490,6 @@ color: #121212; border-color: transparent; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #2b2b2b; @@ -4732,7 +4568,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4740,13 +4576,13 @@ } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,11 +4593,11 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-contextmenu .p-submenu-icon { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4887,13 +4721,13 @@ } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4927,7 +4761,7 @@ width: 12.5rem; } .p-megamenu .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-megamenu.p-megamenu-vertical { @@ -4962,10 +4796,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } - .p-menu { padding: 0.5rem 0; background: #1e1e1e; @@ -5002,7 +4835,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5010,13 +4843,13 @@ } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu.p-menu-overlay { @@ -5045,7 +4878,7 @@ border-top-left-radius: 0; } .p-menu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menu .p-menuitem-badge { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 1rem; background: #1e1e1e; @@ -5100,7 +4932,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5139,13 +4971,13 @@ } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-submenu-list { @@ -5167,13 +4999,12 @@ width: 12.5rem; } .p-menubar .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5205,7 +5036,7 @@ width: 100%; } .p-menubar .p-menubar-root-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-menubar-root-list .p-submenu-icon { @@ -5348,7 +5179,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5356,13 +5187,13 @@ } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,14 +5204,14 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { margin-right: 0.5rem; } .p-panelmenu .p-panelmenu-content .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5456,7 +5286,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5464,13 +5294,13 @@ } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5496,7 +5326,7 @@ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-slidemenu .p-slidemenu-icon { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5565,7 +5394,7 @@ } .p-steps .p-steps-item:before { content: " "; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); width: 100%; top: 50%; left: 0; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: solid rgba(255, 255, 255, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5695,7 +5522,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5703,13 +5530,13 @@ } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,11 +5547,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-tieredmenu .p-submenu-icon { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 1rem 1rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,9 +5933,8 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); border-radius: 4px; } .p-avatar.p-avatar-lg { @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #CE93D8; color: #121212; @@ -6183,9 +5997,8 @@ height: 3rem; line-height: 3rem; } - .p-chip { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; padding: 0 1rem; @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #121212; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #CE93D8; color: #121212; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6365,17 +6172,15 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6385,13 +6190,13 @@ background-color: transparent; } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,105 +6299,98 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(165, 214, 167, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(165, 214, 167, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(165, 214, 167, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(165, 214, 167, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(165, 214, 167, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(144, 202, 249, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(144, 202, 249, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(144, 202, 249, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(144, 202, 249, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(144, 202, 249, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(197, 225, 165, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(197, 225, 165, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(197, 225, 165, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(197, 225, 165, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(197, 225, 165, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(255, 245, 157, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(255, 245, 157, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(255, 245, 157, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(255, 245, 157, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(255, 245, 157, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(206, 147, 216, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(206, 147, 216, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(206, 147, 216, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(206, 147, 216, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(206, 147, 216, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(239, 154, 154, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(239, 154, 154, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(239, 154, 154, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(239, 154, 154, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(239, 154, 154, 0.16); } - .p-calendar-w-btn { - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); background: #1e1e1e; border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6657,7 +6449,7 @@ order: 3; } .p-datepicker table th { - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.38); font-weight: 400; font-size: 0.875rem; @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(206, 147, 216, 0.16); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } @@ -6681,13 +6472,12 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6697,13 +6487,13 @@ background-color: transparent; } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-focus, .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,17 +6537,15 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-cascadeselect-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6768,13 +6555,13 @@ background-color: transparent; } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus, .p-input-filled .p-cascadeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -6820,30 +6606,27 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #A5D6A7; color: #121212; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; } .p-checkbox .p-checkbox-box { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); border-radius: 2px; position: relative; } .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled).p-focus { border-color: #CE93D8; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(206, 147, 216, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #1e1e1e; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #1e1e1e; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,13 +6682,12 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6917,13 +6697,13 @@ background-color: transparent; } .p-input-filled .p-chips-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #CE93D8; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #CE93D8; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,17 +6766,15 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-dropdown-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7012,13 +6784,13 @@ background-color: transparent; } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus, .p-input-filled .p-dropdown:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,32 +6826,30 @@ background: rgba(165, 214, 167, 0.68); color: #121212; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); } .p-input-filled .p-inputtext:enabled:focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7093,13 +6861,12 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(206, 147, 216, 0.12), 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(255, 255, 255, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #1e1e1e; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #CE93D8; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.5rem; padding-bottom: 0.5rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } @@ -7262,13 +7013,12 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(255, 255, 255, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7278,13 +7028,13 @@ background-color: transparent; } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus, .p-input-filled .p-multiselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(255, 255, 255, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,30 +7153,27 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; } .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled).p-focus { border-color: #CE93D8; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(206, 147, 216, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #1e1e1e; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #1e1e1e; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(244, 68, 53, 0.04); } - .p-selectbutton .p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7489,14 +7225,12 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #CE93D8; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,17 +7341,15 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-treeselect-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7633,13 +7359,13 @@ background-color: transparent; } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus, .p-input-filled .p-treeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #CE93D8; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7754,7 +7472,6 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(206, 147, 216, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(165, 214, 167, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(165, 214, 167, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(144, 202, 249, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(197, 225, 165, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(255, 245, 157, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(206, 147, 216, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(239, 154, 154, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(165, 214, 167, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/md-dark-indigo/theme.css b/src/assets/components/themes/md-dark-indigo/theme.css index d3a215d5b96..26d8861801b 100644 --- a/src/assets/components/themes/md-dark-indigo/theme.css +++ b/src/assets/components/themes/md-dark-indigo/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -244,7 +241,7 @@ } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item { padding: 1rem 1rem; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #f44435; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 1rem; } @@ -402,7 +387,7 @@ } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.5rem 1rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -410,13 +395,12 @@ margin-left: 0.5rem; } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44435; } - .p-autocomplete-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -445,11 +429,11 @@ } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group { margin: 0; @@ -463,11 +447,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44435; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 3rem; } @@ -475,28 +457,24 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 4rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44435; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #9FA8DA; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; } .p-datepicker:not(.p-datepicker-inline) { @@ -513,12 +491,12 @@ background: #1e1e1e; font-weight: 500; margin: 0; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); border-top-right-radius: 4px; border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #9FA8DA; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -597,13 +575,13 @@ } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); } .p-datepicker .p-datepicker-buttonbar .p-button { width: auto; } .p-datepicker .p-timepicker { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); padding: 0.5rem; } .p-datepicker .p-timepicker button { @@ -662,7 +640,7 @@ background: rgba(159, 168, 218, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { - border-left: 1px solid rgba(255, 255, 255, 0.12); + border-left: 1px solid hsla(0, 0%, 100%, 0.12); padding-right: 0.5rem; padding-left: 0.5rem; padding-top: 0; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 3rem; } @@ -707,12 +684,10 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 4rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -720,7 +695,7 @@ } .p-cascadeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44435; } - .p-cascadeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -783,11 +757,11 @@ } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content { padding: 1rem 1rem; @@ -795,21 +769,18 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44435; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 1rem; } @@ -817,7 +788,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,13 +796,12 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; } .p-checkbox .p-checkbox-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 18px; height: 18px; @@ -867,32 +836,27 @@ background: #9FA8DA; color: #121212; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-input-filled .p-checkbox .p-checkbox-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #9FA8DA; } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9FA8DA; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(255, 255, 255, 0.6); } @@ -909,12 +873,12 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.5rem 1rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } .p-chips .p-chips-multiple-container .p-chips-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44435; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 2rem; } @@ -943,29 +905,25 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #2b2b2b; border: 1px solid #1e1e1e; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44435; } - .p-dropdown-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1016,7 +973,7 @@ } .p-dropdown-panel .p-dropdown-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1052,11 +1009,11 @@ } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; @@ -1070,98 +1027,87 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44435; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); - border-top: 1px solid rgba(255, 255, 255, 0.3); - border-left: 1px solid rgba(255, 255, 255, 0.3); - border-bottom: 1px solid rgba(255, 255, 255, 0.3); + border-top: 1px solid hsla(0, 0%, 100%, 0.3); + border-left: 1px solid hsla(0, 0%, 100%, 0.3); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.3); padding: 1rem 1rem; min-width: 2.357rem; } .p-inputgroup-addon:last-child { - border-right: 1px solid rgba(255, 255, 255, 0.3); + border-right: 1px solid hsla(0, 0%, 100%, 0.3); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44435; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 3rem; } @@ -1169,11 +1115,9 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44435; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 3rem; } @@ -1181,20 +1125,18 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 4rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 4rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; } .p-inputswitch .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 0.5rem; } @@ -1216,7 +1158,7 @@ box-shadow: none; } .p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); } .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { background: rgba(159, 168, 218, 0.5); @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(159, 168, 218, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44435; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1239,7 +1179,7 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; padding: 1rem 1rem; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); appearance: none; border-radius: 4px; @@ -1264,87 +1204,72 @@ font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-float-label > label { left: 1rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44435; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 1rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 1rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 3rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-inputtext:enabled:focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.875rem 0.875rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-listbox .p-listbox-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #1e1e1e; margin: 0; @@ -1397,11 +1322,11 @@ } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-listbox.p-focus { outline: 0 none; @@ -1409,14 +1334,12 @@ box-shadow: none; border-color: #9FA8DA; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44435; } - .p-multiselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1439,7 +1362,7 @@ .p-multiselect.p-multiselect-chip .p-multiselect-token { padding: 0.5rem 1rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.5rem 1rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 2rem; } @@ -1465,7 +1386,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1475,7 +1395,7 @@ } .p-multiselect-panel .p-multiselect-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1533,11 +1453,11 @@ } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { margin-right: 0.5rem; @@ -1554,25 +1474,21 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44435; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44435; } - .p-password-panel { padding: 1rem; background: #1e1e1e; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 3rem; } @@ -1602,7 +1517,6 @@ color: rgba(255, 255, 255, 0.6); right: 1rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 5rem; } @@ -1610,13 +1524,12 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-radiobutton { width: 20px; height: 20px; } .p-radiobutton .p-radiobutton-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 20px; height: 20px; @@ -1648,16 +1561,14 @@ background: #121212; color: #9FA8DA; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44435; } - .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { background: #121212; @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #121212; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f44435; } - .p-selectbutton .p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,16 +1643,14 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44435; } - .p-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); border: 0 none; border-radius: 4px; } @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,17 +1734,15 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44435; } - .p-treeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1862,7 +1765,7 @@ .p-treeselect.p-treeselect-chip .p-treeselect-token { padding: 0.5rem 1rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44435; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.5rem 1rem; } - .p-treeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1891,7 +1791,7 @@ } .p-treeselect-panel .p-treeselect-header { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1941,17 +1841,15 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 2rem; } @@ -1959,7 +1857,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { color: #121212; background: #9FA8DA; @@ -2071,7 +1968,7 @@ padding: 0.714rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #F48FB1; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(244, 143, 177, 0.92); color: #121212; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(244, 143, 177, 0.68); color: #121212; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #F48FB1; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #F48FB1; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #F48FB1; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #F48FB1; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #F48FB1; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #F48FB1; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212121; background: #90caf9; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(144, 202, 249, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(144, 202, 249, 0.16); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #90caf9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); border-color: transparent; color: #90caf9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(144, 202, 249, 0.16); border-color: transparent; color: #90caf9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212121; background: #c5e1a5; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(197, 225, 165, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212121; background: #fff59d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(255, 245, 157, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 245, 157, 0.16); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fff59d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); border-color: transparent; color: #fff59d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 245, 157, 0.16); border-color: transparent; color: #fff59d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #212121; background: #ce93d8; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(206, 147, 216, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212121; background: #ef9a9a; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(239, 154, 154, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 154, 154, 0.16); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef9a9a; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); border-color: transparent; color: #ef9a9a; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 154, 154, 0.16); border-color: transparent; color: #ef9a9a; } - .p-button.p-button-link { color: #9FA8DA; background: transparent; @@ -2549,7 +2438,6 @@ color: #9FA8DA; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(244, 143, 177, 0.92); color: #212121; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #F48FB1; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #F48FB1; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #90caf9; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #90caf9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fff59d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fff59d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef9a9a; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #ef9a9a; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(159, 168, 218, 0.16); color: #9FA8DA; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #9FA8DA; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2.5rem; height: 2.5rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2.5rem; height: 2.5rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -3297,7 +3162,7 @@ } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible { outline: 0 none; @@ -3305,13 +3170,12 @@ box-shadow: none; } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -3320,7 +3184,7 @@ } .p-column-filter-overlay-menu .p-column-filter-constraint { padding: 1rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); } .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown { margin-bottom: 0.5rem; @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3395,12 +3258,12 @@ transition: none; } .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { color: #9FA8DA; @@ -3414,16 +3277,15 @@ color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list:not(.cdk-drop-list-dragging) .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,9 +3294,8 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); border-color: transparent; color: rgba(255, 255, 255, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.6); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3611,12 +3470,12 @@ transition: none; } .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list .p-picklist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { color: #9FA8DA; @@ -3630,16 +3489,15 @@ color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list:not(.cdk-drop-list-dragging) .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -3730,19 +3586,19 @@ color: #9FA8DA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #9FA8DA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #9FA8DA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-filter-container { @@ -3799,7 +3655,7 @@ color: inherit; } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content:focus { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #9FA8DA; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.5rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4141,7 +3992,7 @@ padding: 0 1.25rem; } .p-divider.p-divider-horizontal:before { - border-top: 1px rgba(255, 255, 255, 0.12); + border-top: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-horizontal .p-divider-content { padding: 0 0.5rem; @@ -4151,12 +4002,11 @@ padding: 1.25rem 0; } .p-divider.p-divider-vertical:before { - border-left: 1px rgba(255, 255, 255, 0.12); + border-left: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid rgba(255, 255, 255, 0.12); padding: 1rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(255, 255, 255, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4284,10 +4131,10 @@ } .p-splitter .p-splitter-gutter { transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible { outline: 0 none; @@ -4295,9 +4142,8 @@ box-shadow: none; } .p-splitter .p-splitter-gutter-resizing { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #262626; } - .p-sidebar { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4551,7 +4392,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2.5rem; height: 2.5rem; color: rgba(255, 255, 255, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #444444; color: rgba(255, 255, 255, 0.87); @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #444444; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 1rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(159, 168, 218, 0.92); color: #121212; @@ -4652,7 +4490,6 @@ color: #121212; border-color: transparent; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #2b2b2b; @@ -4732,7 +4568,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4740,13 +4576,13 @@ } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,11 +4593,11 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-contextmenu .p-submenu-icon { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4887,13 +4721,13 @@ } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4927,7 +4761,7 @@ width: 12.5rem; } .p-megamenu .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-megamenu.p-megamenu-vertical { @@ -4962,10 +4796,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } - .p-menu { padding: 0.5rem 0; background: #1e1e1e; @@ -5002,7 +4835,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5010,13 +4843,13 @@ } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu.p-menu-overlay { @@ -5045,7 +4878,7 @@ border-top-left-radius: 0; } .p-menu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menu .p-menuitem-badge { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 1rem; background: #1e1e1e; @@ -5100,7 +4932,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5139,13 +4971,13 @@ } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-submenu-list { @@ -5167,13 +4999,12 @@ width: 12.5rem; } .p-menubar .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5205,7 +5036,7 @@ width: 100%; } .p-menubar .p-menubar-root-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-menubar-root-list .p-submenu-icon { @@ -5348,7 +5179,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5356,13 +5187,13 @@ } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,14 +5204,14 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { margin-right: 0.5rem; } .p-panelmenu .p-panelmenu-content .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5456,7 +5286,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5464,13 +5294,13 @@ } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5496,7 +5326,7 @@ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-slidemenu .p-slidemenu-icon { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5565,7 +5394,7 @@ } .p-steps .p-steps-item:before { content: " "; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); width: 100%; top: 50%; left: 0; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: solid rgba(255, 255, 255, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5695,7 +5522,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5703,13 +5530,13 @@ } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,11 +5547,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-tieredmenu .p-submenu-icon { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 1rem 1rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,9 +5933,8 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); border-radius: 4px; } .p-avatar.p-avatar-lg { @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #9FA8DA; color: #121212; @@ -6183,9 +5997,8 @@ height: 3rem; line-height: 3rem; } - .p-chip { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; padding: 0 1rem; @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #121212; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #9FA8DA; color: #121212; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6365,17 +6172,15 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6385,13 +6190,13 @@ background-color: transparent; } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,105 +6299,98 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(244, 143, 177, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(244, 143, 177, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(244, 143, 177, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(244, 143, 177, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(244, 143, 177, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(144, 202, 249, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(144, 202, 249, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(144, 202, 249, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(144, 202, 249, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(144, 202, 249, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(197, 225, 165, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(197, 225, 165, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(197, 225, 165, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(197, 225, 165, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(197, 225, 165, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(255, 245, 157, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(255, 245, 157, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(255, 245, 157, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(255, 245, 157, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(255, 245, 157, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(206, 147, 216, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(206, 147, 216, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(206, 147, 216, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(206, 147, 216, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(206, 147, 216, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(239, 154, 154, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(239, 154, 154, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(239, 154, 154, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(239, 154, 154, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(239, 154, 154, 0.16); } - .p-calendar-w-btn { - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); background: #1e1e1e; border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6657,7 +6449,7 @@ order: 3; } .p-datepicker table th { - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.38); font-weight: 400; font-size: 0.875rem; @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(159, 168, 218, 0.16); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } @@ -6681,13 +6472,12 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6697,13 +6487,13 @@ background-color: transparent; } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-focus, .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,17 +6537,15 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-cascadeselect-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6768,13 +6555,13 @@ background-color: transparent; } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus, .p-input-filled .p-cascadeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -6820,30 +6606,27 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #F48FB1; color: #121212; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; } .p-checkbox .p-checkbox-box { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); border-radius: 2px; position: relative; } .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled).p-focus { border-color: #9FA8DA; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(159, 168, 218, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #1e1e1e; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #1e1e1e; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,13 +6682,12 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6917,13 +6697,13 @@ background-color: transparent; } .p-input-filled .p-chips-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #9FA8DA; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #9FA8DA; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,17 +6766,15 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-dropdown-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7012,13 +6784,13 @@ background-color: transparent; } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus, .p-input-filled .p-dropdown:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,32 +6826,30 @@ background: rgba(244, 143, 177, 0.68); color: #121212; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); } .p-input-filled .p-inputtext:enabled:focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7093,13 +6861,12 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(159, 168, 218, 0.12), 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(255, 255, 255, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #1e1e1e; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #9FA8DA; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.5rem; padding-bottom: 0.5rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } @@ -7262,13 +7013,12 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(255, 255, 255, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7278,13 +7028,13 @@ background-color: transparent; } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus, .p-input-filled .p-multiselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(255, 255, 255, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,30 +7153,27 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; } .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled).p-focus { border-color: #9FA8DA; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(159, 168, 218, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #1e1e1e; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #1e1e1e; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(244, 68, 53, 0.04); } - .p-selectbutton .p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7489,14 +7225,12 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #9FA8DA; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,17 +7341,15 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-treeselect-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7633,13 +7359,13 @@ background-color: transparent; } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus, .p-input-filled .p-treeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #9FA8DA; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7754,7 +7472,6 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(159, 168, 218, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(244, 143, 177, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(244, 143, 177, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(144, 202, 249, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(197, 225, 165, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(255, 245, 157, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(206, 147, 216, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(239, 154, 154, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(244, 143, 177, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/md-light-deeppurple/theme.css b/src/assets/components/themes/md-light-deeppurple/theme.css index 95fc4f3f7ac..156668ea147 100644 --- a/src/assets/components/themes/md-light-deeppurple/theme.css +++ b/src/assets/components/themes/md-light-deeppurple/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #b00020; } - .p-text-secondary { color: rgba(0, 0, 0, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 1rem; } @@ -416,7 +401,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #b00020; } - .p-autocomplete-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -463,11 +447,9 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #b00020; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 3rem; } @@ -475,23 +457,19 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(0, 0, 0, 0.6); right: 4rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #b00020; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #673AB7; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -518,7 +496,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(0, 0, 0, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #673AB7; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -589,7 +567,7 @@ .p-datepicker table td.p-datepicker-today > span { background: #ffffff; color: rgba(0, 0, 0, 0.87); - border-color: black; + border-color: rgb(0, 0, 0); } .p-datepicker table td.p-datepicker-today > span.p-highlight { color: #673AB7; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 3rem; } @@ -707,12 +684,10 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(0, 0, 0, 0.6); right: 4rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #b00020; } - .p-cascadeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -795,7 +769,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f5f5f5; } @@ -805,11 +778,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #b00020; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 1rem; } @@ -817,7 +788,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,7 +796,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; @@ -867,11 +836,9 @@ background: #673AB7; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } @@ -884,15 +851,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #673AB7; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(0, 0, 0, 0.87); } @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #b00020; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 2rem; } @@ -943,26 +905,22 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #b00020; } - .p-dropdown-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1070,7 +1027,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #f5f5f5; } @@ -1083,11 +1039,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #b00020; } - .p-inputgroup-addon { background: #ffffff; color: rgba(0, 0, 0, 0.6); @@ -1100,68 +1054,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid rgba(0, 0, 0, 0.38); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #b00020; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 3rem; } @@ -1169,11 +1115,9 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #b00020; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 3rem; } @@ -1181,14 +1125,12 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 4rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 4rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(103, 58, 183, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #b00020; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1264,57 +1204,45 @@ font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-float-label > label { left: 1rem; color: rgba(0, 0, 0, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #b00020; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 1rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 1rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 3rem; } - ::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.6); } - :-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - ::-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - :-ms-input-placeholder { color: rgba(0, 0, 0, 0.6); } - .p-input-filled .p-inputtext { background-color: #f5f5f5; } @@ -1324,17 +1252,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #dcdcdc; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.875rem 0.875rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-listbox { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1409,11 +1334,9 @@ box-shadow: none; border-color: #673AB7; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #b00020; } - .p-multiselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.5rem 1rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 2rem; } @@ -1465,7 +1386,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1554,7 +1474,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #f5f5f5; } @@ -1564,15 +1483,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #b00020; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #b00020; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 3rem; } @@ -1602,7 +1517,6 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 5rem; } @@ -1610,7 +1524,6 @@ color: rgba(0, 0, 0, 0.6); right: 3rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1648,11 +1561,9 @@ background: #ffffff; color: #673AB7; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #b00020; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f5f5f5; } @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffffff; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b00020; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,14 +1643,12 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #b00020; } - .p-slider { background: #c1c1c1; border: 0 none; @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,14 +1734,12 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #b00020; } - .p-treeselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #b00020; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.5rem 1rem; } - .p-treeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1941,7 +1841,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #f5f5f5; } @@ -1951,7 +1850,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 2rem; } @@ -1959,7 +1857,6 @@ color: rgba(0, 0, 0, 0.6); right: 3rem; } - .p-button { color: #ffffff; background: #673AB7; @@ -2071,7 +1968,7 @@ padding: 0.714rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #4CAF50; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(76, 175, 80, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(76, 175, 80, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #4CAF50; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(76, 175, 80, 0.04); color: #4CAF50; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(76, 175, 80, 0.16); color: #4CAF50; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #4CAF50; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(76, 175, 80, 0.04); border-color: transparent; color: #4CAF50; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(76, 175, 80, 0.16); border-color: transparent; color: #4CAF50; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #2196f3; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(33, 150, 243, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(33, 150, 243, 0.16); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #2196f3; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); border-color: transparent; color: #2196f3; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(33, 150, 243, 0.16); border-color: transparent; color: #2196f3; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(104, 159, 56, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(251, 192, 45, 0.92); color: #212529; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.68); color: #212529; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(156, 39, 176, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(211, 47, 47, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #673AB7; background: transparent; @@ -2549,7 +2438,6 @@ color: #673AB7; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(76, 175, 80, 0.92); color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #4CAF50; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #4CAF50; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #2196f3; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #2196f3; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(103, 58, 183, 0.12); color: #673AB7; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #673AB7; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #ffffff; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2.5rem; height: 2.5rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2.5rem; height: 2.5rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3308,7 +3173,6 @@ border-top: 1px solid rgba(0, 0, 0, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 1rem; border-bottom: 1px solid rgba(0, 0, 0, 0.12); @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3423,7 +3286,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,7 +3294,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); color: rgba(0, 0, 0, 0.87); @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(0, 0, 0, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); border-color: transparent; color: rgba(0, 0, 0, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(0, 0, 0, 0.6); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3639,7 +3498,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e0e0e0; background: #ffffff; @@ -3730,11 +3586,11 @@ color: #673AB7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #673AB7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #673AB7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #673AB7; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #ffffff; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.5rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4156,7 +4007,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e0e0e0; background: #ffffff; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #e0e0e0; padding: 1rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(0, 0, 0, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid #e0e0e0; background: #ffffff; @@ -4297,7 +4144,6 @@ .p-splitter .p-splitter-gutter-resizing { background: rgba(0, 0, 0, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #ffffff; border: 1px solid #e0e0e0; @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4551,7 +4392,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: rgba(97, 97, 97, 0.9); color: #ffffff; @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: rgba(97, 97, 97, 0.9); } - .p-fileupload .p-fileupload-buttonbar { background: #ffffff; padding: 1rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(103, 58, 183, 0.92); color: #ffffff; @@ -4652,7 +4490,6 @@ color: #ffffff; border-color: transparent; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e5e5; @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(0, 0, 0, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4732,7 +4568,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4746,7 +4582,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,7 +4593,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem-separator { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4893,7 +4727,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4962,10 +4796,9 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -5002,7 +4835,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5016,7 +4849,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu.p-menu-overlay { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 1rem; background: transparent; @@ -5100,7 +4932,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5145,7 +4977,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-submenu-list { @@ -5173,7 +5005,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5348,7 +5179,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5362,7 +5193,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,7 +5204,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5456,7 +5286,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5470,7 +5300,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: solid rgba(0, 0, 0, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5695,7 +5522,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5709,7 +5536,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,7 +5547,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem-separator { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 1rem 1rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,7 +5933,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: rgba(0, 0, 0, 0.12); border-radius: 4px; @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #673AB7; color: #ffffff; @@ -6183,7 +5997,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: rgba(0, 0, 0, 0.12); color: rgba(0, 0, 0, 0.87); @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #ffffff; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(0, 0, 0, 0.08); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #673AB7; color: #ffffff; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -6365,11 +6172,9 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,103 +6299,96 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(76, 175, 80, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(76, 175, 80, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(76, 175, 80, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(76, 175, 80, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(76, 175, 80, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(33, 150, 243, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(33, 150, 243, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(33, 150, 243, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(33, 150, 243, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(33, 150, 243, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(104, 159, 56, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(104, 159, 56, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(104, 159, 56, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(104, 159, 56, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(104, 159, 56, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(251, 192, 45, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(251, 192, 45, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(251, 192, 45, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(251, 192, 45, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(251, 192, 45, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(156, 39, 176, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(156, 39, 176, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(156, 39, 176, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(156, 39, 176, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(156, 39, 176, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(211, 47, 47, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(211, 47, 47, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(211, 47, 47, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(211, 47, 47, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(211, 47, 47, 0.16); } - .p-calendar-w-btn { border: 1px solid rgba(0, 0, 0, 0.38); background: #ffffff; @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(103, 58, 183, 0.12); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } @@ -6681,7 +6472,6 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,11 +6537,9 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-cascadeselect-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -6820,16 +6606,13 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #4CAF50; color: #ffffff; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(103, 58, 183, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #ffffff; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #ffffff; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,7 +6682,6 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #673AB7; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #673AB7; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,11 +6766,9 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-dropdown-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,14 +6826,12 @@ background: rgba(76, 175, 80, 0.68); color: #ffffff; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7093,7 +6861,6 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(103, 58, 183, 0.12), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(0, 0, 0, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #ffffff; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #673AB7; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.5rem; padding-bottom: 0.5rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } @@ -7262,7 +7013,6 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(0, 0, 0, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(0, 0, 0, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,21 +7153,18 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(103, 58, 183, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #ffffff; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #ffffff; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(176, 0, 32, 0.04); } - .p-selectbutton .p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7489,14 +7225,12 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #673AB7; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,11 +7341,9 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-treeselect-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #673AB7; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7754,7 +7472,6 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(103, 58, 183, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(76, 175, 80, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(76, 175, 80, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(33, 150, 243, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(104, 159, 56, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(251, 192, 45, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(156, 39, 176, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(211, 47, 47, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(76, 175, 80, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/md-light-indigo/theme.css b/src/assets/components/themes/md-light-indigo/theme.css index a34f6ec02b9..0e82f57d6fd 100644 --- a/src/assets/components/themes/md-light-indigo/theme.css +++ b/src/assets/components/themes/md-light-indigo/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #b00020; } - .p-text-secondary { color: rgba(0, 0, 0, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 1rem; } @@ -416,7 +401,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #b00020; } - .p-autocomplete-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -463,11 +447,9 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #b00020; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 3rem; } @@ -475,23 +457,19 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(0, 0, 0, 0.6); right: 4rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #b00020; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #3F51B5; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -518,7 +496,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(0, 0, 0, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #3F51B5; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -589,7 +567,7 @@ .p-datepicker table td.p-datepicker-today > span { background: #ffffff; color: rgba(0, 0, 0, 0.87); - border-color: black; + border-color: rgb(0, 0, 0); } .p-datepicker table td.p-datepicker-today > span.p-highlight { color: #3F51B5; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 3rem; } @@ -707,12 +684,10 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(0, 0, 0, 0.6); right: 4rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #b00020; } - .p-cascadeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -795,7 +769,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f5f5f5; } @@ -805,11 +778,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #b00020; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 1rem; } @@ -817,7 +788,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,7 +796,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; @@ -867,11 +836,9 @@ background: #3F51B5; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } @@ -884,15 +851,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3F51B5; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(0, 0, 0, 0.87); } @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #b00020; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 2rem; } @@ -943,26 +905,22 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #b00020; } - .p-dropdown-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1070,7 +1027,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #f5f5f5; } @@ -1083,11 +1039,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #b00020; } - .p-inputgroup-addon { background: #ffffff; color: rgba(0, 0, 0, 0.6); @@ -1100,68 +1054,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid rgba(0, 0, 0, 0.38); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #b00020; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 3rem; } @@ -1169,11 +1115,9 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #b00020; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 3rem; } @@ -1181,14 +1125,12 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 4rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 4rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(63, 81, 181, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #b00020; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1264,57 +1204,45 @@ font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-float-label > label { left: 1rem; color: rgba(0, 0, 0, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #b00020; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 1rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 1rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 3rem; } - ::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.6); } - :-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - ::-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - :-ms-input-placeholder { color: rgba(0, 0, 0, 0.6); } - .p-input-filled .p-inputtext { background-color: #f5f5f5; } @@ -1324,17 +1252,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #dcdcdc; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.875rem 0.875rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 1.25rem 1.25rem; } - .p-listbox { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1409,11 +1334,9 @@ box-shadow: none; border-color: #3F51B5; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #b00020; } - .p-multiselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.5rem 1rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 2rem; } @@ -1465,7 +1386,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1554,7 +1474,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #f5f5f5; } @@ -1564,15 +1483,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #b00020; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #b00020; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 3rem; } @@ -1602,7 +1517,6 @@ color: rgba(0, 0, 0, 0.6); right: 1rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 5rem; } @@ -1610,7 +1524,6 @@ color: rgba(0, 0, 0, 0.6); right: 3rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1648,11 +1561,9 @@ background: #ffffff; color: #3F51B5; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #b00020; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f5f5f5; } @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffffff; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b00020; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,14 +1643,12 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #b00020; } - .p-slider { background: #c1c1c1; border: 0 none; @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,14 +1734,12 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #b00020; } - .p-treeselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #b00020; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.5rem 1rem; } - .p-treeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1941,7 +1841,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #f5f5f5; } @@ -1951,7 +1850,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 2rem; } @@ -1959,7 +1857,6 @@ color: rgba(0, 0, 0, 0.6); right: 3rem; } - .p-button { color: #ffffff; background: #3F51B5; @@ -2071,7 +1968,7 @@ padding: 0.714rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #ff4081; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(255, 64, 129, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(255, 64, 129, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #ff4081; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 64, 129, 0.04); color: #ff4081; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 64, 129, 0.16); color: #ff4081; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #ff4081; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 64, 129, 0.04); border-color: transparent; color: #ff4081; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 64, 129, 0.16); border-color: transparent; color: #ff4081; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #2196f3; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(33, 150, 243, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(33, 150, 243, 0.16); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #2196f3; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); border-color: transparent; color: #2196f3; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(33, 150, 243, 0.16); border-color: transparent; color: #2196f3; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(104, 159, 56, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(251, 192, 45, 0.92); color: #212529; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.68); color: #212529; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(156, 39, 176, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(211, 47, 47, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #3F51B5; background: transparent; @@ -2549,7 +2438,6 @@ color: #3F51B5; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(255, 64, 129, 0.92); color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #ff4081; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #ff4081; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #2196f3; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #2196f3; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(63, 81, 181, 0.12); color: #3F51B5; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #3F51B5; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #ffffff; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2.5rem; height: 2.5rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2.5rem; height: 2.5rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3308,7 +3173,6 @@ border-top: 1px solid rgba(0, 0, 0, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 1rem; border-bottom: 1px solid rgba(0, 0, 0, 0.12); @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3423,7 +3286,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,7 +3294,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); color: rgba(0, 0, 0, 0.87); @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(0, 0, 0, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); border-color: transparent; color: rgba(0, 0, 0, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(0, 0, 0, 0.6); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3639,7 +3498,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 1rem 1rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e0e0e0; background: #ffffff; @@ -3730,11 +3586,11 @@ color: #3F51B5; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #3F51B5; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #3F51B5; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #3F51B5; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #ffffff; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.5rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4156,7 +4007,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e0e0e0; background: #ffffff; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #e0e0e0; padding: 1rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(0, 0, 0, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid #e0e0e0; background: #ffffff; @@ -4297,7 +4144,6 @@ .p-splitter .p-splitter-gutter-resizing { background: rgba(0, 0, 0, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #ffffff; border: 1px solid #e0e0e0; @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4551,7 +4392,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2.5rem; height: 2.5rem; color: rgba(0, 0, 0, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: rgba(97, 97, 97, 0.9); color: #ffffff; @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: rgba(97, 97, 97, 0.9); } - .p-fileupload .p-fileupload-buttonbar { background: #ffffff; padding: 1rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(63, 81, 181, 0.92); color: #ffffff; @@ -4652,7 +4490,6 @@ color: #ffffff; border-color: transparent; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e5e5; @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(0, 0, 0, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4732,7 +4568,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4746,7 +4582,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,7 +4593,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem-separator { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4893,7 +4727,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4962,10 +4796,9 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -5002,7 +4835,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5016,7 +4849,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu.p-menu-overlay { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 1rem; background: transparent; @@ -5100,7 +4932,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5145,7 +4977,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-submenu-list { @@ -5173,7 +5005,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5348,7 +5179,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5362,7 +5193,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,7 +5204,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5456,7 +5286,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5470,7 +5300,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: solid rgba(0, 0, 0, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5695,7 +5522,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5709,7 +5536,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,7 +5547,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem-separator { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 1rem 1rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,7 +5933,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: rgba(0, 0, 0, 0.12); border-radius: 4px; @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #3F51B5; color: #ffffff; @@ -6183,7 +5997,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: rgba(0, 0, 0, 0.12); color: rgba(0, 0, 0, 0.87); @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #ffffff; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(0, 0, 0, 0.08); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #3F51B5; color: #ffffff; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -6365,11 +6172,9 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,103 +6299,96 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(255, 64, 129, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(255, 64, 129, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(255, 64, 129, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(255, 64, 129, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(255, 64, 129, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(33, 150, 243, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(33, 150, 243, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(33, 150, 243, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(33, 150, 243, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(33, 150, 243, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(104, 159, 56, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(104, 159, 56, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(104, 159, 56, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(104, 159, 56, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(104, 159, 56, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(251, 192, 45, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(251, 192, 45, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(251, 192, 45, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(251, 192, 45, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(251, 192, 45, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(156, 39, 176, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(156, 39, 176, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(156, 39, 176, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(156, 39, 176, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(156, 39, 176, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(211, 47, 47, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(211, 47, 47, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(211, 47, 47, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(211, 47, 47, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(211, 47, 47, 0.16); } - .p-calendar-w-btn { border: 1px solid rgba(0, 0, 0, 0.38); background: #ffffff; @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(63, 81, 181, 0.12); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } @@ -6681,7 +6472,6 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,11 +6537,9 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-cascadeselect-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -6820,16 +6606,13 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #ff4081; color: #ffffff; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(63, 81, 181, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #ffffff; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #ffffff; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,7 +6682,6 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #3F51B5; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #3F51B5; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,11 +6766,9 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-dropdown-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,14 +6826,12 @@ background: rgba(255, 64, 129, 0.68); color: #ffffff; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7093,7 +6861,6 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(63, 81, 181, 0.12), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(0, 0, 0, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #ffffff; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #3F51B5; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.5rem; padding-bottom: 0.5rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } @@ -7262,7 +7013,6 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(0, 0, 0, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(0, 0, 0, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,21 +7153,18 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(63, 81, 181, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #ffffff; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #ffffff; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(176, 0, 32, 0.04); } - .p-selectbutton .p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7489,14 +7225,12 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #3F51B5; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,11 +7341,9 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-treeselect-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.5rem; padding-bottom: 0.5rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #3F51B5; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7754,7 +7472,6 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(63, 81, 181, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(255, 64, 129, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(255, 64, 129, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(33, 150, 243, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(104, 159, 56, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(251, 192, 45, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(156, 39, 176, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(211, 47, 47, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(255, 64, 129, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/mdc-dark-deeppurple/theme.css b/src/assets/components/themes/mdc-dark-deeppurple/theme.css index 5895ad080df..cfa5abbc4fc 100644 --- a/src/assets/components/themes/mdc-dark-deeppurple/theme.css +++ b/src/assets/components/themes/mdc-dark-deeppurple/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -244,7 +241,7 @@ } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item { padding: 0.75rem 0.75rem; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #f44435; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -402,7 +387,7 @@ } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.375rem 0.75rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -410,13 +395,12 @@ margin-left: 0.5rem; } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44435; } - .p-autocomplete-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -445,11 +429,11 @@ } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group { margin: 0; @@ -463,11 +447,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44435; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -475,28 +457,24 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.5rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44435; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #CE93D8; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; } .p-datepicker:not(.p-datepicker-inline) { @@ -513,12 +491,12 @@ background: #1e1e1e; font-weight: 500; margin: 0; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); border-top-right-radius: 4px; border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #CE93D8; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -597,13 +575,13 @@ } .p-datepicker .p-datepicker-buttonbar { padding: 0.75rem 0; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); } .p-datepicker .p-datepicker-buttonbar .p-button { width: auto; } .p-datepicker .p-timepicker { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); padding: 0.5rem; } .p-datepicker .p-timepicker button { @@ -662,7 +640,7 @@ background: rgba(206, 147, 216, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { - border-left: 1px solid rgba(255, 255, 255, 0.12); + border-left: 1px solid hsla(0, 0%, 100%, 0.12); padding-right: 0.5rem; padding-left: 0.5rem; padding-top: 0; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -707,12 +684,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.5rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -720,7 +695,7 @@ } .p-cascadeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44435; } - .p-cascadeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -783,11 +757,11 @@ } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content { padding: 0.75rem 0.75rem; @@ -795,21 +769,18 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44435; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -817,7 +788,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.75rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,13 +796,12 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; } .p-checkbox .p-checkbox-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 18px; height: 18px; @@ -867,32 +836,27 @@ background: #CE93D8; color: #121212; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-input-filled .p-checkbox .p-checkbox-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #CE93D8; } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #CE93D8; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(255, 255, 255, 0.6); } @@ -909,12 +873,12 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.375rem 0.75rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } .p-chips .p-chips-multiple-container .p-chips-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44435; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -943,29 +905,25 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #2b2b2b; border: 1px solid #1e1e1e; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44435; } - .p-dropdown-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1016,7 +973,7 @@ } .p-dropdown-panel .p-dropdown-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1052,11 +1009,11 @@ } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; @@ -1070,98 +1027,87 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44435; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); - border-top: 1px solid rgba(255, 255, 255, 0.3); - border-left: 1px solid rgba(255, 255, 255, 0.3); - border-bottom: 1px solid rgba(255, 255, 255, 0.3); + border-top: 1px solid hsla(0, 0%, 100%, 0.3); + border-left: 1px solid hsla(0, 0%, 100%, 0.3); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.3); padding: 0.75rem 0.75rem; min-width: 2.75rem; } .p-inputgroup-addon:last-child { - border-right: 1px solid rgba(255, 255, 255, 0.3); + border-right: 1px solid hsla(0, 0%, 100%, 0.3); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.75rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44435; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1169,11 +1115,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44435; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1181,20 +1125,18 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.5rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.5rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; } .p-inputswitch .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 0.5rem; } @@ -1216,7 +1158,7 @@ box-shadow: none; } .p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); } .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { background: rgba(206, 147, 216, 0.5); @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(206, 147, 216, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44435; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1239,7 +1179,7 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; padding: 0.75rem 0.75rem; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); appearance: none; border-radius: 4px; @@ -1264,87 +1204,72 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44435; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-inputtext:enabled:focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-listbox .p-listbox-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #1e1e1e; margin: 0; @@ -1397,11 +1322,11 @@ } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-listbox.p-focus { outline: 0 none; @@ -1409,14 +1334,12 @@ box-shadow: none; border-color: #CE93D8; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44435; } - .p-multiselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1439,7 +1362,7 @@ .p-multiselect.p-multiselect-chip .p-multiselect-token { padding: 0.375rem 0.75rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1465,7 +1386,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.75rem; } - .p-multiselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1475,7 +1395,7 @@ } .p-multiselect-panel .p-multiselect-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1533,11 +1453,11 @@ } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { margin-right: 0.5rem; @@ -1554,25 +1474,21 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44435; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44435; } - .p-password-panel { padding: 0.75rem; background: #1e1e1e; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1602,7 +1517,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1610,13 +1524,12 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; } .p-radiobutton .p-radiobutton-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 20px; height: 20px; @@ -1648,16 +1561,14 @@ background: #121212; color: #CE93D8; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44435; } - .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { background: #121212; @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #121212; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f44435; } - .p-selectbutton .p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,16 +1643,14 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44435; } - .p-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); border: 0 none; border-radius: 4px; } @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,17 +1734,15 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44435; } - .p-treeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1862,7 +1765,7 @@ .p-treeselect.p-treeselect-chip .p-treeselect-token { padding: 0.375rem 0.75rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44435; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1891,7 +1791,7 @@ } .p-treeselect-panel .p-treeselect-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1941,17 +1841,15 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1959,7 +1857,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.75rem; } - .p-button { color: #121212; background: #CE93D8; @@ -2071,7 +1968,7 @@ padding: 0.643rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.75rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #A5D6A7; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(165, 214, 167, 0.92); color: #121212; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(165, 214, 167, 0.68); color: #121212; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #A5D6A7; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(165, 214, 167, 0.04); color: #A5D6A7; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(165, 214, 167, 0.16); color: #A5D6A7; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #A5D6A7; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(165, 214, 167, 0.04); border-color: transparent; color: #A5D6A7; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(165, 214, 167, 0.16); border-color: transparent; color: #A5D6A7; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212121; background: #90caf9; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(144, 202, 249, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(144, 202, 249, 0.16); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #90caf9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); border-color: transparent; color: #90caf9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(144, 202, 249, 0.16); border-color: transparent; color: #90caf9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212121; background: #c5e1a5; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(197, 225, 165, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212121; background: #fff59d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(255, 245, 157, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 245, 157, 0.16); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fff59d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); border-color: transparent; color: #fff59d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 245, 157, 0.16); border-color: transparent; color: #fff59d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #212121; background: #ce93d8; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(206, 147, 216, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212121; background: #ef9a9a; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(239, 154, 154, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 154, 154, 0.16); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef9a9a; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); border-color: transparent; color: #ef9a9a; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 154, 154, 0.16); border-color: transparent; color: #ef9a9a; } - .p-button.p-button-link { color: #CE93D8; background: transparent; @@ -2549,7 +2438,6 @@ color: #CE93D8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(165, 214, 167, 0.92); color: #212121; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #A5D6A7; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #A5D6A7; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #90caf9; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #90caf9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fff59d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fff59d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef9a9a; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #ef9a9a; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(206, 147, 216, 0.16); color: #CE93D8; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 0.75rem 0.75rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #CE93D8; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.9375rem 0.9375rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.75rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -3297,7 +3162,7 @@ } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible { outline: 0 none; @@ -3305,13 +3170,12 @@ box-shadow: none; } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -3320,7 +3184,7 @@ } .p-column-filter-overlay-menu .p-column-filter-constraint { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); } .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown { margin-bottom: 0.5rem; @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.75rem; } - .p-orderlist .p-orderlist-controls { padding: 0.75rem; } @@ -3395,12 +3258,12 @@ transition: none; } .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { color: #CE93D8; @@ -3414,16 +3277,15 @@ color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list:not(.cdk-drop-list-dragging) .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,9 +3294,8 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); border-color: transparent; color: rgba(255, 255, 255, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.6); } - .p-picklist .p-picklist-buttons { padding: 0.75rem; } @@ -3611,12 +3470,12 @@ transition: none; } .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list .p-picklist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { color: #CE93D8; @@ -3630,16 +3489,15 @@ color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list:not(.cdk-drop-list-dragging) .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -3730,19 +3586,19 @@ color: #CE93D8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #CE93D8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #CE93D8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-filter-container { @@ -3799,7 +3655,7 @@ color: inherit; } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content:focus { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #CE93D8; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.9375rem 0.9375rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 0.75rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4141,7 +3992,7 @@ padding: 0 1.25rem; } .p-divider.p-divider-horizontal:before { - border-top: 1px rgba(255, 255, 255, 0.12); + border-top: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-horizontal .p-divider-content { padding: 0 0.5rem; @@ -4151,12 +4002,11 @@ padding: 1.25rem 0; } .p-divider.p-divider-vertical:before { - border-left: 1px rgba(255, 255, 255, 0.12); + border-left: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 0.75rem; } - .p-panel .p-panel-header { border: 1px solid rgba(255, 255, 255, 0.12); padding: 0.75rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(255, 255, 255, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4284,10 +4131,10 @@ } .p-splitter .p-splitter-gutter { transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible { outline: 0 none; @@ -4295,9 +4142,8 @@ box-shadow: none; } .p-splitter .p-splitter-gutter-resizing { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.75rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #262626; } - .p-sidebar { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4551,7 +4392,7 @@ padding: 0.75rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.75rem; } - .p-tooltip .p-tooltip-text { background: #444444; color: rgba(255, 255, 255, 0.87); @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #444444; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 0.75rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(206, 147, 216, 0.92); color: #121212; @@ -4652,7 +4490,6 @@ color: #121212; border-color: transparent; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #2b2b2b; @@ -4732,7 +4568,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4740,13 +4576,13 @@ } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,11 +4593,11 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-contextmenu .p-submenu-icon { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4887,13 +4721,13 @@ } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4927,7 +4761,7 @@ width: 12.5rem; } .p-megamenu .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-megamenu.p-megamenu-vertical { @@ -4962,10 +4796,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } - .p-menu { padding: 0.5rem 0; background: #1e1e1e; @@ -5002,7 +4835,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5010,13 +4843,13 @@ } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu.p-menu-overlay { @@ -5045,7 +4878,7 @@ border-top-left-radius: 0; } .p-menu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menu .p-menuitem-badge { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.75rem; background: #1e1e1e; @@ -5100,7 +4932,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5139,13 +4971,13 @@ } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-submenu-list { @@ -5167,13 +4999,12 @@ width: 12.5rem; } .p-menubar .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5205,7 +5036,7 @@ width: 100%; } .p-menubar .p-menubar-root-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-menubar-root-list .p-submenu-icon { @@ -5348,7 +5179,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5356,13 +5187,13 @@ } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,14 +5204,14 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { margin-right: 0.5rem; } .p-panelmenu .p-panelmenu-content .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5456,7 +5286,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5464,13 +5294,13 @@ } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5496,7 +5326,7 @@ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-slidemenu .p-slidemenu-icon { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5565,7 +5394,7 @@ } .p-steps .p-steps-item:before { content: " "; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); width: 100%; top: 50%; left: 0; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: solid rgba(255, 255, 255, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5695,7 +5522,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5703,13 +5530,13 @@ } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,11 +5547,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-tieredmenu .p-submenu-icon { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 0.75rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,9 +5933,8 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); border-radius: 4px; } .p-avatar.p-avatar-lg { @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #CE93D8; color: #121212; @@ -6183,9 +5997,8 @@ height: 3rem; line-height: 3rem; } - .p-chip { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; padding: 0 0.75rem; @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #121212; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #CE93D8; color: #121212; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6365,17 +6172,15 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6385,13 +6190,13 @@ background-color: transparent; } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,105 +6299,98 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(165, 214, 167, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(165, 214, 167, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(165, 214, 167, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(165, 214, 167, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(165, 214, 167, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(144, 202, 249, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(144, 202, 249, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(144, 202, 249, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(144, 202, 249, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(144, 202, 249, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(197, 225, 165, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(197, 225, 165, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(197, 225, 165, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(197, 225, 165, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(197, 225, 165, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(255, 245, 157, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(255, 245, 157, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(255, 245, 157, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(255, 245, 157, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(255, 245, 157, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(206, 147, 216, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(206, 147, 216, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(206, 147, 216, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(206, 147, 216, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(206, 147, 216, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(239, 154, 154, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(239, 154, 154, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(239, 154, 154, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(239, 154, 154, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(239, 154, 154, 0.16); } - .p-calendar-w-btn { - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); background: #1e1e1e; border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6657,7 +6449,7 @@ order: 3; } .p-datepicker table th { - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.38); font-weight: 400; font-size: 0.875rem; @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(206, 147, 216, 0.16); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } @@ -6681,13 +6472,12 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6697,13 +6487,13 @@ background-color: transparent; } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-focus, .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,17 +6537,15 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-cascadeselect-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6768,13 +6555,13 @@ background-color: transparent; } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus, .p-input-filled .p-cascadeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -6820,30 +6606,27 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #A5D6A7; color: #121212; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; } .p-checkbox .p-checkbox-box { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); border-radius: 2px; position: relative; } .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled).p-focus { border-color: #CE93D8; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(206, 147, 216, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #1e1e1e; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #1e1e1e; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,13 +6682,12 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6917,13 +6697,13 @@ background-color: transparent; } .p-input-filled .p-chips-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #CE93D8; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #CE93D8; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,17 +6766,15 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-dropdown-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7012,13 +6784,13 @@ background-color: transparent; } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus, .p-input-filled .p-dropdown:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,32 +6826,30 @@ background: rgba(165, 214, 167, 0.68); color: #121212; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); } .p-input-filled .p-inputtext:enabled:focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7093,13 +6861,12 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(206, 147, 216, 0.12), 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(255, 255, 255, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #1e1e1e; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #CE93D8; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.25rem; padding-bottom: 0.25rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } @@ -7262,13 +7013,12 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(255, 255, 255, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7278,13 +7028,13 @@ background-color: transparent; } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus, .p-input-filled .p-multiselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(255, 255, 255, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,30 +7153,27 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; } .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled).p-focus { border-color: #CE93D8; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(206, 147, 216, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #1e1e1e; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #1e1e1e; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(244, 68, 53, 0.04); } - .p-selectbutton .p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7489,14 +7225,12 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #CE93D8; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,17 +7341,15 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8, inset 0 0 0 1px #CE93D8; } - .p-treeselect-item .p-ink { background-color: rgba(206, 147, 216, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7633,13 +7359,13 @@ background-color: transparent; } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #CE93D8, #CE93D8), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus, .p-input-filled .p-treeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(206, 147, 216, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #CE93D8; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7754,7 +7472,6 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(206, 147, 216, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(165, 214, 167, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(165, 214, 167, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(144, 202, 249, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(197, 225, 165, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(255, 245, 157, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(206, 147, 216, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(239, 154, 154, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(165, 214, 167, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/mdc-dark-indigo/theme.css b/src/assets/components/themes/mdc-dark-indigo/theme.css index 113d1c42c7d..a2335afc448 100644 --- a/src/assets/components/themes/mdc-dark-indigo/theme.css +++ b/src/assets/components/themes/mdc-dark-indigo/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -244,7 +241,7 @@ } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item { padding: 0.75rem 0.75rem; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #f44435; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -402,7 +387,7 @@ } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.375rem 0.75rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -410,13 +395,12 @@ margin-left: 0.5rem; } .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44435; } - .p-autocomplete-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -445,11 +429,11 @@ } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group { margin: 0; @@ -463,11 +447,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44435; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -475,28 +457,24 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.5rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44435; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #9FA8DA; } - .p-datepicker { padding: 0.5rem; background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; } .p-datepicker:not(.p-datepicker-inline) { @@ -513,12 +491,12 @@ background: #1e1e1e; font-weight: 500; margin: 0; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); border-top-right-radius: 4px; border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #9FA8DA; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -597,13 +575,13 @@ } .p-datepicker .p-datepicker-buttonbar { padding: 0.75rem 0; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); } .p-datepicker .p-datepicker-buttonbar .p-button { width: auto; } .p-datepicker .p-timepicker { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); padding: 0.5rem; } .p-datepicker .p-timepicker button { @@ -662,7 +640,7 @@ background: rgba(159, 168, 218, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { - border-left: 1px solid rgba(255, 255, 255, 0.12); + border-left: 1px solid hsla(0, 0%, 100%, 0.12); padding-right: 0.5rem; padding-left: 0.5rem; padding-top: 0; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -707,12 +684,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.5rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -720,7 +695,7 @@ } .p-cascadeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44435; } - .p-cascadeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -783,11 +757,11 @@ } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content { padding: 0.75rem 0.75rem; @@ -795,21 +769,18 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44435; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -817,7 +788,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.75rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,13 +796,12 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; } .p-checkbox .p-checkbox-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 18px; height: 18px; @@ -867,32 +836,27 @@ background: #9FA8DA; color: #121212; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-input-filled .p-checkbox .p-checkbox-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #9FA8DA; } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9FA8DA; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44435; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(255, 255, 255, 0.6); } @@ -909,12 +873,12 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.375rem 0.75rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } .p-chips .p-chips-multiple-container .p-chips-token.p-focus { - background: rgba(255, 255, 255, 0.24); + background: hsla(0, 0%, 100%, 0.24); color: rgba(255, 255, 255, 0.87); } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44435; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -943,29 +905,25 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #2b2b2b; border: 1px solid #1e1e1e; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44435; } - .p-dropdown-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1016,7 +973,7 @@ } .p-dropdown-panel .p-dropdown-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1052,11 +1009,11 @@ } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; @@ -1070,98 +1027,87 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44435; } - .p-inputgroup-addon { background: #1e1e1e; color: rgba(255, 255, 255, 0.6); - border-top: 1px solid rgba(255, 255, 255, 0.3); - border-left: 1px solid rgba(255, 255, 255, 0.3); - border-bottom: 1px solid rgba(255, 255, 255, 0.3); + border-top: 1px solid hsla(0, 0%, 100%, 0.3); + border-left: 1px solid hsla(0, 0%, 100%, 0.3); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.3); padding: 0.75rem 0.75rem; min-width: 2.75rem; } .p-inputgroup-addon:last-child { - border-right: 1px solid rgba(255, 255, 255, 0.3); + border-right: 1px solid hsla(0, 0%, 100%, 0.3); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.75rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44435; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1169,11 +1115,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44435; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1181,20 +1125,18 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.5rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.5rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; } .p-inputswitch .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 0.5rem; } @@ -1216,7 +1158,7 @@ box-shadow: none; } .p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); } .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { background: rgba(159, 168, 218, 0.5); @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(159, 168, 218, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44435; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1239,7 +1179,7 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; padding: 0.75rem 0.75rem; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); appearance: none; border-radius: 4px; @@ -1264,87 +1204,72 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44435; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-inputtext:enabled:focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-listbox .p-listbox-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #1e1e1e; margin: 0; @@ -1397,11 +1322,11 @@ } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-listbox.p-focus { outline: 0 none; @@ -1409,14 +1334,12 @@ box-shadow: none; border-color: #9FA8DA; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44435; } - .p-multiselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1439,7 +1362,7 @@ .p-multiselect.p-multiselect-chip .p-multiselect-token { padding: 0.375rem 0.75rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1465,7 +1386,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.75rem; } - .p-multiselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1475,7 +1395,7 @@ } .p-multiselect-panel .p-multiselect-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1533,11 +1453,11 @@ } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { margin-right: 0.5rem; @@ -1554,25 +1474,21 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44435; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44435; } - .p-password-panel { padding: 0.75rem; background: #1e1e1e; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1602,7 +1517,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1610,13 +1524,12 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; } .p-radiobutton .p-radiobutton-box { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); background: #1e1e1e; width: 20px; height: 20px; @@ -1648,16 +1561,14 @@ background: #121212; color: #9FA8DA; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44435; } - .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: rgba(255, 255, 255, 0.06); + background-color: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { background: #121212; @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #121212; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f44435; } - .p-selectbutton .p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,16 +1643,14 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44435; } - .p-slider { - background: rgba(255, 255, 255, 0.3); + background: hsla(0, 0%, 100%, 0.3); border: 0 none; border-radius: 4px; } @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #2f2f2f; border: 1px solid rgba(255, 255, 255, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,17 +1734,15 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44435; } - .p-treeselect { background: #1e1e1e; - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); border-radius: 4px; } @@ -1862,7 +1765,7 @@ .p-treeselect.p-treeselect-chip .p-treeselect-token { padding: 0.375rem 0.75rem; margin-right: 0.5rem; - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; } @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44435; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -1891,7 +1791,7 @@ } .p-treeselect-panel .p-treeselect-header { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -1941,17 +1841,15 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { - background: rgba(255, 255, 255, 0.06); + background: hsla(0, 0%, 100%, 0.06); } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus { - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1959,7 +1857,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.75rem; } - .p-button { color: #121212; background: #9FA8DA; @@ -2071,7 +1968,7 @@ padding: 0.643rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.75rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #121212; background: #F48FB1; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(244, 143, 177, 0.92); color: #121212; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(244, 143, 177, 0.68); color: #121212; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #F48FB1; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #F48FB1; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #F48FB1; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #F48FB1; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #F48FB1; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #F48FB1; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #212121; background: #90caf9; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(144, 202, 249, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(144, 202, 249, 0.16); color: #90caf9; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #90caf9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(144, 202, 249, 0.04); border-color: transparent; color: #90caf9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(144, 202, 249, 0.16); border-color: transparent; color: #90caf9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #212121; background: #c5e1a5; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(197, 225, 165, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212121; background: #fff59d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(255, 245, 157, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 245, 157, 0.16); color: #fff59d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fff59d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 245, 157, 0.04); border-color: transparent; color: #fff59d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 245, 157, 0.16); border-color: transparent; color: #fff59d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #212121; background: #ce93d8; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(206, 147, 216, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #212121; background: #ef9a9a; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(239, 154, 154, 0.92); color: #212121; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.68); color: #212121; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 154, 154, 0.16); color: #ef9a9a; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef9a9a; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 154, 154, 0.04); border-color: transparent; color: #ef9a9a; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 154, 154, 0.16); border-color: transparent; color: #ef9a9a; } - .p-button.p-button-link { color: #9FA8DA; background: transparent; @@ -2549,7 +2438,6 @@ color: #9FA8DA; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(244, 143, 177, 0.92); color: #212121; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #F48FB1; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #F48FB1; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #90caf9; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #90caf9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fff59d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fff59d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef9a9a; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #ef9a9a; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(159, 168, 218, 0.16); color: #9FA8DA; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 0.75rem 0.75rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #9FA8DA; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1e1e1e; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1e1e1e; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.9375rem 0.9375rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.75rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #2b2b2b; color: rgba(255, 255, 255, 0.87); @@ -3297,7 +3162,7 @@ } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible { outline: 0 none; @@ -3305,13 +3170,12 @@ box-shadow: none; } .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); background: #2b2b2b; margin: 0; @@ -3320,7 +3184,7 @@ } .p-column-filter-overlay-menu .p-column-filter-constraint { padding: 0.75rem; - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); } .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown { margin-bottom: 0.5rem; @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.75rem; } - .p-orderlist .p-orderlist-controls { padding: 0.75rem; } @@ -3395,12 +3258,12 @@ transition: none; } .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { color: #9FA8DA; @@ -3414,16 +3277,15 @@ color: rgba(255, 255, 255, 0.87); } .p-orderlist .p-orderlist-list:not(.cdk-drop-list-dragging) .p-orderlist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,9 +3294,8 @@ background: #1e1e1e; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.04); border-color: transparent; color: rgba(255, 255, 255, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.6); } - .p-picklist .p-picklist-buttons { padding: 0.75rem; } @@ -3611,12 +3470,12 @@ transition: none; } .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list .p-picklist-item.p-focus { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { color: #9FA8DA; @@ -3630,16 +3489,15 @@ color: rgba(255, 255, 255, 0.87); } .p-picklist .p-picklist-list:not(.cdk-drop-list-dragging) .p-picklist-item:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even) { background: rgba(255, 255, 255, 0.02); } .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #1e1e1e; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -3730,19 +3586,19 @@ color: #9FA8DA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #9FA8DA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #9FA8DA; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-filter-container { @@ -3799,7 +3655,7 @@ color: inherit; } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); color: rgba(255, 255, 255, 0.87); } .p-tree.p-tree-horizontal .p-treenode .p-treenode-content:focus { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #9FA8DA; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1e1e1e; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.9375rem 0.9375rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 0.75rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1e1e1e; } @@ -4141,7 +3992,7 @@ padding: 0 1.25rem; } .p-divider.p-divider-horizontal:before { - border-top: 1px rgba(255, 255, 255, 0.12); + border-top: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-horizontal .p-divider-content { padding: 0 0.5rem; @@ -4151,12 +4002,11 @@ padding: 1.25rem 0; } .p-divider.p-divider-vertical:before { - border-left: 1px rgba(255, 255, 255, 0.12); + border-left: 1px hsla(0, 0%, 100%, 0.12); } .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 0.75rem; } - .p-panel .p-panel-header { border: 1px solid rgba(255, 255, 255, 0.12); padding: 0.75rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(255, 255, 255, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid rgba(255, 255, 255, 0.12); background: #1e1e1e; @@ -4284,10 +4131,10 @@ } .p-splitter .p-splitter-gutter { transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; - background: rgba(255, 255, 255, 0.04); + background: hsla(0, 0%, 100%, 0.04); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible { outline: 0 none; @@ -4295,9 +4142,8 @@ box-shadow: none; } .p-splitter .p-splitter-gutter-resizing { - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.75rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #262626; } - .p-sidebar { background: #262626; color: rgba(255, 255, 255, 0.87); @@ -4551,7 +4392,7 @@ padding: 0.75rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.6); border-color: transparent; background: rgba(255, 255, 255, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.75rem; } - .p-tooltip .p-tooltip-text { background: #444444; color: rgba(255, 255, 255, 0.87); @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #444444; } - .p-fileupload .p-fileupload-buttonbar { background: #1e1e1e; padding: 0.75rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(159, 168, 218, 0.92); color: #121212; @@ -4652,7 +4490,6 @@ color: #121212; border-color: transparent; } - .p-breadcrumb { background: #1e1e1e; border: 1px solid rgba(255, 255, 255, 0.12); @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #2b2b2b; @@ -4732,7 +4568,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4740,13 +4576,13 @@ } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,11 +4593,11 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-contextmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-contextmenu .p-submenu-icon { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4887,13 +4721,13 @@ } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4927,7 +4761,7 @@ width: 12.5rem; } .p-megamenu .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-megamenu.p-megamenu-vertical { @@ -4962,10 +4796,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } - .p-menu { padding: 0.5rem 0; background: #1e1e1e; @@ -5002,7 +4835,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5010,13 +4843,13 @@ } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menu.p-menu-overlay { @@ -5045,7 +4878,7 @@ border-top-left-radius: 0; } .p-menu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menu .p-menuitem-badge { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.75rem; background: #1e1e1e; @@ -5100,7 +4932,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5139,13 +4971,13 @@ } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-menubar .p-submenu-list { @@ -5167,13 +4999,12 @@ width: 12.5rem; } .p-menubar .p-submenu-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5205,7 +5036,7 @@ width: 100%; } .p-menubar .p-menubar-root-list .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-menubar .p-menubar-root-list .p-submenu-icon { @@ -5348,7 +5179,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5356,13 +5187,13 @@ } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,14 +5204,14 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { margin-right: 0.5rem; } .p-panelmenu .p-panelmenu-content .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5456,7 +5286,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5464,13 +5294,13 @@ } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5496,7 +5326,7 @@ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-slidemenu .p-slidemenu-icon { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5565,7 +5394,7 @@ } .p-steps .p-steps-item:before { content: " "; - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); width: 100%; top: 50%; left: 0; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: solid rgba(255, 255, 255, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #1e1e1e; @@ -5695,7 +5522,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5703,13 +5530,13 @@ } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { color: rgba(255, 255, 255, 0.87); - background: rgba(255, 255, 255, 0.12); + background: hsla(0, 0%, 100%, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,11 +5547,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.6); } .p-tieredmenu .p-menuitem-separator { - border-top: 1px solid rgba(255, 255, 255, 0.12); + border-top: 1px solid hsla(0, 0%, 100%, 0.12); margin: 0.5rem 0; } .p-tieredmenu .p-submenu-icon { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 0.75rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,9 +5933,8 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); border-radius: 4px; } .p-avatar.p-avatar-lg { @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1e1e1e; } - .p-badge { background: #9FA8DA; color: #121212; @@ -6183,9 +5997,8 @@ height: 3rem; line-height: 3rem; } - .p-chip { - background-color: rgba(255, 255, 255, 0.12); + background-color: hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.87); border-radius: 16px; padding: 0 0.75rem; @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #121212; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #9FA8DA; color: #121212; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -6365,17 +6172,15 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6385,13 +6190,13 @@ background-color: transparent; } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,105 +6299,98 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(244, 143, 177, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(244, 143, 177, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(244, 143, 177, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(244, 143, 177, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(244, 143, 177, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(144, 202, 249, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(144, 202, 249, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(144, 202, 249, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(144, 202, 249, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(144, 202, 249, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(197, 225, 165, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(197, 225, 165, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(197, 225, 165, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(197, 225, 165, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(197, 225, 165, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(255, 245, 157, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(255, 245, 157, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(255, 245, 157, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(255, 245, 157, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(255, 245, 157, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(206, 147, 216, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(206, 147, 216, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(206, 147, 216, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(206, 147, 216, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(206, 147, 216, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(239, 154, 154, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(239, 154, 154, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(239, 154, 154, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(239, 154, 154, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(239, 154, 154, 0.16); } - .p-calendar-w-btn { - border: 1px solid rgba(255, 255, 255, 0.3); + border: 1px solid hsla(0, 0%, 100%, 0.3); background: #1e1e1e; border-radius: 4px; transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6657,7 +6449,7 @@ order: 3; } .p-datepicker table th { - border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-bottom: 1px solid hsla(0, 0%, 100%, 0.12); color: rgba(255, 255, 255, 0.38); font-weight: 400; font-size: 0.875rem; @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(159, 168, 218, 0.16); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } @@ -6681,13 +6472,12 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6697,13 +6487,13 @@ background-color: transparent; } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-focus, .p-input-filled .p-calendar-w-btn:not(.p-calendar-disabled):not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,17 +6537,15 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-cascadeselect-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6768,13 +6555,13 @@ background-color: transparent; } .p-input-filled .p-cascadeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus, .p-input-filled .p-cascadeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -6820,30 +6606,27 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #F48FB1; color: #121212; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; } .p-checkbox .p-checkbox-box { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); border-radius: 2px; position: relative; } .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { - border-color: rgba(255, 255, 255, 0.7); + border-color: hsla(0, 0%, 100%, 0.7); } .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled).p-focus { border-color: #9FA8DA; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(159, 168, 218, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #1e1e1e; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #1e1e1e; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,13 +6682,12 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -6917,13 +6697,13 @@ background-color: transparent; } .p-input-filled .p-chips-multiple-container:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-focus, .p-input-filled .p-chips-multiple-container:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #9FA8DA; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #9FA8DA; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,17 +6766,15 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-dropdown-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7012,13 +6784,13 @@ background-color: transparent; } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-dropdown:not(.p-disabled).p-focus, .p-input-filled .p-dropdown:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,32 +6826,30 @@ background: rgba(244, 143, 177, 0.68); color: #121212; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); } .p-input-filled .p-inputtext:enabled:focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7093,13 +6861,12 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(159, 168, 218, 0.12), 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(255, 255, 255, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #1e1e1e; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #9FA8DA; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.25rem; padding-bottom: 0.25rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(255, 255, 255, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } @@ -7262,13 +7013,12 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(255, 255, 255, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7278,13 +7028,13 @@ background-color: transparent; } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-multiselect:not(.p-disabled).p-focus, .p-input-filled .p-multiselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(255, 255, 255, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,30 +7153,27 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(255, 255, 255, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; } .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { - border: 2px solid rgba(255, 255, 255, 0.7); + border: 2px solid hsla(0, 0%, 100%, 0.7); } .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled).p-focus { border-color: #9FA8DA; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(159, 168, 218, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #1e1e1e; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #1e1e1e; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(244, 68, 53, 0.04); } - .p-selectbutton .p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7489,14 +7225,12 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #9FA8DA; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(255, 255, 255, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,17 +7341,15 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA, inset 0 0 0 1px #9FA8DA; } - .p-treeselect-item .p-ink { background-color: rgba(159, 168, 218, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border: 1px solid transparent; - background: rgba(255, 255, 255, 0.06) no-repeat; - background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); + background: hsla(0, 0%, 100%, 0.06) no-repeat; + background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.3)); background-size: 0 2px, 100% 1px; background-position: 50% 100%, 50% 100%; background-origin: border-box; @@ -7633,13 +7359,13 @@ background-color: transparent; } .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); + background-color: hsla(0, 0%, 100%, 0.08); border-color: transparent; background-image: linear-gradient(to bottom, #9FA8DA, #9FA8DA), linear-gradient(to bottom, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)); } .p-input-filled .p-treeselect:not(.p-disabled).p-focus, .p-input-filled .p-treeselect:not(.p-disabled).p-inputwrapper-focus { box-shadow: none; - background-color: rgba(255, 255, 255, 0.1); + background-color: hsla(0, 0%, 100%, 0.1); border-color: transparent; background-size: 100% 2px, 100% 1px; } @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #f44435, #f44435), linear-gradient(to bottom, #f44435, #f44435); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435, inset 0 0 0 1px #f44435; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(159, 168, 218, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(255, 255, 255, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #9FA8DA; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #1c1c1c; border-color: rgba(255, 255, 255, 0.12); @@ -7754,7 +7472,6 @@ background: #262626; border-color: rgba(255, 255, 255, 0.12); } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(159, 168, 218, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(244, 143, 177, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(244, 143, 177, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(144, 202, 249, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(144, 202, 249, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(197, 225, 165, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(197, 225, 165, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(255, 245, 157, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(255, 245, 157, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(206, 147, 216, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(206, 147, 216, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(239, 154, 154, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(239, 154, 154, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(244, 143, 177, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/mdc-light-deeppurple/theme.css b/src/assets/components/themes/mdc-light-deeppurple/theme.css index ed44bc5132d..e4cc5dfc91a 100644 --- a/src/assets/components/themes/mdc-light-deeppurple/theme.css +++ b/src/assets/components/themes/mdc-light-deeppurple/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #b00020; } - .p-text-secondary { color: rgba(0, 0, 0, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -416,7 +401,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #b00020; } - .p-autocomplete-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -463,11 +447,9 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #b00020; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -475,23 +457,19 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(0, 0, 0, 0.6); right: 3.5rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #b00020; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #673AB7; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -518,7 +496,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(0, 0, 0, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #673AB7; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -589,7 +567,7 @@ .p-datepicker table td.p-datepicker-today > span { background: #ffffff; color: rgba(0, 0, 0, 0.87); - border-color: black; + border-color: rgb(0, 0, 0); } .p-datepicker table td.p-datepicker-today > span.p-highlight { color: #673AB7; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -707,12 +684,10 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(0, 0, 0, 0.6); right: 3.5rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #b00020; } - .p-cascadeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -795,7 +769,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f5f5f5; } @@ -805,11 +778,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #b00020; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -817,7 +788,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.75rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,7 +796,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; @@ -867,11 +836,9 @@ background: #673AB7; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } @@ -884,15 +851,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #673AB7; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(0, 0, 0, 0.87); } @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #b00020; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -943,26 +905,22 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #b00020; } - .p-dropdown-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1070,7 +1027,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #f5f5f5; } @@ -1083,11 +1039,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #b00020; } - .p-inputgroup-addon { background: #ffffff; color: rgba(0, 0, 0, 0.6); @@ -1100,68 +1054,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid rgba(0, 0, 0, 0.38); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.75rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #b00020; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1169,11 +1115,9 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #b00020; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1181,14 +1125,12 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.5rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.5rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(103, 58, 183, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #b00020; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1264,57 +1204,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(0, 0, 0, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #b00020; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.6); } - :-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - ::-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - :-ms-input-placeholder { color: rgba(0, 0, 0, 0.6); } - .p-input-filled .p-inputtext { background-color: #f5f5f5; } @@ -1324,17 +1252,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #dcdcdc; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1409,11 +1334,9 @@ box-shadow: none; border-color: #673AB7; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #b00020; } - .p-multiselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1465,7 +1386,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.75rem; } - .p-multiselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1554,7 +1474,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #f5f5f5; } @@ -1564,15 +1483,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #b00020; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #b00020; } - .p-password-panel { padding: 0.75rem; background: #ffffff; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1602,7 +1517,6 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1610,7 +1524,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1648,11 +1561,9 @@ background: #ffffff; color: #673AB7; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #b00020; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f5f5f5; } @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffffff; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b00020; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,14 +1643,12 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #b00020; } - .p-slider { background: #c1c1c1; border: 0 none; @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,14 +1734,12 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #b00020; } - .p-treeselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #b00020; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1941,7 +1841,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #f5f5f5; } @@ -1951,7 +1850,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1959,7 +1857,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.75rem; } - .p-button { color: #ffffff; background: #673AB7; @@ -2071,7 +1968,7 @@ padding: 0.643rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.75rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #4CAF50; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(76, 175, 80, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(76, 175, 80, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #4CAF50; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(76, 175, 80, 0.04); color: #4CAF50; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(76, 175, 80, 0.16); color: #4CAF50; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #4CAF50; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(76, 175, 80, 0.04); border-color: transparent; color: #4CAF50; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(76, 175, 80, 0.16); border-color: transparent; color: #4CAF50; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #2196f3; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(33, 150, 243, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(33, 150, 243, 0.16); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #2196f3; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); border-color: transparent; color: #2196f3; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(33, 150, 243, 0.16); border-color: transparent; color: #2196f3; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(104, 159, 56, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(251, 192, 45, 0.92); color: #212529; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.68); color: #212529; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(156, 39, 176, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(211, 47, 47, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #673AB7; background: transparent; @@ -2549,7 +2438,6 @@ color: #673AB7; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(76, 175, 80, 0.92); color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #4CAF50; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #4CAF50; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #2196f3; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #2196f3; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(103, 58, 183, 0.12); color: #673AB7; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 0.75rem 0.75rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #673AB7; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #ffffff; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.9375rem 0.9375rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.75rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3308,7 +3173,6 @@ border-top: 1px solid rgba(0, 0, 0, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem; border-bottom: 1px solid rgba(0, 0, 0, 0.12); @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.75rem; } - .p-orderlist .p-orderlist-controls { padding: 0.75rem; } @@ -3423,7 +3286,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,7 +3294,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); color: rgba(0, 0, 0, 0.87); @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(0, 0, 0, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); border-color: transparent; color: rgba(0, 0, 0, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(0, 0, 0, 0.6); } - .p-picklist .p-picklist-buttons { padding: 0.75rem; } @@ -3639,7 +3498,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e0e0e0; background: #ffffff; @@ -3730,11 +3586,11 @@ color: #673AB7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #673AB7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #673AB7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #673AB7; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #ffffff; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.9375rem 0.9375rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 0.75rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4156,7 +4007,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e0e0e0; background: #ffffff; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 0.75rem; } - .p-panel .p-panel-header { border: 1px solid #e0e0e0; padding: 0.75rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(0, 0, 0, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid #e0e0e0; background: #ffffff; @@ -4297,7 +4144,6 @@ .p-splitter .p-splitter-gutter-resizing { background: rgba(0, 0, 0, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.75rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #ffffff; border: 1px solid #e0e0e0; @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4551,7 +4392,7 @@ padding: 0.75rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.75rem; } - .p-tooltip .p-tooltip-text { background: rgba(97, 97, 97, 0.9); color: #ffffff; @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: rgba(97, 97, 97, 0.9); } - .p-fileupload .p-fileupload-buttonbar { background: #ffffff; padding: 0.75rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(103, 58, 183, 0.92); color: #ffffff; @@ -4652,7 +4490,6 @@ color: #ffffff; border-color: transparent; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e5e5; @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(0, 0, 0, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4732,7 +4568,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4746,7 +4582,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,7 +4593,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem-separator { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4893,7 +4727,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4962,10 +4796,9 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -5002,7 +4835,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5016,7 +4849,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu.p-menu-overlay { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.75rem; background: transparent; @@ -5100,7 +4932,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5145,7 +4977,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-submenu-list { @@ -5173,7 +5005,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5348,7 +5179,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5362,7 +5193,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,7 +5204,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5456,7 +5286,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5470,7 +5300,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: solid rgba(0, 0, 0, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5695,7 +5522,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5709,7 +5536,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,7 +5547,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem-separator { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 0.75rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,7 +5933,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: rgba(0, 0, 0, 0.12); border-radius: 4px; @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #673AB7; color: #ffffff; @@ -6183,7 +5997,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: rgba(0, 0, 0, 0.12); color: rgba(0, 0, 0, 0.87); @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #ffffff; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(0, 0, 0, 0.08); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #673AB7; color: #ffffff; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -6365,11 +6172,9 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,103 +6299,96 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(76, 175, 80, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(76, 175, 80, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(76, 175, 80, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(76, 175, 80, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(76, 175, 80, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(33, 150, 243, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(33, 150, 243, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(33, 150, 243, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(33, 150, 243, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(33, 150, 243, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(104, 159, 56, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(104, 159, 56, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(104, 159, 56, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(104, 159, 56, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(104, 159, 56, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(251, 192, 45, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(251, 192, 45, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(251, 192, 45, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(251, 192, 45, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(251, 192, 45, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(156, 39, 176, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(156, 39, 176, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(156, 39, 176, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(156, 39, 176, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(156, 39, 176, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(211, 47, 47, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(211, 47, 47, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(211, 47, 47, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(211, 47, 47, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(211, 47, 47, 0.16); } - .p-calendar-w-btn { border: 1px solid rgba(0, 0, 0, 0.38); background: #ffffff; @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(103, 58, 183, 0.12); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } @@ -6681,7 +6472,6 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,11 +6537,9 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-cascadeselect-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -6820,16 +6606,13 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #4CAF50; color: #ffffff; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(103, 58, 183, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #ffffff; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #ffffff; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,7 +6682,6 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #673AB7; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #673AB7; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,11 +6766,9 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-dropdown-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,14 +6826,12 @@ background: rgba(76, 175, 80, 0.68); color: #ffffff; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7093,7 +6861,6 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(103, 58, 183, 0.12), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(0, 0, 0, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #ffffff; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #673AB7; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.25rem; padding-bottom: 0.25rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } @@ -7262,7 +7013,6 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(0, 0, 0, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(0, 0, 0, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,21 +7153,18 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(103, 58, 183, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #ffffff; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #ffffff; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(176, 0, 32, 0.04); } - .p-selectbutton .p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7489,14 +7225,12 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #673AB7; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,11 +7341,9 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7, inset 0 0 0 1px #673AB7; } - .p-treeselect-item .p-ink { background-color: rgba(103, 58, 183, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(103, 58, 183, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #673AB7; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7754,7 +7472,6 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(103, 58, 183, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(76, 175, 80, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(76, 175, 80, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(33, 150, 243, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(104, 159, 56, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(251, 192, 45, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(156, 39, 176, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(211, 47, 47, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(76, 175, 80, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/mdc-light-indigo/theme.css b/src/assets/components/themes/mdc-light-indigo/theme.css index f0f9a852550..b8d9e49e8d8 100644 --- a/src/assets/components/themes/mdc-light-indigo/theme.css +++ b/src/assets/components/themes/mdc-light-indigo/theme.css @@ -54,24 +54,21 @@ font-family: "Roboto"; font-style: normal; font-weight: 400; - src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-500 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 500; - src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Medium"), local("Roboto-Medium"), url("./fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-700 - latin-ext_latin */ @font-face { font-family: "Roboto"; font-style: normal; font-weight: 700; - src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/roboto-v20-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f4fafe; @@ -299,40 +296,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.32); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.38; } - .p-error { color: #b00020; } - .p-text-secondary { color: rgba(0, 0, 0, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -344,15 +333,12 @@ outline-offset: 0; box-shadow: none; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -369,7 +355,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -416,7 +401,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #b00020; } - .p-autocomplete-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -463,11 +447,9 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #b00020; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -475,23 +457,19 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(0, 0, 0, 0.6); right: 3.5rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #b00020; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #3F51B5; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -518,7 +496,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -528,13 +506,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -543,14 +521,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(0, 0, 0, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 500; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #3F51B5; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -589,7 +567,7 @@ .p-datepicker table td.p-datepicker-today > span { background: #ffffff; color: rgba(0, 0, 0, 0.87); - border-color: black; + border-color: rgb(0, 0, 0); } .p-datepicker table td.p-datepicker-today > span.p-highlight { color: #3F51B5; @@ -699,7 +677,6 @@ outline-offset: 0; box-shadow: none; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -707,12 +684,10 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(0, 0, 0, 0.6); right: 3.5rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -755,7 +730,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #b00020; } - .p-cascadeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -795,7 +769,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f5f5f5; } @@ -805,11 +778,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #b00020; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -817,7 +788,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.75rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -826,7 +796,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 18px; height: 18px; @@ -867,11 +836,9 @@ background: #3F51B5; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } @@ -884,15 +851,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3F51B5; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #b00020; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: rgba(0, 0, 0, 0.87); } @@ -931,11 +895,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #b00020; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -943,26 +905,22 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1006,7 +964,6 @@ .p-dropdown.p-invalid.p-component { border-color: #b00020; } - .p-dropdown-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1070,7 +1027,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #f5f5f5; } @@ -1083,11 +1039,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #b00020; } - .p-inputgroup-addon { background: #ffffff; color: rgba(0, 0, 0, 0.6); @@ -1100,68 +1054,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid rgba(0, 0, 0, 0.38); } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.75rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #b00020; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1169,11 +1115,9 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #b00020; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1181,14 +1125,12 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.5rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.5rem; } - .p-inputswitch { width: 2.75rem; height: 1rem; @@ -1227,11 +1169,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: rgba(63, 81, 181, 0.5); } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #b00020; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1264,57 +1204,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(0, 0, 0, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #b00020; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(0, 0, 0, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.6); } - :-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - ::-moz-placeholder { color: rgba(0, 0, 0, 0.6); } - :-ms-input-placeholder { color: rgba(0, 0, 0, 0.6); } - .p-input-filled .p-inputtext { background-color: #f5f5f5; } @@ -1324,17 +1252,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #dcdcdc; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1409,11 +1334,9 @@ box-shadow: none; border-color: #3F51B5; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #b00020; } - .p-multiselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1453,11 +1376,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1465,7 +1386,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.75rem; } - .p-multiselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1554,7 +1474,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #f5f5f5; } @@ -1564,15 +1483,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #b00020; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #b00020; } - .p-password-panel { padding: 0.75rem; background: #ffffff; @@ -1594,7 +1510,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1602,7 +1517,6 @@ color: rgba(0, 0, 0, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1610,7 +1524,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1648,11 +1561,9 @@ background: #ffffff; color: #3F51B5; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #b00020; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f5f5f5; } @@ -1665,11 +1576,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffffff; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1700,7 +1609,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b00020; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1708,7 +1616,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1717,7 +1625,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1726,7 +1634,7 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-selectbutton .p-button.p-highlight:hover { @@ -1735,14 +1643,12 @@ color: rgba(0, 0, 0, 0.87); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #b00020; } - .p-slider { background: #c1c1c1; border: 0 none; @@ -1794,7 +1700,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12); @@ -1802,7 +1707,7 @@ transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, background-size 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1811,7 +1716,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1820,7 +1725,7 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } .p-togglebutton.p-button.p-highlight:hover { @@ -1829,14 +1734,12 @@ color: rgba(0, 0, 0, 0.87); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: rgba(0, 0, 0, 0.6); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #b00020; } - .p-treeselect { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.38); @@ -1873,15 +1776,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #b00020; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -1941,7 +1841,6 @@ color: rgba(0, 0, 0, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #f5f5f5; } @@ -1951,7 +1850,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #dcdcdc; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1959,7 +1857,6 @@ color: rgba(0, 0, 0, 0.6); right: 2.75rem; } - .p-button { color: #ffffff; background: #3F51B5; @@ -2071,7 +1968,7 @@ padding: 0.643rem; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2098,434 +1995,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.75rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #ff4081; border: 0 none; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: rgba(255, 64, 129, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: rgba(255, 64, 129, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #ff4081; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 64, 129, 0.04); color: #ff4081; border: 0 none; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 64, 129, 0.16); color: #ff4081; border: 0 none; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #ff4081; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 64, 129, 0.04); border-color: transparent; color: #ff4081; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 64, 129, 0.16); border-color: transparent; color: #ff4081; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #2196f3; border: 0 none; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: rgba(33, 150, 243, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(33, 150, 243, 0.16); color: #2196f3; border: 0 none; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #2196f3; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(33, 150, 243, 0.04); border-color: transparent; color: #2196f3; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(33, 150, 243, 0.16); border-color: transparent; color: #2196f3; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 0 none; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: rgba(104, 159, 56, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 0 none; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 0 none; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: rgba(251, 192, 45, 0.92); color: #212529; border-color: transparent; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.68); color: #212529; border-color: transparent; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 0 none; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 0 none; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: rgba(156, 39, 176, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 0 none; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 0 none; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: rgba(211, 47, 47, 0.92); color: #ffffff; border-color: transparent; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: none; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.68); color: #ffffff; border-color: transparent; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 0 none; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #3F51B5; background: transparent; @@ -2549,7 +2438,6 @@ color: #3F51B5; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2561,17 +2449,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: none; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2582,52 +2467,45 @@ background: rgba(255, 64, 129, 0.92); color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.32); } - .p-splitbutton { border-radius: 4px; } @@ -2705,7 +2583,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #ff4081; @@ -2734,7 +2611,6 @@ border-color: transparent; color: #ff4081; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #2196f3; @@ -2763,7 +2639,6 @@ border-color: transparent; color: #2196f3; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2792,7 +2667,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2821,7 +2695,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2850,7 +2723,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2879,9 +2751,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -2892,13 +2763,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -2924,7 +2795,6 @@ background: rgba(63, 81, 181, 0.12); color: #3F51B5; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3018,9 +2888,9 @@ padding: 0.75rem 0.75rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -3030,17 +2900,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -3070,12 +2940,12 @@ background: #3F51B5; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #ffffff; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3178,7 +3048,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.9375rem 0.9375rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3217,12 +3086,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.75rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3250,7 +3117,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3270,7 +3136,6 @@ outline-offset: 0; box-shadow: none; } - .p-column-filter-overlay { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3308,7 +3173,6 @@ border-top: 1px solid rgba(0, 0, 0, 0.12); margin: 0.5rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem; border-bottom: 1px solid rgba(0, 0, 0, 0.12); @@ -3337,7 +3201,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.75rem; } - .p-orderlist .p-orderlist-controls { padding: 0.75rem; } @@ -3423,7 +3286,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3432,7 +3294,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); color: rgba(0, 0, 0, 0.87); @@ -3471,7 +3332,6 @@ outline-offset: 0; box-shadow: none; } - .p-paginator { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -3481,9 +3341,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(0, 0, 0, 0.6); @@ -3494,9 +3354,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(0, 0, 0, 0.04); border-color: transparent; color: rgba(0, 0, 0, 0.6); @@ -3553,7 +3413,6 @@ border-color: transparent; color: rgba(0, 0, 0, 0.6); } - .p-picklist .p-picklist-buttons { padding: 0.75rem; } @@ -3639,7 +3498,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(0, 0, 0, 0.04); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 0.75rem; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); @@ -3648,7 +3506,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3660,20 +3517,19 @@ background-color: #bdbdbd; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e0e0e0; background: #ffffff; @@ -3730,11 +3586,11 @@ color: #3F51B5; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #3F51B5; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #3F51B5; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3807,7 +3663,6 @@ outline-offset: 0; box-shadow: none; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3947,7 +3802,7 @@ background: #3F51B5; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #ffffff; } .p-treetable .p-treetable-loading-icon { @@ -4008,7 +3863,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.9375rem 0.9375rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4033,7 +3887,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 0 none; @@ -4106,7 +3959,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4132,7 +3984,6 @@ .p-card .p-card-footer { padding: 0.75rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4156,7 +4007,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e0e0e0; background: #ffffff; @@ -4197,7 +4047,6 @@ .p-fieldset .p-fieldset-content { padding: 0.75rem; } - .p-panel .p-panel-header { border: 1px solid #e0e0e0; padding: 0.75rem; @@ -4264,7 +4113,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: rgba(0, 0, 0, 0.12); border: 0 none; @@ -4275,7 +4123,6 @@ outline-offset: 0; box-shadow: none; } - .p-splitter { border: 1px solid #e0e0e0; background: #ffffff; @@ -4297,7 +4144,6 @@ .p-splitter .p-splitter-gutter-resizing { background: rgba(0, 0, 0, 0.12); } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.75rem; } @@ -4366,7 +4212,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #ffffff; border: 1px solid #e0e0e0; @@ -4377,7 +4222,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4425,7 +4269,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4498,7 +4341,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4540,7 +4382,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -4551,7 +4392,7 @@ padding: 0.75rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(0, 0, 0, 0.6); @@ -4561,13 +4402,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(0, 0, 0, 0.6); border-color: transparent; background: rgba(0, 0, 0, 0.04); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: none; @@ -4581,7 +4422,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.75rem; } - .p-tooltip .p-tooltip-text { background: rgba(97, 97, 97, 0.9); color: #ffffff; @@ -4601,7 +4441,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: rgba(97, 97, 97, 0.9); } - .p-fileupload .p-fileupload-buttonbar { background: #ffffff; padding: 0.75rem; @@ -4641,7 +4480,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: rgba(63, 81, 181, 0.92); color: #ffffff; @@ -4652,7 +4490,6 @@ color: #ffffff; border-color: transparent; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e5e5; @@ -4684,7 +4521,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(0, 0, 0, 0.6); } - .p-contextmenu { padding: 0.5rem 0; background: #ffffff; @@ -4732,7 +4568,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4746,7 +4582,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4757,7 +4593,7 @@ color: rgba(0, 0, 0, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-contextmenu .p-menuitem-separator { @@ -4771,7 +4607,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4795,32 +4630,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4879,7 +4713,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4893,7 +4727,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4904,7 +4738,7 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-megamenu .p-megamenu-panel { @@ -4962,10 +4796,9 @@ color: rgba(0, 0, 0, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } - .p-menu { padding: 0.5rem 0; background: #ffffff; @@ -5002,7 +4835,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5016,7 +4849,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5027,7 +4860,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menu.p-menu-overlay { @@ -5061,7 +4894,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.75rem; background: transparent; @@ -5100,7 +4932,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5131,7 +4963,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5145,7 +4977,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5156,7 +4988,7 @@ color: rgba(0, 0, 0, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-menubar .p-submenu-list { @@ -5173,7 +5005,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5348,7 +5179,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5362,7 +5193,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5373,7 +5204,7 @@ color: rgba(0, 0, 0, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5413,7 +5244,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.5rem 0; background: #ffffff; @@ -5456,7 +5286,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5470,7 +5300,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5481,7 +5311,7 @@ color: rgba(0, 0, 0, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-slidemenu.p-slidemenu-overlay { @@ -5528,7 +5358,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5573,7 +5402,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: solid rgba(0, 0, 0, 0.12); @@ -5644,7 +5472,6 @@ outline-offset: 0; box-shadow: inset none; } - .p-tieredmenu { padding: 0.5rem 0; background: #ffffff; @@ -5695,7 +5522,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5709,7 +5536,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5720,7 +5547,7 @@ color: rgba(0, 0, 0, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(0, 0, 0, 0.6); } .p-tieredmenu .p-menuitem-separator { @@ -5734,7 +5561,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5790,7 +5616,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 0.75rem 0; border-radius: 4px; @@ -5879,7 +5704,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5930,7 +5754,7 @@ color: #01579b; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #01579b; } .p-toast .p-toast-message.p-toast-message-success { @@ -5940,7 +5764,7 @@ color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1b5e20; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5950,7 +5774,7 @@ color: #7f6003; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #7f6003; } .p-toast .p-toast-message.p-toast-message-error { @@ -5960,10 +5784,9 @@ color: #b71c1c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #b71c1c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5994,7 +5817,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6051,7 +5874,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -6061,7 +5884,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.87); } @@ -6070,29 +5893,23 @@ outline-offset: 0; box-shadow: none; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6116,7 +5933,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: rgba(0, 0, 0, 0.12); border-radius: 4px; @@ -6137,11 +5953,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #3F51B5; color: #ffffff; @@ -6183,7 +5997,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: rgba(0, 0, 0, 0.12); color: rgba(0, 0, 0, 0.87); @@ -6219,7 +6032,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 1rem 1rem; border-radius: 4px; @@ -6234,7 +6046,6 @@ outline-offset: 0; box-shadow: none; } - .p-progressbar { border: 0 none; height: 4px; @@ -6250,7 +6061,6 @@ color: #ffffff; line-height: 4px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6272,7 +6082,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(0, 0, 0, 0.08); border-radius: 4px; @@ -6280,7 +6089,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #3F51B5; color: #ffffff; @@ -6313,7 +6121,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: rgba(0, 0, 0, 0.87); @@ -6365,11 +6172,9 @@ .p-accordion .p-accordion-tab .p-accordion-header.p-disabled .p-accordion-header-link > * { opacity: 0.38; } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-input-filled .p-autocomplete .p-autocomplete-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6399,11 +6204,9 @@ background-image: none; background: transparent; } - .p-float-label .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { padding-top: 0; padding-bottom: 0; @@ -6433,21 +6236,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-autocomplete.ng-dirty.ng-invalid .p-autocomplete > .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } p-autocomplete.ng-dirty.ng-invalid .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-breadcrumb .p-menuitem-link { padding: 0.25rem 0.5rem; } .p-breadcrumb .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-button { font-weight: 500; min-width: 4rem; @@ -6499,103 +6299,96 @@ .p-button.p-button-raised:enabled:focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - - .p-button.p-button-secondary:enabled:focus, .p-buttonset.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { + .p-button.p-button-secondary:enabled:focus, .p-button-group.p-button-secondary > .p-button:enabled:focus, .p-splitbutton.p-button-secondary > .p-button:enabled:focus { background: rgba(255, 64, 129, 0.76); } - .p-button.p-button-secondary:enabled:active, .p-buttonset.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { + .p-button.p-button-secondary:enabled:active, .p-button-group.p-button-secondary > .p-button:enabled:active, .p-splitbutton.p-button-secondary > .p-button:enabled:active { background: rgba(255, 64, 129, 0.68); } - .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-secondary.p-button-text:enabled:focus, .p-button.p-button-secondary.p-button-outlined:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:focus { background: rgba(255, 64, 129, 0.12); } - .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-secondary.p-button-text:enabled:active, .p-button.p-button-secondary.p-button-outlined:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-text:enabled:active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active { background: rgba(255, 64, 129, 0.16); } - .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-text .p-ink, .p-buttonset.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { + .p-button.p-button-secondary.p-button-text .p-ink, .p-button.p-button-secondary.p-button-outlined .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-text .p-ink, .p-button-group.p-button-secondary > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined .p-ink { background-color: rgba(255, 64, 129, 0.16); } - - .p-button.p-button-info:enabled:focus, .p-buttonset.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { + .p-button.p-button-info:enabled:focus, .p-button-group.p-button-info > .p-button:enabled:focus, .p-splitbutton.p-button-info > .p-button:enabled:focus { background: rgba(33, 150, 243, 0.76); } - .p-button.p-button-info:enabled:active, .p-buttonset.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { + .p-button.p-button-info:enabled:active, .p-button-group.p-button-info > .p-button:enabled:active, .p-splitbutton.p-button-info > .p-button:enabled:active { background: rgba(33, 150, 243, 0.68); } - .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-info.p-button-text:enabled:focus, .p-button.p-button-info.p-button-outlined:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:focus { background: rgba(33, 150, 243, 0.12); } - .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-info.p-button-text:enabled:active, .p-button.p-button-info.p-button-outlined:enabled:active, .p-button-group.p-button-info > .p-button.p-button-text:enabled:active, .p-button-group.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active { background: rgba(33, 150, 243, 0.16); } - .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-buttonset.p-button-info > .p-button.p-button-text .p-ink, .p-buttonset.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { + .p-button.p-button-info.p-button-text .p-ink, .p-button.p-button-info.p-button-outlined .p-ink, .p-button-group.p-button-info > .p-button.p-button-text .p-ink, .p-button-group.p-button-info > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-info > .p-button.p-button-outlined .p-ink { background-color: rgba(33, 150, 243, 0.16); } - - .p-button.p-button-success:enabled:focus, .p-buttonset.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { + .p-button.p-button-success:enabled:focus, .p-button-group.p-button-success > .p-button:enabled:focus, .p-splitbutton.p-button-success > .p-button:enabled:focus { background: rgba(104, 159, 56, 0.76); } - .p-button.p-button-success:enabled:active, .p-buttonset.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { + .p-button.p-button-success:enabled:active, .p-button-group.p-button-success > .p-button:enabled:active, .p-splitbutton.p-button-success > .p-button:enabled:active { background: rgba(104, 159, 56, 0.68); } - .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-success.p-button-text:enabled:focus, .p-button.p-button-success.p-button-outlined:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:focus { background: rgba(104, 159, 56, 0.12); } - .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-success.p-button-text:enabled:active, .p-button.p-button-success.p-button-outlined:enabled:active, .p-button-group.p-button-success > .p-button.p-button-text:enabled:active, .p-button-group.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active { background: rgba(104, 159, 56, 0.16); } - .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-buttonset.p-button-success > .p-button.p-button-text .p-ink, .p-buttonset.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { + .p-button.p-button-success.p-button-text .p-ink, .p-button.p-button-success.p-button-outlined .p-ink, .p-button-group.p-button-success > .p-button.p-button-text .p-ink, .p-button-group.p-button-success > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-success > .p-button.p-button-outlined .p-ink { background-color: rgba(104, 159, 56, 0.16); } - - .p-button.p-button-warning:enabled:focus, .p-buttonset.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { + .p-button.p-button-warning:enabled:focus, .p-button-group.p-button-warning > .p-button:enabled:focus, .p-splitbutton.p-button-warning > .p-button:enabled:focus { background: rgba(251, 192, 45, 0.76); } - .p-button.p-button-warning:enabled:active, .p-buttonset.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { + .p-button.p-button-warning:enabled:active, .p-button-group.p-button-warning > .p-button:enabled:active, .p-splitbutton.p-button-warning > .p-button:enabled:active { background: rgba(251, 192, 45, 0.68); } - .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-warning.p-button-text:enabled:focus, .p-button.p-button-warning.p-button-outlined:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:focus { background: rgba(251, 192, 45, 0.12); } - .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-warning.p-button-text:enabled:active, .p-button.p-button-warning.p-button-outlined:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-text:enabled:active, .p-button-group.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active { background: rgba(251, 192, 45, 0.16); } - .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-text .p-ink, .p-buttonset.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { + .p-button.p-button-warning.p-button-text .p-ink, .p-button.p-button-warning.p-button-outlined .p-ink, .p-button-group.p-button-warning > .p-button.p-button-text .p-ink, .p-button-group.p-button-warning > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-warning > .p-button.p-button-outlined .p-ink { background-color: rgba(251, 192, 45, 0.16); } - - .p-button.p-button-help:enabled:focus, .p-buttonset.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { + .p-button.p-button-help:enabled:focus, .p-button-group.p-button-help > .p-button:enabled:focus, .p-splitbutton.p-button-help > .p-button:enabled:focus { background: rgba(156, 39, 176, 0.76); } - .p-button.p-button-help:enabled:active, .p-buttonset.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { + .p-button.p-button-help:enabled:active, .p-button-group.p-button-help > .p-button:enabled:active, .p-splitbutton.p-button-help > .p-button:enabled:active { background: rgba(156, 39, 176, 0.68); } - .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-help.p-button-text:enabled:focus, .p-button.p-button-help.p-button-outlined:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:focus { background: rgba(156, 39, 176, 0.12); } - .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-help.p-button-text:enabled:active, .p-button.p-button-help.p-button-outlined:enabled:active, .p-button-group.p-button-help > .p-button.p-button-text:enabled:active, .p-button-group.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active { background: rgba(156, 39, 176, 0.16); } - .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-buttonset.p-button-help > .p-button.p-button-text .p-ink, .p-buttonset.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { + .p-button.p-button-help.p-button-text .p-ink, .p-button.p-button-help.p-button-outlined .p-ink, .p-button-group.p-button-help > .p-button.p-button-text .p-ink, .p-button-group.p-button-help > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-help > .p-button.p-button-outlined .p-ink { background-color: rgba(156, 39, 176, 0.16); } - - .p-button.p-button-danger:enabled:focus, .p-buttonset.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { + .p-button.p-button-danger:enabled:focus, .p-button-group.p-button-danger > .p-button:enabled:focus, .p-splitbutton.p-button-danger > .p-button:enabled:focus { background: rgba(211, 47, 47, 0.76); } - .p-button.p-button-danger:enabled:active, .p-buttonset.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { + .p-button.p-button-danger:enabled:active, .p-button-group.p-button-danger > .p-button:enabled:active, .p-splitbutton.p-button-danger > .p-button:enabled:active { background: rgba(211, 47, 47, 0.68); } - .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:focus, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { + .p-button.p-button-danger.p-button-text:enabled:focus, .p-button.p-button-danger.p-button-outlined:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:focus, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:focus, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:focus { background: rgba(211, 47, 47, 0.12); } - .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { + .p-button.p-button-danger.p-button-text:enabled:active, .p-button.p-button-danger.p-button-outlined:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-text:enabled:active, .p-button-group.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active { background: rgba(211, 47, 47, 0.16); } - .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-text .p-ink, .p-buttonset.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { + .p-button.p-button-danger.p-button-text .p-ink, .p-button.p-button-danger.p-button-outlined .p-ink, .p-button-group.p-button-danger > .p-button.p-button-text .p-ink, .p-button-group.p-button-danger > .p-button.p-button-outlined .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-text .p-ink, .p-splitbutton.p-button-danger > .p-button.p-button-outlined .p-ink { background-color: rgba(211, 47, 47, 0.16); } - .p-calendar-w-btn { border: 1px solid rgba(0, 0, 0, 0.38); background: #ffffff; @@ -6642,7 +6435,6 @@ .p-calendar-w-btn.p-calendar-disabled .p-inputtext { opacity: 1; } - .p-datepicker .p-datepicker-header { border-bottom: 0 none; } @@ -6668,7 +6460,6 @@ .p-datepicker table td.p-datepicker-today.p-highlight { box-shadow: 0 0 0 1px rgba(63, 81, 181, 0.12); } - p-calendar.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } @@ -6681,7 +6472,6 @@ p-calendar.ng-dirty.ng-invalid .p-calendar-w-btn:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-calendar-w-btn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6737,7 +6527,6 @@ border: 0 none; background-image: none; } - .p-cascadeselect .p-inputtext, .p-cascadeselect .p-cascadeselect-trigger { background-image: none; background: transparent; @@ -6748,11 +6537,9 @@ .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-cascadeselect-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } - .p-input-filled .p-cascadeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6800,7 +6587,6 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-input-filled .p-float-label .p-cascadeselect .p-cascadeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -6820,16 +6606,13 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-cascadeselect.ng-dirty.ng-invalid .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #ff4081; color: #ffffff; } - .p-checkbox { border-radius: 50%; transition: box-shadow 0.2s; @@ -6871,14 +6654,12 @@ .p-checkbox.p-checkbox-checked:not(.p-checkbox-disabled).p-checkbox-focused { box-shadow: 0 0 1px 10px rgba(63, 81, 181, 0.12); } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #ffffff; } .p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { background-color: #ffffff; } - @keyframes checkbox-check { 0% { width: 0; @@ -6901,7 +6682,6 @@ .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-input-filled .p-chips-multiple-container { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -6931,11 +6711,9 @@ background-image: none; background: transparent; } - .p-float-label .p-chips-multiple-container .p-chips-token { padding: 0.25rem 1rem; } - .p-input-filled .p-float-label .p-chips .p-chips-multiple-container .p-chips-token { padding-top: 0; padding-bottom: 0; @@ -6957,11 +6735,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-chips.ng-dirty.ng-invalid .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-datatable .p-sortable-column { outline: 0 none; } @@ -6974,14 +6750,12 @@ .p-datatable .p-datatable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #3F51B5; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { box-shadow: inset 0 -2px 0 0 #3F51B5; } - .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { background-image: none; background: transparent; @@ -6992,11 +6766,9 @@ .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-dropdown-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } - .p-input-filled .p-dropdown { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7040,11 +6812,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-dropdown.ng-dirty.ng-invalid .p-dropdown:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-galleria .p-galleria-indicators { padding: 1rem; } @@ -7056,14 +6826,12 @@ background: rgba(255, 64, 129, 0.68); color: #ffffff; } - .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } .p-inputtext:enabled:focus.ng-invalid.ng-dirty { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled .p-inputtext { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7093,7 +6861,6 @@ box-shadow: none; border-color: transparent; } - .p-input-filled .p-inputgroup .p-inputgroup-addon { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7108,26 +6875,24 @@ border-right-color: transparent; } .p-input-filled .p-inputgroup-addon:first-child, -.p-input-filled .p-inputgroup button:first-child, -.p-input-filled .p-inputgroup input:first-child { + .p-input-filled .p-inputgroup button:first-child, + .p-input-filled .p-inputgroup input:first-child { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:first-child input { border-bottom-left-radius: 0; } .p-input-filled .p-inputgroup-addon:last-child, -.p-input-filled .p-inputgroup button:last-child, -.p-input-filled .p-inputgroup input:last-child { + .p-input-filled .p-inputgroup button:last-child, + .p-input-filled .p-inputgroup input:last-child { border-bottom-right-radius: 0; } .p-input-filled .p-inputgroup .p-float-label:last-child input { border-bottom-right-radius: 0; } - p-inputmask.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputmask.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7136,11 +6901,9 @@ box-shadow: none; border-color: transparent; } - p-inputnumber.ng-dirty.ng-invalid .p-inputtext:enabled:focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-input-filled p-inputnumber.ng-dirty.ng-invalid .p-inputtext { border-color: transparent; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); @@ -7149,7 +6912,6 @@ box-shadow: none; border-color: transparent; } - .p-inputswitch .p-inputswitch-slider:before { transition-property: box-shadow transform; box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); @@ -7166,51 +6928,45 @@ .p-inputswitch.p-inputswitch-checked.p-focus .p-inputswitch-slider:before, .p-inputswitch.p-inputswitch-checked.p-focus:not(.p-disabled):hover .p-inputswitch-slider:before { box-shadow: 0 0 1px 10px rgba(63, 81, 181, 0.12), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); } - .p-fieldset .p-fieldset-legend { border: 0 none; } .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { background: rgba(0, 0, 0, 0.12); } - .p-float-label input:focus ~ label, -.p-float-label input.p-filled ~ label, -.p-float-label textarea:focus ~ label, -.p-float-label textarea.p-filled ~ label, -.p-float-label .p-inputwrapper-focus ~ label, -.p-float-label .p-inputwrapper-filled ~ label { + .p-float-label input.p-filled ~ label, + .p-float-label textarea:focus ~ label, + .p-float-label textarea.p-filled ~ label, + .p-float-label .p-inputwrapper-focus ~ label, + .p-float-label .p-inputwrapper-filled ~ label { top: -0.5rem !important; background-color: #ffffff; padding: 2px 4px; margin-left: -4px; margin-top: 0; } - .p-float-label textarea ~ label { margin-top: 0; } - .p-float-label input:focus ~ label, -.p-float-label .p-inputwrapper-focus ~ label { + .p-float-label .p-inputwrapper-focus ~ label { color: #3F51B5; } - .p-input-filled .p-float-label .p-inputtext { padding-top: 1.25rem; padding-bottom: 0.25rem; } .p-input-filled .p-float-label input:focus ~ label, -.p-input-filled .p-float-label input.p-filled ~ label, -.p-input-filled .p-float-label textarea:focus ~ label, -.p-input-filled .p-float-label textarea.p-filled ~ label, -.p-input-filled .p-float-label .p-inputwrapper-focus ~ label, -.p-input-filled .p-float-label .p-inputwrapper-filled ~ label { + .p-input-filled .p-float-label input.p-filled ~ label, + .p-input-filled .p-float-label textarea:focus ~ label, + .p-input-filled .p-float-label textarea.p-filled ~ label, + .p-input-filled .p-float-label .p-inputwrapper-focus ~ label, + .p-input-filled .p-float-label .p-inputwrapper-filled ~ label { top: 0.25rem !important; margin-top: 0; background: transparent; } - .p-listbox .p-listbox-list .p-listbox-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } @@ -7220,25 +6976,21 @@ .p-listbox .p-listbox-list .p-listbox-item:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-menu .p-menuitem .p-menuitem-link:focus { background: rgba(0, 0, 0, 0.12); } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-multiselect .p-multiselect-label, .p-multiselect .p-multiselect-trigger { background-image: none; background: transparent; @@ -7249,7 +7001,6 @@ .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } @@ -7262,7 +7013,6 @@ .p-multiselect-panel .p-multiselect-close:focus { background: rgba(0, 0, 0, 0.12); } - .p-input-filled .p-multiselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7296,13 +7046,11 @@ background-image: none; background: transparent; } - .p-float-label .p-multiselect-label .p-multiselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-multiselect .p-multiselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7331,22 +7079,18 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - p-multiselect.ng-dirty.ng-invalid .p-multiselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-orderlist .p-orderlist-list .p-orderlist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-orderlist .p-orderlist-list .p-orderlist-item:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-overlaypanel .p-overlaypanel-content { padding: 1.5rem; } - .p-paginator { justify-content: flex-end; } @@ -7356,14 +7100,13 @@ .p-paginator .p-paginator-element:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-panel { border-radius: 4px; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); } .p-panel .p-panel-header, -.p-panel .p-panel-content, -.p-panel .p-panel-footer { + .p-panel .p-panel-content, + .p-panel .p-panel-footer { border: 0 none; } .p-panel .p-panel-content { @@ -7375,7 +7118,6 @@ .p-panel .p-panel-header-icon:focus { background: rgba(0, 0, 0, 0.12); } - .p-panelmenu .p-panelmenu-panel { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); margin-bottom: 0; @@ -7411,21 +7153,18 @@ .p-panelmenu .p-panelmenu-panel .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-picklist .p-picklist-list .p-picklist-item:focus { background: rgba(0, 0, 0, 0.12); } .p-picklist .p-picklist-list .p-picklist-item:focus.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-progressbar { border-radius: 0; } .p-progressbar .p-progressbar-label { display: none !important; } - .p-radiobutton { border-radius: 50%; transition: box-shadow 0.2s; @@ -7451,14 +7190,12 @@ .p-radiobutton.p-radiobutton-checked:not(.p-radiobutton-disabled).p-radiobutton-focused { box-shadow: 0 0 1px 10px rgba(63, 81, 181, 0.12); } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #ffffff; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { background-color: #ffffff; } - .p-rating { gap: 0; } @@ -7480,7 +7217,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover.p-rating-cancel-item { background: rgba(176, 0, 32, 0.04); } - .p-selectbutton .p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7489,14 +7225,12 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-slider .p-slider-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); @@ -7507,7 +7241,6 @@ .p-slider.p-slider-sliding .p-slider-handle { transform: scale(1); } - .p-steps { padding: 1rem 0; } @@ -7560,7 +7293,6 @@ .p-steps .p-steps-item.p-disabled { opacity: 1; } - .p-tabview .p-tabview-nav { position: relative; } @@ -7583,11 +7315,9 @@ background-color: #3F51B5; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-toolbar { border: 0 none; } - .p-tooltip .p-tooltip-text { box-shadow: none; font-size: 0.875rem; @@ -7595,14 +7325,12 @@ .p-tooltip .p-tooltip-arrow { display: none; } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { background: rgba(0, 0, 0, 0.12); } - .p-treeselect .p-treeselect-label, .p-treeselect .p-treeselect-trigger { background-image: none; background: transparent; @@ -7613,11 +7341,9 @@ .p-treeselect:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5, inset 0 0 0 1px #3F51B5; } - .p-treeselect-item .p-ink { background-color: rgba(63, 81, 181, 0.16); } - .p-input-filled .p-treeselect { border-bottom-left-radius: 0; border-bottom-right-radius: 0; @@ -7651,13 +7377,11 @@ background-image: none; background: transparent; } - .p-float-label .p-treeselect-label .p-treeselect-token { padding: 0.25rem 1rem; margin-top: 0.25rem; margin-bottom: 0.25rem; } - .p-input-filled .p-float-label .p-treeselect .p-treeselect-label { padding-top: 1.25rem; padding-bottom: 0.25rem; @@ -7686,11 +7410,9 @@ box-shadow: none; background-image: linear-gradient(to bottom, #b00020, #b00020), linear-gradient(to bottom, #b00020, #b00020); } - .p-treeselect.p-invalid:not(.p-disabled).p-focus { box-shadow: inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020, inset 0 0 0 1px #b00020; } - .p-tree .p-tree-container .p-treenode { outline: 0 none; } @@ -7700,7 +7422,6 @@ .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content.p-highlight { background: rgba(63, 81, 181, 0.24); } - .p-treetable .p-sortable-column { outline: 0 none; } @@ -7713,7 +7434,6 @@ .p-treetable .p-treetable-tbody > tr:not(.p-highlight):focus { background-color: rgba(0, 0, 0, 0.03); } - .p-tabmenu .p-tabmenu-nav { position: relative; } @@ -7738,14 +7458,12 @@ background-color: #3F51B5; transition: 500ms cubic-bezier(0.35, 0, 0.25, 1); } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { margin: 0.5rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { margin: 0 0.5rem; } - .p-togglebutton.p-button:focus { background: #e0e0e1; border-color: #e0e0e1; @@ -7754,7 +7472,6 @@ background: #d9d8d9; border-color: #d9d8d9; } - .p-splitbutton.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(63, 81, 181, 0.12); } @@ -7786,53 +7503,45 @@ .p-splitbutton.p-button-raised > .p-button:not(:disabled):focus { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(255, 64, 129, 0.12); } .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { background: rgba(255, 64, 129, 0.16); } - .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(33, 150, 243, 0.12); } .p-splitbutton.p-button-info > .p-button.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined > .p-button:not(:disabled):active { background: rgba(33, 150, 243, 0.16); } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(104, 159, 56, 0.12); } .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { background: rgba(104, 159, 56, 0.16); } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(251, 192, 45, 0.12); } .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { background: rgba(251, 192, 45, 0.16); } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(156, 39, 176, 0.12); } .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { background: rgba(156, 39, 176, 0.16); } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):focus { background: rgba(211, 47, 47, 0.12); } .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { background: rgba(211, 47, 47, 0.16); } - .p-scrollpanel .p-scrollpanel-bar:focus { box-shadow: 0 0 1px 4px rgba(255, 64, 129, 0.2); } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { transition: transform 0.2s, box-shadow 0.2s; transform: scale(0.7); diff --git a/src/assets/components/themes/mira/theme.css b/src/assets/components/themes/mira/theme.css index 098569d429d..ccbd0be0dd4 100644 --- a/src/assets/components/themes/mira/theme.css +++ b/src/assets/components/themes/mira/theme.css @@ -52,29 +52,25 @@ font-family: "Inter"; font-style: normal; font-weight: 400; - src: local("Inter"), local("Inter-Regular"), url("./fonts/Inter-Regular.woff2") format("woff2"), url("./fonts/Inter-Regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Inter"), local("Inter-Regular"), url("./fonts/Inter-Regular.woff2") format("woff2"), url("./fonts/Inter-Regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 500; - src: local("Inter Medium"), local("Inter-Medium"), url("./fonts/Inter-Medium.woff2") format("woff2"), url("./fonts/Inter-Medium.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Inter Medium"), local("Inter-Medium"), url("./fonts/Inter-Medium.woff2") format("woff2"), url("./fonts/Inter-Medium.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 600; - src: local("Inter SemiBold"), local("Inter-SemiBold"), url("./fonts/Inter-SemiBold.woff2") format("woff2"), url("./fonts/Inter-SemiBold.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Inter SemiBold"), local("Inter-SemiBold"), url("./fonts/Inter-SemiBold.woff2") format("woff2"), url("./fonts/Inter-SemiBold.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 700; - src: local("Inter Bold"), local("Inter-Bold"), url("./fonts/Inter-Bold.woff2") format("woff2"), url("./fonts/Inter-Bold.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Inter Bold"), local("Inter-Bold"), url("./fonts/Inter-Bold.woff2") format("woff2"), url("./fonts/Inter-Bold.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f7f9fb; @@ -302,40 +298,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(112, 120, 136, 0.5); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #bf616a; } - .p-text-secondary { color: #81a1c1; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -347,15 +335,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -372,7 +357,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -419,7 +403,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #bf616a; } - .p-autocomplete-panel { background: #ffffff; color: #4c566a; @@ -466,11 +449,9 @@ color: #4c566a; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #bf616a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -478,23 +459,19 @@ color: #81a1c1; right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #81a1c1; right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #bf616a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; border-color: #81a1c1; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -521,7 +498,7 @@ border-top-left-radius: 4px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #81a1c1; @@ -531,13 +508,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #4c566a; border-color: #5e81ac; background: #ffffff; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; @@ -546,14 +523,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #4c566a; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #5e81ac; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -702,7 +679,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -710,12 +686,10 @@ color: #81a1c1; right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #81a1c1; right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -758,7 +732,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #bf616a; } - .p-cascadeselect-panel { background: #ffffff; color: #4c566a; @@ -798,7 +771,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #eceff4; } @@ -808,11 +780,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #bf616a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -820,7 +790,6 @@ color: #81a1c1; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -829,7 +798,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -870,11 +838,9 @@ background: #81a1c1; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #bf616a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #eceff4; } @@ -887,15 +853,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #81a1c1; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #bf616a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #81a1c1; } @@ -934,11 +897,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #bf616a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -946,26 +907,22 @@ color: #81a1c1; right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid #d8dee9; @@ -1009,7 +966,6 @@ .p-dropdown.p-invalid.p-component { border-color: #bf616a; } - .p-dropdown-panel { background: #ffffff; color: #4c566a; @@ -1073,7 +1029,6 @@ color: #4c566a; background: transparent; } - .p-input-filled .p-dropdown { background: #eceff4; } @@ -1086,11 +1041,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #bf616a; } - .p-inputgroup-addon { background: #ffffff; color: #81a1c1; @@ -1103,68 +1056,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d8dee9; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #bf616a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1172,11 +1117,9 @@ color: #81a1c1; right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #bf616a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1184,14 +1127,12 @@ color: #81a1c1; right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1230,11 +1171,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #81a1c1; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #bf616a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1267,57 +1206,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: #4c566a; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #bf616a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: #81a1c1; } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: #81a1c1; } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: #4c566a; } - :-moz-placeholder { color: #4c566a; } - ::-moz-placeholder { color: #4c566a; } - :-ms-input-placeholder { color: #4c566a; } - .p-input-filled .p-inputtext { background-color: #eceff4; } @@ -1327,17 +1254,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #ffffff; color: #4c566a; @@ -1412,11 +1336,9 @@ box-shadow: 0 0 0 0.2rem #c0d0e0; border-color: #81a1c1; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #bf616a; } - .p-multiselect { background: #ffffff; border: 1px solid #d8dee9; @@ -1456,11 +1378,9 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1468,7 +1388,6 @@ color: #81a1c1; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #4c566a; @@ -1557,7 +1476,6 @@ color: #4c566a; background: transparent; } - .p-input-filled .p-multiselect { background: #eceff4; } @@ -1567,15 +1485,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #bf616a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #bf616a; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1597,7 +1512,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #7fa366; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1605,7 +1519,6 @@ color: #81a1c1; right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1613,7 +1526,6 @@ color: #81a1c1; right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1651,11 +1563,9 @@ background: #81a1c1; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #bf616a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #eceff4; } @@ -1668,11 +1578,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #81a1c1; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1703,7 +1611,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #d88889; } - .p-selectbutton .p-button { background: #ffffff; border: 2px solid #d8dee9; @@ -1711,7 +1618,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #81a1c1; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1720,7 +1627,7 @@ color: #4c566a; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #81a1c1; } .p-selectbutton .p-button.p-highlight { @@ -1729,7 +1636,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1738,14 +1645,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #bf616a; } - .p-slider { background: #e5e9f0; border: 0 none; @@ -1797,7 +1702,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 2px solid #d8dee9; @@ -1805,7 +1709,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #81a1c1; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1814,7 +1718,7 @@ color: #4c566a; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #81a1c1; } .p-togglebutton.p-button.p-highlight { @@ -1823,7 +1727,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1832,14 +1736,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #bf616a; } - .p-treeselect { background: #ffffff; border: 1px solid #d8dee9; @@ -1876,15 +1778,12 @@ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #bf616a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #ffffff; color: #4c566a; @@ -1944,7 +1843,6 @@ color: #4c566a; background: transparent; } - .p-input-filled .p-treeselect { background: #eceff4; } @@ -1954,7 +1852,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1962,7 +1859,6 @@ color: #81a1c1; right: 2.357rem; } - .p-button { color: #ffffff; background: #5e81ac; @@ -2074,7 +1970,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2101,434 +1997,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #4c566a; border: 2px solid #4c566a; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #707888; color: #ffffff; border-color: #4c566a; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #b3bac8; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #2e3440; color: #ffffff; border-color: #2e3440; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #4c566a; border: 2px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(76, 86, 106, 0.12); color: #4c566a; border: 2px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(76, 86, 106, 0.24); color: #4c566a; border: 2px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #4c566a; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(76, 86, 106, 0.12); border-color: transparent; color: #4c566a; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(76, 86, 106, 0.24); border-color: transparent; color: #4c566a; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #639bb2; border: 2px solid #639bb2; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #88c0d0; color: #ffffff; border-color: #639bb2; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c1d7e0; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #497e94; color: #ffffff; border-color: #497e94; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #639bb2; border: 2px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(99, 155, 178, 0.12); color: #639bb2; border: 2px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(99, 155, 178, 0.24); color: #639bb2; border: 2px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #639bb2; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(99, 155, 178, 0.12); border-color: transparent; color: #639bb2; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(99, 155, 178, 0.24); border-color: transparent; color: #639bb2; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #7fa366; border: 2px solid #7fa366; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #a3be8c; color: #ffffff; border-color: #7fa366; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ccdac2; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #658450; color: #ffffff; border-color: #658450; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #7fa366; border: 2px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(127, 163, 102, 0.12); color: #7fa366; border: 2px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(127, 163, 102, 0.24); color: #7fa366; border: 2px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #7fa366; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(127, 163, 102, 0.12); border-color: transparent; color: #7fa366; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(127, 163, 102, 0.24); border-color: transparent; color: #7fa366; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #d08770; border: 2px solid #d08770; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #e2ac94; color: #ffffff; border-color: #d08770; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #eccfc6; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #c05f40; color: #ffffff; border-color: #c05f40; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #d08770; border: 2px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(208, 135, 112, 0.12); color: #d08770; border: 2px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(208, 135, 112, 0.24); color: #d08770; border: 2px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #d08770; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(208, 135, 112, 0.12); border-color: transparent; color: #d08770; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(208, 135, 112, 0.24); border-color: transparent; color: #d08770; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9a6796; border: 2px solid #9a6796; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #b48ead; color: #ffffff; border-color: #9a6796; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #d7c2d5; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7c5278; color: #ffffff; border-color: #7c5278; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9a6796; border: 2px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(154, 103, 150, 0.12); color: #9a6796; border: 2px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(154, 103, 150, 0.24); color: #9a6796; border: 2px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9a6796; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(154, 103, 150, 0.12); border-color: transparent; color: #9a6796; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(154, 103, 150, 0.24); border-color: transparent; color: #9a6796; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #bf616a; border: 2px solid #bf616a; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #d88889; color: #ffffff; border-color: #bf616a; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e5c0c3; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #a4424c; color: #ffffff; border-color: #a4424c; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #bf616a; border: 2px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(191, 97, 106, 0.12); color: #bf616a; border: 2px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(191, 97, 106, 0.24); color: #bf616a; border: 2px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #bf616a; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(191, 97, 106, 0.12); border-color: transparent; color: #bf616a; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(191, 97, 106, 0.24); border-color: transparent; color: #bf616a; } - .p-button.p-button-link { color: #48678c; background: transparent; @@ -2552,7 +2440,6 @@ color: #48678c; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2564,17 +2451,14 @@ width: 2rem; height: 2rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2585,52 +2469,45 @@ background: #3b4252; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(112, 120, 136, 0.5); } - .p-splitbutton { border-radius: 4px; } @@ -2708,7 +2585,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #4c566a; @@ -2737,7 +2613,6 @@ border-color: transparent; color: #4c566a; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #639bb2; @@ -2766,7 +2641,6 @@ border-color: transparent; color: #639bb2; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #7fa366; @@ -2795,7 +2669,6 @@ border-color: transparent; color: #7fa366; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #d08770; @@ -2824,7 +2697,6 @@ border-color: transparent; color: #d08770; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9a6796; @@ -2853,7 +2725,6 @@ border-color: transparent; color: #9a6796; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #bf616a; @@ -2882,9 +2753,8 @@ border-color: transparent; color: #bf616a; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #81a1c1; @@ -2895,13 +2765,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #4c566a; border-color: #5e81ac; background: #ffffff; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; @@ -2927,7 +2797,6 @@ background: #d8dee9; color: #2e3440; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3021,9 +2890,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #81a1c1; @@ -3033,17 +2902,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #4c566a; border-color: #5e81ac; background: #ffffff; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; @@ -3073,12 +2942,12 @@ background: #5e81ac; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #ffffff; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #eceff4; } .p-datatable .p-datatable-loading-icon { @@ -3181,7 +3050,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3220,12 +3088,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3253,7 +3119,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3273,7 +3138,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-column-filter-overlay { background: #ffffff; color: #4c566a; @@ -3311,7 +3175,6 @@ border-top: 1px solid #e5e9f0; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3340,7 +3203,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3426,7 +3288,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: transparent; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3435,7 +3296,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: transparent; color: #4c566a; @@ -3474,7 +3334,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-paginator { background: #ffffff; color: #4c566a; @@ -3484,9 +3343,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #4c566a; @@ -3497,9 +3356,9 @@ border-radius: 4px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #eceff4; border-color: #5e81ac; color: #4c566a; @@ -3556,7 +3415,6 @@ border-color: #5e81ac; color: #4c566a; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3642,7 +3500,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: transparent; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3651,7 +3508,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3663,20 +3519,19 @@ background-color: #e5e9f0; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e5e9f0; background: #ffffff; @@ -3733,11 +3588,11 @@ color: #2e3440; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #2e3440; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #2e3440; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3810,7 +3665,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3950,7 +3804,7 @@ background: #5e81ac; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #ffffff; } .p-treetable .p-treetable-loading-icon { @@ -4011,7 +3865,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: #4c566a; @@ -4036,7 +3889,6 @@ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #e5e9f0; @@ -4109,7 +3961,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-card { background: #ffffff; color: #4c566a; @@ -4135,7 +3986,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4159,7 +4009,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e5e9f0; background: #ffffff; @@ -4200,7 +4049,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #e5e9f0; padding: 1rem; @@ -4267,7 +4115,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #eceff4; border: 0 none; @@ -4278,7 +4125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-splitter { border: 1px solid #e5e9f0; background: #ffffff; @@ -4300,7 +4146,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #c2c7d1; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4369,7 +4214,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-toolbar { background: #ffffff; border: 1px solid #e5e9f0; @@ -4380,7 +4224,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #4c566a; @@ -4428,7 +4271,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 4px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4501,7 +4343,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #4c566a; @@ -4543,7 +4384,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #4c566a; @@ -4554,7 +4394,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #81a1c1; @@ -4564,13 +4404,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #4c566a; border-color: #5e81ac; background: #ffffff; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; @@ -4584,7 +4424,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #4c566a; color: #ffffff; @@ -4604,7 +4443,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #4c566a; } - .p-fileupload .p-fileupload-buttonbar { background: #ffffff; padding: 1rem; @@ -4644,7 +4482,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #81a1c1; color: #ffffff; @@ -4655,7 +4492,6 @@ color: #ffffff; border-color: #48678c; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e9f0; @@ -4687,7 +4523,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #81a1c1; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; @@ -4735,7 +4570,7 @@ color: #4c566a; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4749,7 +4584,7 @@ color: #4c566a; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4760,7 +4595,7 @@ color: #4c566a; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-contextmenu .p-menuitem-separator { @@ -4774,7 +4609,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4798,32 +4632,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4882,7 +4715,7 @@ color: #4c566a; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4896,7 +4729,7 @@ color: #4c566a; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4907,7 +4740,7 @@ color: #4c566a; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-megamenu .p-megamenu-panel { @@ -4965,10 +4798,9 @@ color: #4c566a; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -5005,7 +4837,7 @@ color: #4c566a; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5019,7 +4851,7 @@ color: #4c566a; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5030,7 +4862,7 @@ color: #4c566a; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-menu.p-menu-overlay { @@ -5064,7 +4896,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #eceff4; @@ -5103,7 +4934,7 @@ color: #4c566a; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5134,7 +4965,7 @@ color: #4c566a; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5148,7 +4979,7 @@ color: #4c566a; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5159,7 +4990,7 @@ color: #4c566a; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-menubar .p-submenu-list { @@ -5176,7 +5007,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5351,7 +5181,7 @@ color: #4c566a; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5365,7 +5195,7 @@ color: #4c566a; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5376,7 +5206,7 @@ color: #4c566a; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5416,7 +5246,6 @@ border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5459,7 +5288,7 @@ color: #4c566a; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5473,7 +5302,7 @@ color: #4c566a; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5484,7 +5313,7 @@ color: #4c566a; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-slidemenu.p-slidemenu-overlay { @@ -5531,7 +5360,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5576,7 +5404,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 2px solid #e5e9f0; @@ -5647,7 +5474,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #c0d0e0; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5698,7 +5524,7 @@ color: #4c566a; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5712,7 +5538,7 @@ color: #4c566a; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #4c566a; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5723,7 +5549,7 @@ color: #4c566a; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #81a1c1; } .p-tieredmenu .p-menuitem-separator { @@ -5737,7 +5563,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5793,7 +5618,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 4px; @@ -5882,7 +5706,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5933,7 +5756,7 @@ color: #2e4f5d; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #17282e; } .p-toast .p-toast-message.p-toast-message-success { @@ -5943,7 +5766,7 @@ color: #202919; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #202919; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5953,7 +5776,7 @@ color: #3c1d14; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #3c1d14; } .p-toast .p-toast-message.p-toast-message-error { @@ -5963,10 +5786,9 @@ color: #331518; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #331518; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5997,7 +5819,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6054,7 +5876,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #eceff4; @@ -6064,7 +5886,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #eceff4; } @@ -6073,29 +5895,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6119,7 +5935,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #e5e9f0; border-radius: 4px; @@ -6140,11 +5955,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #5e81ac; color: #ffffff; @@ -6186,7 +5999,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #e5e9f0; color: #4c566a; @@ -6222,7 +6034,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 4px; @@ -6237,7 +6048,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #c0d0e0; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6253,7 +6063,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6275,7 +6084,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e5e9f0; border-radius: 4px; @@ -6283,7 +6091,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #5e81ac; color: #ffffff; @@ -6316,7 +6123,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #4c566a; @@ -6337,59 +6143,48 @@ .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-chips .p-chips-multiple-container:not(.p-disabled):hover { background-color: #eceff4; } .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { background-color: #ffffff; } - .p-autocomplete .p-autocomplete-panel .p-autocomplete-item:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled):hover { background-color: #eceff4; } - .p-dropdown:not(.p-disabled):hover { background-color: #eceff4; } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-multiselect:not(.p-disabled):hover { background-color: #eceff4; } - .p-button { font-weight: 500; } - .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { background-color: #d8dee9; } .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { border-color: transparent; } - .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { background-color: #d8dee9; } .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { border-color: transparent; } - .p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover:not(.p-disabled) .p-accordion-header-link:focus { box-shadow: inset 0 0 0 0.1rem #81a1c1; } @@ -6399,7 +6194,6 @@ .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-datepicker table td > span.p-highlight { color: #ffffff; background: #5e81ac; @@ -6412,40 +6206,33 @@ color: #ffffff; background: #5e81ac; } - .p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-menubar .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-tieredmenu .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-menu .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-contextmenu .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { border: 1px solid #5e81ac; } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { border: 1px solid #5e81ac; } - .p-datatable .p-sortable-column:not(.p-highlight):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } @@ -6458,22 +6245,18 @@ .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { outline: 1px solid #81a1c1; } - .p-overlaypanel .p-overlaypanel-close:enabled:hover { background: #81a1c1; color: #ffffff; border: 2px solid #51749e; } - .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-tree.p-tree-horizontal .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: #ffffff; box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-treetable .p-sortable-column:not(.p-highlight):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } @@ -6491,14 +6274,12 @@ .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { outline: 1px solid #81a1c1; } - .p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } .p-megamenu .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled) > a:hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } @@ -6508,21 +6289,17 @@ .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-slidemenu .p-menuitem-link:not(.p-disabled):hover { box-shadow: inset 0 0 0 0.1rem #81a1c1; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background: #5e81ac; color: #ffffff; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #5e81ac; color: #ffffff; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #5e81ac; } diff --git a/src/assets/components/themes/nano/theme.css b/src/assets/components/themes/nano/theme.css index a9b3c4b7abc..63614410cc6 100644 --- a/src/assets/components/themes/nano/theme.css +++ b/src/assets/components/themes/nano/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #d8222f; } - .p-text-secondary { color: #697077; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.25rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #d8222f; } - .p-autocomplete-panel { background: #ffffff; color: #343a3f; @@ -440,11 +427,9 @@ color: #343a3f; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #d8222f; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.5rem; } @@ -452,23 +437,19 @@ color: #697077; right: 0.25rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #697077; right: 2.607rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #d8222f; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; border-color: #1174c0; } - .p-datepicker { padding: 0.25rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 1px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 1rem; height: 1rem; color: #878d96; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #343a3f; border-color: #121619; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; @@ -520,14 +501,14 @@ line-height: 1rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #343a3f; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #1174c0; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.5rem; } @@ -684,12 +664,10 @@ color: #697077; right: 0.25rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #697077; right: 2.607rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #d8222f; } - .p-cascadeselect-panel { background: #ffffff; color: #343a3f; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f2f4f8; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #d8222f; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.25rem; } @@ -794,7 +768,6 @@ color: #697077; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 14px; height: 14px; @@ -844,11 +816,9 @@ background: #0e5d9a; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #d8222f; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f2f4f8; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #0e5d9a; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #d8222f; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #1174c0; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #d8222f; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.25rem; } @@ -920,26 +885,22 @@ color: #697077; right: 0.25rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid #a5acb3; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #d8222f; } - .p-dropdown-panel { background: #ffffff; color: #343a3f; @@ -1047,7 +1007,6 @@ color: #343a3f; background: transparent; } - .p-input-filled .p-dropdown { background: #f2f4f8; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #d8222f; } - .p-inputgroup-addon { background: #dde1e6; color: #697077; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #a5acb3; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 1px; border-bottom-left-radius: 1px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 1px; border-bottom-left-radius: 1px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 1px; border-bottom-right-radius: 1px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 1px; border-bottom-right-radius: 1px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #d8222f; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.5rem; } @@ -1146,11 +1095,9 @@ color: #697077; right: 0.25rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #d8222f; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.5rem; } @@ -1158,14 +1105,12 @@ color: #697077; right: 0.25rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.607rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.607rem; } - .p-inputswitch { width: 2rem; height: 1.155rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #0f68ad; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #d8222f; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.3125rem 0.3125rem; } - .p-float-label > label { left: 0.25rem; color: #697077; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #d8222f; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.25rem; color: #697077; } - .p-input-icon-left > .p-inputtext { padding-left: 1.5rem; } - .p-input-icon-left.p-float-label > label { left: 1.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.25rem; color: #697077; } - .p-input-icon-right > .p-inputtext { padding-right: 1.5rem; } - ::-webkit-input-placeholder { color: #697077; } - :-moz-placeholder { color: #697077; } - ::-moz-placeholder { color: #697077; } - :-ms-input-placeholder { color: #697077; } - .p-input-filled .p-inputtext { background-color: #f2f4f8; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.21875rem 0.21875rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.3125rem 0.3125rem; } - .p-listbox { background: #ffffff; color: #343a3f; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #90c9f5; border-color: #1174c0; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #d8222f; } - .p-multiselect { background: #ffffff; border: 1px solid #a5acb3; @@ -1430,11 +1356,9 @@ border-top-right-radius: 1px; border-bottom-right-radius: 1px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.125rem 0.25rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.25rem; } @@ -1442,7 +1366,6 @@ color: #697077; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #343a3f; @@ -1531,7 +1454,6 @@ color: #343a3f; background: transparent; } - .p-input-filled .p-multiselect { background: #f2f4f8; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #d8222f; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #d8222f; } - .p-password-panel { padding: 0.5rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #207f3b; } - p-password.p-password-clearable .p-password-input { padding-right: 1.5rem; } @@ -1579,7 +1497,6 @@ color: #697077; right: 0.25rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 2.75rem; } @@ -1587,7 +1504,6 @@ color: #697077; right: 1.5rem; } - .p-radiobutton { width: 14px; height: 14px; @@ -1625,11 +1541,9 @@ background: #0e5d9a; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #d8222f; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f2f4f8; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #0e5d9a; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #c0392b; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #a5acb3; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #697077; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #343a3f; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #697077; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #d8222f; } - .p-slider { background: #dee2e6; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #a5acb3; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #697077; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #343a3f; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #697077; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #d8222f; } - .p-treeselect { background: #ffffff; border: 1px solid #a5acb3; @@ -1850,15 +1756,12 @@ border-top-right-radius: 1px; border-bottom-right-radius: 1px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #d8222f; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.125rem 0.25rem; } - .p-treeselect-panel { background: #ffffff; color: #343a3f; @@ -1918,7 +1821,6 @@ color: #343a3f; background: transparent; } - .p-input-filled .p-treeselect { background: #f2f4f8; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.25rem; } @@ -1936,7 +1837,6 @@ color: #697077; right: 2.357rem; } - .p-button { color: #ffffff; background: #1174c0; @@ -2048,7 +1948,7 @@ padding: 0.25rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #697077; border: 1px solid #697077; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #5f656b; color: #ffffff; border-color: #5f656b; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c2c6c9; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #545a5f; color: #ffffff; border-color: #545a5f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #697077; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(105, 112, 119, 0.04); color: #697077; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(105, 112, 119, 0.16); color: #697077; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #697077; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(105, 112, 119, 0.04); border-color: transparent; color: #697077; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(105, 112, 119, 0.16); border-color: transparent; color: #697077; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #107d79; border: 1px solid #107d79; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #0e716d; color: #ffffff; border-color: #0e716d; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #7ceeea; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #0d6461; color: #ffffff; border-color: #0d6461; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #107d79; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(16, 125, 121, 0.04); color: #107d79; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(16, 125, 121, 0.16); color: #107d79; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #107d79; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(16, 125, 121, 0.04); border-color: transparent; color: #107d79; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(16, 125, 121, 0.16); border-color: transparent; color: #107d79; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #207f3b; border: 1px solid #207f3b; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #1d7235; color: #ffffff; border-color: #1d7235; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #8fe3a7; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #1a662f; color: #ffffff; border-color: #1a662f; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #207f3b; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(32, 127, 59, 0.04); color: #207f3b; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(32, 127, 59, 0.16); color: #207f3b; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #207f3b; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(32, 127, 59, 0.04); border-color: transparent; color: #207f3b; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(32, 127, 59, 0.16); border-color: transparent; color: #207f3b; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #f0c135; border: 1px solid #f0c135; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #eeb91a; color: #212529; border-color: #eeb91a; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f9e6ae; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #daa710; color: #212529; border-color: #daa710; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #f0c135; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(240, 193, 53, 0.04); color: #f0c135; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(240, 193, 53, 0.16); color: #f0c135; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #f0c135; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(240, 193, 53, 0.04); border-color: transparent; color: #f0c135; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(240, 193, 53, 0.16); border-color: transparent; color: #f0c135; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #8949f8; border: 1px solid #8949f8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #752af7; color: #ffffff; border-color: #752af7; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #d0b6fc; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #610bf6; color: #ffffff; border-color: #610bf6; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #8949f8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(137, 73, 248, 0.04); color: #8949f8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(137, 73, 248, 0.16); color: #8949f8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #8949f8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(137, 73, 248, 0.04); border-color: transparent; color: #8949f8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(137, 73, 248, 0.16); border-color: transparent; color: #8949f8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d8222f; border: 1px solid #d8222f; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c21f2a; color: #ffffff; border-color: #c21f2a; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f1a5ab; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ad1b26; color: #ffffff; border-color: #ad1b26; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d8222f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(216, 34, 47, 0.04); color: #d8222f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(216, 34, 47, 0.16); color: #d8222f; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d8222f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(216, 34, 47, 0.04); border-color: transparent; color: #d8222f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(216, 34, 47, 0.16); border-color: transparent; color: #d8222f; } - .p-button.p-button-link { color: #0e5d9a; background: transparent; @@ -2526,7 +2418,6 @@ color: #0e5d9a; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 2.75rem; height: 2.75rem; @@ -2538,17 +2429,14 @@ width: 1rem; height: 1rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-speeddial-action { width: 2.25rem; height: 2.25rem; @@ -2559,52 +2447,45 @@ background: #21272a; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 1px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #697077; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #697077; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #107d79; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #107d79; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #207f3b; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #207f3b; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #f0c135; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #f0c135; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #8949f8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #8949f8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d8222f; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #d8222f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 1rem; height: 1rem; color: #878d96; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #343a3f; border-color: #121619; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; @@ -2901,7 +2775,6 @@ background: #44a1d9; color: #ffffff; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 0.25rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 1rem; height: 1rem; color: #878d96; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #343a3f; border-color: #121619; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; @@ -3047,12 +2920,12 @@ background: #1174c0; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f2f4f8; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f2f4f8; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.3125rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.5rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 1rem; height: 1rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-column-filter-clear-button { width: 1rem; height: 1rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-column-filter-overlay { background: #ffffff; color: #343a3f; @@ -3285,7 +3153,6 @@ border-top: 1px solid #dee2e6; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.25rem 0.5rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.5rem; } - .p-orderlist .p-orderlist-controls { padding: 0.5rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #dde1e6; } - .p-orderlist-item.cdk-drag-preview { padding: 0.25rem 0.5rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #dde1e6; color: #343a3f; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-paginator { background: #ffffff; color: #697077; @@ -3458,9 +3321,9 @@ border-radius: 1px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #697077; @@ -3471,9 +3334,9 @@ border-radius: 1px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #dde1e6; border-color: transparent; color: #343a3f; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #343a3f; } - .p-picklist .p-picklist-buttons { padding: 0.5rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #dde1e6; } - .p-picklist-item.cdk-drag-preview { padding: 0.25rem 0.5rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #1174c0; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f2f4f8; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.3125rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f2f4f8; color: #343a3f; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.75rem; border: 1px solid #dee2e6; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; } - .p-card { background: #ffffff; color: #343a3f; @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 0.5rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 0.75rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f2f4f8; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; } - .p-toolbar { background: #f2f4f8; border: 1px solid #dee2e6; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #343a3f; @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 1px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #343a3f; @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #343a3f; @@ -4528,7 +4372,7 @@ padding: 0.75rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 1rem; height: 1rem; color: #878d96; @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #343a3f; border-color: #121619; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.75rem; } - .p-tooltip .p-tooltip-text { background: #343a3f; color: #ffffff; @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #343a3f; } - .p-fileupload .p-fileupload-buttonbar { background: #f2f4f8; padding: 0.75rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #0f68ad; color: #ffffff; @@ -4629,7 +4470,6 @@ color: #ffffff; border-color: #0e5d9a; } - .p-breadcrumb { background: #ffffff; border: 1px solid #dee2e6; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #697077; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; @@ -4709,7 +4548,7 @@ color: #343a3f; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: #343a3f; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: #343a3f; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: #343a3f; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: #343a3f; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: #343a3f; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: #343a3f; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -4979,7 +4815,7 @@ color: #343a3f; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: #343a3f; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: #343a3f; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f2f4f8; @@ -5077,7 +4912,7 @@ color: #343a3f; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: #343a3f; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: #343a3f; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: #343a3f; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: #343a3f; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: #343a3f; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: #343a3f; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5433,7 +5266,7 @@ color: #343a3f; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: #343a3f; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: #343a3f; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #dee2e6; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #90c9f5; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5672,7 +5502,7 @@ color: #343a3f; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #697077; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: #343a3f; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #343a3f; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: #343a3f; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #697077; } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.25rem 0.25rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 1px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #08576a; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #08576a; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #196310; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #196310; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #726203; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #726203; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #6f2205; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #6f2205; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f2f4f8; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f2f4f8; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 1px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #1174c0; color: #ffffff; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #343a3f; @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.25rem 0.25rem; border-radius: 1px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #90c9f5; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 2rem; height: 2rem; @@ -6249,7 +6062,6 @@ width: 1rem; height: 1rem; } - .p-skeleton { background-color: #dde1e6; border-radius: 1px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #1174c0; color: #ffffff; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #343a3f; diff --git a/src/assets/components/themes/nova-accent/theme.css b/src/assets/components/themes/nova-accent/theme.css index 15c76b69f7a..8c1f08d2627 100644 --- a/src/assets/components/themes/nova-accent/theme.css +++ b/src/assets/components/themes/nova-accent/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #a80000; } - .p-text-secondary { color: #848484; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #a80000; } - .p-autocomplete-panel { background: #ffffff; color: #333333; @@ -440,11 +427,9 @@ color: #333333; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #a80000; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #848484; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #848484; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #a80000; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } - .p-datepicker { padding: 0.857rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #333333; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #007ad9; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #848484; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #848484; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0.25rem; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #a80000; } - .p-cascadeselect-panel { background: #ffffff; color: #333333; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f4f4f4; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #a80000; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #848484; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #005b9f; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a80000; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005b9f; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a80000; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #212121; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #a80000; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -920,26 +885,22 @@ color: #848484; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #ffffff; border: 1px solid #a6a6a6; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #a80000; } - .p-dropdown-panel { background: #ffffff; color: #333333; @@ -1047,7 +1007,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-dropdown { background: #f4f4f4; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #a80000; } - .p-inputgroup-addon { background: #eaeaea; color: #848484; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #a6a6a6; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #a80000; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1146,11 +1095,9 @@ color: #848484; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #a80000; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1158,14 +1105,12 @@ color: #848484; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #116fbf; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #a80000; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #666666; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #a80000; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #848484; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #848484; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #666666; } - :-moz-placeholder { color: #666666; } - ::-moz-placeholder { color: #666666; } - :-ms-input-placeholder { color: #666666; } - .p-input-filled .p-inputtext { background-color: #f4f4f4; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #f4f4f4; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #ffffff; color: #333333; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #a80000; } - .p-multiselect { background: #ffffff; border: 1px solid #a6a6a6; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1442,7 +1366,6 @@ color: #848484; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #333333; @@ -1531,7 +1454,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-multiselect { background: #f4f4f4; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #a80000; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #a80000; } - .p-password-panel { padding: 0.571rem 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #34a835; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1579,7 +1497,6 @@ color: #848484; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1587,7 +1504,6 @@ color: #848484; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #005b9f; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #a80000; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f4f4f4; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #005b9f; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-selectbutton .p-button { background: #dadada; border: 1px solid #dadada; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #666666; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #333333; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #212121; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #a80000; } - .p-slider { background: #c8c8c8; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #dadada; border: 1px solid #dadada; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #666666; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #333333; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #212121; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #a80000; } - .p-treeselect { background: #ffffff; border: 1px solid #a6a6a6; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #a80000; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #ffffff; color: #333333; @@ -1918,7 +1821,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-treeselect { background: #f4f4f4; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1936,7 +1837,6 @@ color: #848484; right: 2.357rem; } - .p-button { color: #ffffff; background: #007ad9; @@ -2048,7 +1948,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #546e7a; color: #ffffff; border-color: #546e7a; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #b0bec5; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #455a64; color: #ffffff; border-color: #455a64; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #007ad9; border: 1px solid #007ad9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #116fbf; color: #ffffff; border-color: #116fbf; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #8dcdff; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #005b9f; color: #ffffff; border-color: #005b9f; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(0, 122, 217, 0.04); color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(0, 122, 217, 0.16); color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #007ad9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(0, 122, 217, 0.04); border-color: transparent; color: #007ad9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(0, 122, 217, 0.16); border-color: transparent; color: #007ad9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #34a835; border: 1px solid #34a835; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #107d11; color: #ffffff; border-color: #107d11; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #aae5aa; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #0c6b0d; color: #ffffff; border-color: #0c6b0d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(52, 168, 53, 0.04); color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(52, 168, 53, 0.16); color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #34a835; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(52, 168, 53, 0.04); border-color: transparent; color: #34a835; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(52, 168, 53, 0.16); border-color: transparent; color: #34a835; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #333333; background: #ffba01; border: 1px solid #ffba01; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ed990b; color: #333333; border-color: #ed990b; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffeab4; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #d38b10; color: #333333; border-color: #d38b10; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 186, 1, 0.04); color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 186, 1, 0.16); color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffba01; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 186, 1, 0.04); border-color: transparent; color: #ffba01; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 186, 1, 0.16); border-color: transparent; color: #ffba01; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8e24aa; color: #ffffff; border-color: #8e24aa; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7b1fa2; color: #ffffff; border-color: #7b1fa2; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #e91224; border: 1px solid #e91224; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c01120; color: #ffffff; border-color: #c01120; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f9b4ba; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #a90000; color: #ffffff; border-color: #a90000; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(233, 18, 36, 0.04); color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(233, 18, 36, 0.16); color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e91224; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(233, 18, 36, 0.04); border-color: transparent; color: #e91224; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(233, 18, 36, 0.16); border-color: transparent; color: #e91224; } - .p-button.p-button-link { color: #005b9f; background: transparent; @@ -2526,7 +2418,6 @@ color: #005b9f; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #222c31; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #007ad9; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #007ad9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #34a835; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #34a835; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffba01; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffba01; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e91224; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #e91224; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -2901,7 +2775,6 @@ background: #e02365; color: #ffffff; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #a6a6a6; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -3047,12 +2920,12 @@ background: #007ad9; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #007ad9; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f4f4f4; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-column-filter-overlay { background: #ffffff; color: #333333; @@ -3285,7 +3153,6 @@ border-top: 1px solid #d8dae2; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #eaeaea; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #eaeaea; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #eaeaea; color: #333333; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-paginator { background: #f4f4f4; color: #333333; @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #848484; @@ -3471,9 +3334,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #333333; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #333333; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #eaeaea; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #c8c8c8; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #c8c8c8; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #007ad9; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #007ad9; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #007ad9; color: #ffffff; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #007ad9; @@ -4059,7 +3915,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #ffffff; color: #333333; @@ -4085,7 +3940,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4109,7 +3963,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #c8c8c8; background: #ffffff; @@ -4150,7 +4003,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #007ad9; padding: 0.857rem 1rem; @@ -4217,7 +4069,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f8f8; border: 0 none; @@ -4228,7 +4079,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-splitter { border: 1px solid #c8c8c8; background: #ffffff; @@ -4250,7 +4100,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #d8dae2; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4319,7 +4168,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #007ad9; border: 1px solid #007ad9; @@ -4330,7 +4178,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #333333; @@ -4378,7 +4225,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4451,7 +4297,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #333333; @@ -4493,7 +4338,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #c8c8c8; } - .p-sidebar { background: #ffffff; color: #333333; @@ -4504,7 +4348,7 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #a6a6a6; @@ -4514,13 +4358,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -4534,7 +4378,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #333333; color: #ffffff; @@ -4554,7 +4397,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #333333; } - .p-fileupload .p-fileupload-buttonbar { background: #007ad9; padding: 0.857rem 1rem; @@ -4594,7 +4436,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #116fbf; color: #ffffff; @@ -4605,7 +4446,6 @@ color: #ffffff; border-color: #005b9f; } - .p-breadcrumb { background: #ffffff; border: 1px solid #c8c8c8; @@ -4637,7 +4477,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #333333; } - .p-contextmenu { padding: 0; background: #ffffff; @@ -4685,7 +4524,7 @@ color: #333333; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4699,7 +4538,7 @@ color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4710,7 +4549,7 @@ color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem-separator { @@ -4724,7 +4563,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4748,32 +4586,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4832,7 +4669,7 @@ color: #333333; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4846,7 +4683,7 @@ color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4857,7 +4694,7 @@ color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-megamenu-panel { @@ -4915,10 +4752,9 @@ color: #333333; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } - .p-menu { padding: 0; background: #ffffff; @@ -4955,7 +4791,7 @@ color: #333333; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4969,7 +4805,7 @@ color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4980,7 +4816,7 @@ color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu.p-menu-overlay { @@ -5014,7 +4850,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #ffffff; @@ -5053,7 +4888,7 @@ color: #333333; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5084,7 +4919,7 @@ color: #333333; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5098,7 +4933,7 @@ color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5109,7 +4944,7 @@ color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-submenu-list { @@ -5126,7 +4961,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5301,7 +5135,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5315,7 +5149,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5326,7 +5160,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5342,7 +5176,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #ffffff; @@ -5385,7 +5218,7 @@ color: #333333; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5399,7 +5232,7 @@ color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5410,7 +5243,7 @@ color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu.p-slidemenu-overlay { @@ -5457,7 +5290,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, box-shadow 0.2s; @@ -5502,7 +5334,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5573,7 +5404,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #8dcdff; } - .p-tieredmenu { padding: 0; background: #ffffff; @@ -5624,7 +5454,7 @@ color: #333333; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5638,7 +5468,7 @@ color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5649,7 +5479,7 @@ color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem-separator { @@ -5663,7 +5493,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5719,7 +5548,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5808,7 +5636,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5859,7 +5686,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5869,7 +5696,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5879,7 +5706,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5889,10 +5716,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5923,7 +5749,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5980,7 +5806,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -5990,7 +5816,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -5999,29 +5825,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6045,7 +5865,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #c8c8c8; border-radius: 3px; @@ -6066,11 +5885,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #007ad9; color: #ffffff; @@ -6112,7 +5929,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #c8c8c8; color: #333333; @@ -6148,7 +5964,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6163,7 +5978,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-progressbar { border: 0 none; height: 24px; @@ -6179,7 +5993,6 @@ color: #ffffff; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6201,7 +6014,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #eaeaea; border-radius: 3px; @@ -6209,7 +6021,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #007ad9; color: #ffffff; @@ -6242,7 +6053,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #333333; @@ -6262,7 +6072,6 @@ .p-panel .p-panel-header .p-panel-header-icon:enabled:hover { color: #5ab7ff; } - .p-dialog .p-dialog-header .p-dialog-header-icon { color: #ffffff; } diff --git a/src/assets/components/themes/nova-alt/theme.css b/src/assets/components/themes/nova-alt/theme.css index a7c600cbbbe..68a47020444 100644 --- a/src/assets/components/themes/nova-alt/theme.css +++ b/src/assets/components/themes/nova-alt/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #a80000; } - .p-text-secondary { color: #848484; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #a80000; } - .p-autocomplete-panel { background: #ffffff; color: #333333; @@ -440,11 +427,9 @@ color: #333333; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #a80000; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #848484; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #848484; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #a80000; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } - .p-datepicker { padding: 0.857rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #333333; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #007ad9; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #848484; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #848484; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0.25rem; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #a80000; } - .p-cascadeselect-panel { background: #ffffff; color: #333333; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f4f4f4; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #a80000; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #848484; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #005b9f; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a80000; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005b9f; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #ffffff; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a80000; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #212121; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #a80000; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -924,26 +888,22 @@ color: #848484; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #ffffff; border: 1px solid #a6a6a6; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #a80000; } - .p-dropdown-panel { background: #ffffff; color: #333333; @@ -1051,7 +1010,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-dropdown { background: #f4f4f4; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #a80000; } - .p-inputgroup-addon { background: #eaeaea; color: #848484; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #a6a6a6; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #a80000; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1150,11 +1098,9 @@ color: #848484; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #a80000; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1162,14 +1108,12 @@ color: #848484; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #116fbf; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #a80000; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #666666; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #a80000; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #848484; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #848484; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #666666; } - :-moz-placeholder { color: #666666; } - ::-moz-placeholder { color: #666666; } - :-ms-input-placeholder { color: #666666; } - .p-input-filled .p-inputtext { background-color: #f4f4f4; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #f4f4f4; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #ffffff; color: #333333; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #a80000; } - .p-multiselect { background: #ffffff; border: 1px solid #a6a6a6; @@ -1434,11 +1359,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1446,7 +1369,6 @@ color: #848484; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #333333; @@ -1535,7 +1457,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-multiselect { background: #f4f4f4; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #a80000; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #a80000; } - .p-password-panel { padding: 0.571rem 1rem; background: #ffffff; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #34a835; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1583,7 +1500,6 @@ color: #848484; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1591,7 +1507,6 @@ color: #848484; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #005b9f; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #a80000; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f4f4f4; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #005b9f; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #ffffff; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #ffffff; } - .p-selectbutton .p-button { background: #dadada; border: 1px solid #dadada; @@ -1697,7 +1605,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #666666; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #333333; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #212121; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #a80000; } - .p-slider { background: #c8c8c8; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #dadada; border: 1px solid #dadada; @@ -1791,7 +1696,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #666666; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #333333; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #212121; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #a80000; } - .p-treeselect { background: #ffffff; border: 1px solid #a6a6a6; @@ -1862,15 +1765,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #a80000; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #ffffff; color: #333333; @@ -1930,7 +1830,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-treeselect { background: #f4f4f4; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1948,7 +1846,6 @@ color: #848484; right: 2.357rem; } - .p-button { color: #ffffff; background: #007ad9; @@ -2060,7 +1957,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #546e7a; color: #ffffff; border-color: #546e7a; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #b0bec5; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #455a64; color: #ffffff; border-color: #455a64; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #007ad9; border: 1px solid #007ad9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #116fbf; color: #ffffff; border-color: #116fbf; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #8dcdff; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #005b9f; color: #ffffff; border-color: #005b9f; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(0, 122, 217, 0.04); color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(0, 122, 217, 0.16); color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #007ad9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(0, 122, 217, 0.04); border-color: transparent; color: #007ad9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(0, 122, 217, 0.16); border-color: transparent; color: #007ad9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #34a835; border: 1px solid #34a835; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #107d11; color: #ffffff; border-color: #107d11; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #aae5aa; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #0c6b0d; color: #ffffff; border-color: #0c6b0d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(52, 168, 53, 0.04); color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(52, 168, 53, 0.16); color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #34a835; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(52, 168, 53, 0.04); border-color: transparent; color: #34a835; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(52, 168, 53, 0.16); border-color: transparent; color: #34a835; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #333333; background: #ffba01; border: 1px solid #ffba01; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ed990b; color: #333333; border-color: #ed990b; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffeab4; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #d38b10; color: #333333; border-color: #d38b10; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 186, 1, 0.04); color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 186, 1, 0.16); color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffba01; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 186, 1, 0.04); border-color: transparent; color: #ffba01; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 186, 1, 0.16); border-color: transparent; color: #ffba01; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8e24aa; color: #ffffff; border-color: #8e24aa; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7b1fa2; color: #ffffff; border-color: #7b1fa2; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #e91224; border: 1px solid #e91224; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c01120; color: #ffffff; border-color: #c01120; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f9b4ba; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #a90000; color: #ffffff; border-color: #a90000; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(233, 18, 36, 0.04); color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(233, 18, 36, 0.16); color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e91224; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(233, 18, 36, 0.04); border-color: transparent; color: #e91224; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(233, 18, 36, 0.16); border-color: transparent; color: #e91224; } - .p-button.p-button-link { color: #005b9f; background: transparent; @@ -2538,7 +2427,6 @@ color: #005b9f; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #222c31; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #007ad9; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #007ad9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #34a835; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #34a835; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffba01; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffba01; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e91224; @@ -2868,9 +2740,8 @@ border-color: transparent; color: #e91224; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -2913,7 +2784,6 @@ background: #007ad9; color: #ffffff; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3007,9 +2877,9 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #a6a6a6; @@ -3019,17 +2889,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -3059,12 +2929,12 @@ background: #007ad9; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #333333; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f4f4f4; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3206,12 +3075,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3239,7 +3106,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-column-filter-overlay { background: #ffffff; color: #333333; @@ -3297,7 +3162,6 @@ border-top: 1px solid #d8dae2; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #eaeaea; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #eaeaea; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3421,7 +3283,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #eaeaea; color: #333333; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-paginator { background: #f4f4f4; color: #333333; @@ -3470,9 +3330,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #848484; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #333333; @@ -3542,7 +3402,6 @@ border-color: transparent; color: #333333; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #eaeaea; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3637,7 +3495,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #c8c8c8; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #c8c8c8; background: #ffffff; @@ -3719,11 +3575,11 @@ color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3936,7 +3791,7 @@ background: #007ad9; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #333333; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #333333; color: #ffffff; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #333333; @@ -4071,7 +3924,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #ffffff; color: #333333; @@ -4097,7 +3949,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4121,7 +3972,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #c8c8c8; background: #ffffff; @@ -4162,7 +4012,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #333333; padding: 0.857rem 1rem; @@ -4229,7 +4078,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f8f8; border: 0 none; @@ -4240,7 +4088,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-splitter { border: 1px solid #c8c8c8; background: #ffffff; @@ -4262,7 +4109,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #d8dae2; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4331,7 +4177,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #333333; border: 1px solid #333333; @@ -4342,7 +4187,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #333333; @@ -4390,7 +4234,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4463,7 +4306,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #333333; @@ -4505,7 +4347,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #c8c8c8; } - .p-sidebar { background: #ffffff; color: #333333; @@ -4516,7 +4357,7 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #a6a6a6; @@ -4526,13 +4367,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -4546,7 +4387,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #333333; color: #ffffff; @@ -4566,7 +4406,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #333333; } - .p-fileupload .p-fileupload-buttonbar { background: #333333; padding: 0.857rem 1rem; @@ -4606,7 +4445,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #116fbf; color: #ffffff; @@ -4617,7 +4455,6 @@ color: #ffffff; border-color: #005b9f; } - .p-breadcrumb { background: #ffffff; border: 1px solid #c8c8c8; @@ -4649,7 +4486,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #333333; } - .p-contextmenu { padding: 0; background: #ffffff; @@ -4697,7 +4533,7 @@ color: #333333; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4711,7 +4547,7 @@ color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4722,7 +4558,7 @@ color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem-separator { @@ -4736,7 +4572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4760,32 +4595,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4844,7 +4678,7 @@ color: #333333; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4858,7 +4692,7 @@ color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4869,7 +4703,7 @@ color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-megamenu-panel { @@ -4927,10 +4761,9 @@ color: #333333; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } - .p-menu { padding: 0; background: #ffffff; @@ -4967,7 +4800,7 @@ color: #333333; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4981,7 +4814,7 @@ color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4992,7 +4825,7 @@ color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu.p-menu-overlay { @@ -5026,7 +4859,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #ffffff; @@ -5065,7 +4897,7 @@ color: #333333; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5096,7 +4928,7 @@ color: #333333; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5110,7 +4942,7 @@ color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5121,7 +4953,7 @@ color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-submenu-list { @@ -5138,7 +4970,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5313,7 +5144,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5327,7 +5158,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5338,7 +5169,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5354,7 +5185,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #ffffff; @@ -5397,7 +5227,7 @@ color: #333333; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5411,7 +5241,7 @@ color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5422,7 +5252,7 @@ color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu.p-slidemenu-overlay { @@ -5469,7 +5299,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, box-shadow 0.2s; @@ -5514,7 +5343,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5585,7 +5413,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #8dcdff; } - .p-tieredmenu { padding: 0; background: #ffffff; @@ -5636,7 +5463,7 @@ color: #333333; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5650,7 +5477,7 @@ color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5661,7 +5488,7 @@ color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem-separator { @@ -5675,7 +5502,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5731,7 +5557,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5820,7 +5645,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5871,7 +5695,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5881,7 +5705,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5891,7 +5715,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5901,10 +5725,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5935,7 +5758,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5992,7 +5815,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -6002,7 +5825,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -6011,29 +5834,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6057,7 +5874,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #c8c8c8; border-radius: 3px; @@ -6078,11 +5894,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #007ad9; color: #ffffff; @@ -6124,7 +5938,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #c8c8c8; color: #333333; @@ -6160,7 +5973,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6175,7 +5987,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-progressbar { border: 0 none; height: 24px; @@ -6191,7 +6002,6 @@ color: #ffffff; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6213,7 +6023,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #eaeaea; border-radius: 3px; @@ -6221,7 +6030,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #007ad9; color: #ffffff; @@ -6254,7 +6062,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #333333; @@ -6274,7 +6081,6 @@ .p-panel .p-panel-header .p-panel-header-icon:enabled:hover { color: #b4b4b4; } - .p-dialog .p-dialog-header .p-dialog-header-icon { color: #ffffff; } diff --git a/src/assets/components/themes/nova/theme.css b/src/assets/components/themes/nova/theme.css index 9ea0568c619..f6cfec9f38b 100644 --- a/src/assets/components/themes/nova/theme.css +++ b/src/assets/components/themes/nova/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #a80000; } - .p-text-secondary { color: #848484; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #a80000; } - .p-autocomplete-panel { background: #ffffff; color: #333333; @@ -440,11 +427,9 @@ color: #333333; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #a80000; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #848484; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #848484; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #a80000; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } - .p-datepicker { padding: 0.857rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #333333; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #007ad9; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #848484; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #848484; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0.25rem; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #a80000; } - .p-cascadeselect-panel { background: #ffffff; color: #333333; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f4f4f4; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #a80000; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #848484; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #005b9f; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a80000; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } @@ -861,19 +831,15 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005b9f; } - .p-checkbox-label { margin-left: 0.5rem; } - .p-highlight .p-checkbox .p-checkbox-box { border-color: #ffffff; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #a80000; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #212121; } @@ -912,11 +878,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #a80000; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -924,26 +888,22 @@ color: #848484; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #ffffff; border: 1px solid #a6a6a6; @@ -987,7 +947,6 @@ .p-dropdown.p-invalid.p-component { border-color: #a80000; } - .p-dropdown-panel { background: #ffffff; color: #333333; @@ -1051,7 +1010,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-dropdown { background: #f4f4f4; } @@ -1064,11 +1022,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #a80000; } - .p-inputgroup-addon { background: #eaeaea; color: #848484; @@ -1081,68 +1037,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #a6a6a6; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #a80000; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1150,11 +1098,9 @@ color: #848484; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #a80000; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1162,14 +1108,12 @@ color: #848484; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1208,11 +1152,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #116fbf; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #a80000; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1245,57 +1187,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #666666; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #a80000; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #848484; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #848484; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #666666; } - :-moz-placeholder { color: #666666; } - ::-moz-placeholder { color: #666666; } - :-ms-input-placeholder { color: #666666; } - .p-input-filled .p-inputtext { background-color: #f4f4f4; } @@ -1305,17 +1235,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #f4f4f4; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #ffffff; color: #333333; @@ -1390,11 +1317,9 @@ box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #a80000; } - .p-multiselect { background: #ffffff; border: 1px solid #a6a6a6; @@ -1434,11 +1359,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1446,7 +1369,6 @@ color: #848484; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #333333; @@ -1535,7 +1457,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-multiselect { background: #f4f4f4; } @@ -1545,15 +1466,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #a80000; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #a80000; } - .p-password-panel { padding: 0.571rem 1rem; background: #ffffff; @@ -1575,7 +1493,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #34a835; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1583,7 +1500,6 @@ color: #848484; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1591,7 +1507,6 @@ color: #848484; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1629,11 +1544,9 @@ background: #005b9f; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #a80000; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f4f4f4; } @@ -1646,15 +1559,12 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #005b9f; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-highlight .p-radiobutton .p-radiobutton-box { border-color: #ffffff; } - .p-rating { gap: 0.5rem; } @@ -1685,11 +1595,9 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #b5019f; } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { color: #ffffff; } - .p-selectbutton .p-button { background: #dadada; border: 1px solid #dadada; @@ -1697,7 +1605,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #666666; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1706,7 +1614,7 @@ color: #333333; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #212121; } .p-selectbutton .p-button.p-highlight { @@ -1715,7 +1623,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1724,14 +1632,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #a80000; } - .p-slider { background: #c8c8c8; border: 0 none; @@ -1783,7 +1689,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #dadada; border: 1px solid #dadada; @@ -1791,7 +1696,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #666666; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1800,7 +1705,7 @@ color: #333333; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #212121; } .p-togglebutton.p-button.p-highlight { @@ -1809,7 +1714,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1818,14 +1723,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #a80000; } - .p-treeselect { background: #ffffff; border: 1px solid #a6a6a6; @@ -1862,15 +1765,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #a80000; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #ffffff; color: #333333; @@ -1930,7 +1830,6 @@ color: #333333; background: transparent; } - .p-input-filled .p-treeselect { background: #f4f4f4; } @@ -1940,7 +1839,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1948,7 +1846,6 @@ color: #848484; right: 2.357rem; } - .p-button { color: #ffffff; background: #007ad9; @@ -2060,7 +1957,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2087,434 +1984,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #546e7a; color: #ffffff; border-color: #546e7a; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #b0bec5; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #455a64; color: #ffffff; border-color: #455a64; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #007ad9; border: 1px solid #007ad9; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #116fbf; color: #ffffff; border-color: #116fbf; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #8dcdff; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #005b9f; color: #ffffff; border-color: #005b9f; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(0, 122, 217, 0.04); color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(0, 122, 217, 0.16); color: #007ad9; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #007ad9; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(0, 122, 217, 0.04); border-color: transparent; color: #007ad9; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(0, 122, 217, 0.16); border-color: transparent; color: #007ad9; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #34a835; border: 1px solid #34a835; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #107d11; color: #ffffff; border-color: #107d11; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #aae5aa; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #0c6b0d; color: #ffffff; border-color: #0c6b0d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(52, 168, 53, 0.04); color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(52, 168, 53, 0.16); color: #34a835; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #34a835; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(52, 168, 53, 0.04); border-color: transparent; color: #34a835; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(52, 168, 53, 0.16); border-color: transparent; color: #34a835; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #333333; background: #ffba01; border: 1px solid #ffba01; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ed990b; color: #333333; border-color: #ed990b; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffeab4; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #d38b10; color: #333333; border-color: #d38b10; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 186, 1, 0.04); color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 186, 1, 0.16); color: #ffba01; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffba01; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 186, 1, 0.04); border-color: transparent; color: #ffba01; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 186, 1, 0.16); border-color: transparent; color: #ffba01; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8e24aa; color: #ffffff; border-color: #8e24aa; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ce93d8; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7b1fa2; color: #ffffff; border-color: #7b1fa2; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #e91224; border: 1px solid #e91224; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c01120; color: #ffffff; border-color: #c01120; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f9b4ba; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #a90000; color: #ffffff; border-color: #a90000; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(233, 18, 36, 0.04); color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(233, 18, 36, 0.16); color: #e91224; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e91224; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(233, 18, 36, 0.04); border-color: transparent; color: #e91224; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(233, 18, 36, 0.16); border-color: transparent; color: #e91224; } - .p-button.p-button-link { color: #005b9f; background: transparent; @@ -2538,7 +2427,6 @@ color: #005b9f; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2550,17 +2438,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2571,52 +2456,45 @@ background: #222c31; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2694,7 +2572,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2723,7 +2600,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #007ad9; @@ -2752,7 +2628,6 @@ border-color: transparent; color: #007ad9; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #34a835; @@ -2781,7 +2656,6 @@ border-color: transparent; color: #34a835; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffba01; @@ -2810,7 +2684,6 @@ border-color: transparent; color: #ffba01; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2839,7 +2712,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e91224; @@ -2868,9 +2740,8 @@ border-color: transparent; color: #e91224; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -2881,13 +2752,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -2913,7 +2784,6 @@ background: #007ad9; color: #ffffff; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3007,9 +2877,9 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #a6a6a6; @@ -3019,17 +2889,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -3059,12 +2929,12 @@ background: #007ad9; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f4f4f4; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f4f4f4; } .p-datatable .p-datatable-loading-icon { @@ -3167,7 +3037,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3206,12 +3075,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3239,7 +3106,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3259,7 +3125,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-column-filter-overlay { background: #ffffff; color: #333333; @@ -3297,7 +3162,6 @@ border-top: 1px solid #d8dae2; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #eaeaea; @@ -3326,7 +3190,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3412,7 +3275,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #eaeaea; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3421,7 +3283,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #eaeaea; color: #333333; @@ -3460,7 +3321,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-paginator { background: #f4f4f4; color: #333333; @@ -3470,9 +3330,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #848484; @@ -3483,9 +3343,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e0e0e0; border-color: transparent; color: #333333; @@ -3542,7 +3402,6 @@ border-color: transparent; color: #333333; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3628,7 +3487,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #eaeaea; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); @@ -3637,7 +3495,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3649,20 +3506,19 @@ background-color: #c8c8c8; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #c8c8c8; background: #ffffff; @@ -3719,11 +3575,11 @@ color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #ffffff; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3796,7 +3652,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3936,7 +3791,7 @@ background: #007ad9; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f4f4f4; } .p-treetable .p-treetable-loading-icon { @@ -3997,7 +3852,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f4f4f4; color: #333333; @@ -4022,7 +3876,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #c8c8c8; @@ -4071,7 +3924,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #ffffff; color: #333333; @@ -4097,7 +3949,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4121,7 +3972,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #c8c8c8; background: #ffffff; @@ -4162,7 +4012,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #c8c8c8; padding: 0.857rem 1rem; @@ -4229,7 +4078,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f8f8; border: 0 none; @@ -4240,7 +4088,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-splitter { border: 1px solid #c8c8c8; background: #ffffff; @@ -4262,7 +4109,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #d8dae2; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4331,7 +4177,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #f4f4f4; border: 1px solid #c8c8c8; @@ -4342,7 +4187,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #333333; @@ -4390,7 +4234,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4463,7 +4306,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #333333; @@ -4505,7 +4347,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #c8c8c8; } - .p-sidebar { background: #ffffff; color: #333333; @@ -4516,7 +4357,7 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #a6a6a6; @@ -4526,13 +4367,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #007ad9; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; @@ -4546,7 +4387,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #333333; color: #ffffff; @@ -4566,7 +4406,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #333333; } - .p-fileupload .p-fileupload-buttonbar { background: #f4f4f4; padding: 0.857rem 1rem; @@ -4606,7 +4445,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #116fbf; color: #ffffff; @@ -4617,7 +4455,6 @@ color: #ffffff; border-color: #005b9f; } - .p-breadcrumb { background: #ffffff; border: 1px solid #c8c8c8; @@ -4649,7 +4486,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #333333; } - .p-contextmenu { padding: 0; background: #ffffff; @@ -4697,7 +4533,7 @@ color: #333333; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4711,7 +4547,7 @@ color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4722,7 +4558,7 @@ color: #333333; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-contextmenu .p-menuitem-separator { @@ -4736,7 +4572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4760,32 +4595,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4844,7 +4678,7 @@ color: #333333; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4858,7 +4692,7 @@ color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4869,7 +4703,7 @@ color: #333333; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-megamenu .p-megamenu-panel { @@ -4927,10 +4761,9 @@ color: #333333; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } - .p-menu { padding: 0; background: #ffffff; @@ -4967,7 +4800,7 @@ color: #333333; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4981,7 +4814,7 @@ color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4992,7 +4825,7 @@ color: #333333; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menu.p-menu-overlay { @@ -5026,7 +4859,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #ffffff; @@ -5065,7 +4897,7 @@ color: #333333; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5096,7 +4928,7 @@ color: #333333; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5110,7 +4942,7 @@ color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5121,7 +4953,7 @@ color: #333333; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-menubar .p-submenu-list { @@ -5138,7 +4970,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5313,7 +5144,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5327,7 +5158,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5338,7 +5169,7 @@ color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5354,7 +5185,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #ffffff; @@ -5397,7 +5227,7 @@ color: #333333; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5411,7 +5241,7 @@ color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5422,7 +5252,7 @@ color: #333333; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-slidemenu.p-slidemenu-overlay { @@ -5469,7 +5299,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, box-shadow 0.2s; @@ -5514,7 +5343,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5585,7 +5413,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #8dcdff; } - .p-tieredmenu { padding: 0; background: #ffffff; @@ -5636,7 +5463,7 @@ color: #333333; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5650,7 +5477,7 @@ color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5661,7 +5488,7 @@ color: #333333; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #333333; } .p-tieredmenu .p-menuitem-separator { @@ -5675,7 +5502,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5731,7 +5557,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5820,7 +5645,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5871,7 +5695,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5881,7 +5705,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5891,7 +5715,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5901,10 +5725,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5935,7 +5758,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5992,7 +5815,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -6002,7 +5825,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -6011,29 +5834,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6057,7 +5874,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #c8c8c8; border-radius: 3px; @@ -6078,11 +5894,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #007ad9; color: #ffffff; @@ -6124,7 +5938,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #c8c8c8; color: #333333; @@ -6160,7 +5973,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 3px; @@ -6175,7 +5987,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; } - .p-progressbar { border: 0 none; height: 24px; @@ -6191,7 +6002,6 @@ color: #ffffff; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6213,7 +6023,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #eaeaea; border-radius: 3px; @@ -6221,7 +6030,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #007ad9; color: #ffffff; @@ -6254,7 +6062,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #333333; @@ -6274,7 +6081,6 @@ .p-panel .p-panel-header .p-panel-header-icon:enabled:hover { color: #333333; } - .p-dialog .p-dialog-header .p-dialog-header-icon { color: #848484; } diff --git a/src/assets/components/themes/rhea/theme.css b/src/assets/components/themes/rhea/theme.css index c7e7d738112..10db8c1efdd 100644 --- a/src/assets/components/themes/rhea/theme.css +++ b/src/assets/components/themes/rhea/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.5; } - .p-error { color: #e7a3a3; } - .p-text-secondary { color: #a6a6a6; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.429rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #e7a3a3; } - .p-autocomplete-panel { background: #ffffff; color: #666666; @@ -440,11 +427,9 @@ color: #666666; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #e7a3a3; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 1.858rem; } @@ -452,23 +437,19 @@ color: #a6a6a6; right: 0.429rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #a6a6a6; right: 2.786rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #e7a3a3; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; border-color: #7b95a3; } - .p-datepicker { padding: 0.857rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 2px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #666666; border-color: transparent; background: transparent; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #666666; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #7b95a3; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 1.858rem; } @@ -684,12 +664,10 @@ color: #a6a6a6; right: 0.429rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #a6a6a6; right: 2.786rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0.25rem; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #e7a3a3; } - .p-cascadeselect-panel { background: #ffffff; color: #666666; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f4f4f4; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #e7a3a3; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.429rem; } @@ -794,7 +768,6 @@ color: #a6a6a6; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #617c8a; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e7a3a3; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #617c8a; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #e7a3a3; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #a6a6a6; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #e7a3a3; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.429rem; } @@ -920,26 +885,22 @@ color: #a6a6a6; right: 0.429rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); } - .p-dropdown { background: #ffffff; border: 1px solid #dadada; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #e7a3a3; } - .p-dropdown-panel { background: #ffffff; color: #666666; @@ -1047,7 +1007,6 @@ color: #666666; background: transparent; } - .p-input-filled .p-dropdown { background: #f4f4f4; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #e7a3a3; } - .p-inputgroup-addon { background: #dbdbdb; color: #666666; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #dadada; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #e7a3a3; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 1.858rem; } @@ -1146,11 +1095,9 @@ color: #a6a6a6; right: 0.429rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #e7a3a3; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 1.858rem; } @@ -1158,14 +1105,12 @@ color: #a6a6a6; right: 0.429rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.786rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.786rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #afd3c8; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #e7a3a3; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-float-label > label { left: 0.429rem; color: #a6a6a6; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #e7a3a3; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.429rem; color: #a6a6a6; } - .p-input-icon-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.429rem; color: #a6a6a6; } - .p-input-icon-right > .p-inputtext { padding-right: 1.858rem; } - ::-webkit-input-placeholder { color: #a6a6a6; } - :-moz-placeholder { color: #a6a6a6; } - ::-moz-placeholder { color: #a6a6a6; } - :-ms-input-placeholder { color: #a6a6a6; } - .p-input-filled .p-inputtext { background-color: #f4f4f4; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #f4f4f4; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.375375rem 0.375375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.53625rem 0.53625rem; } - .p-listbox { background: #ffffff; color: #666666; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #e4e9ec; border-color: #7b95a3; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #e7a3a3; } - .p-multiselect { background: #ffffff; border: 1px solid #dadada; @@ -1430,11 +1356,9 @@ border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.2145rem 0.429rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.429rem; } @@ -1442,7 +1366,6 @@ color: #a6a6a6; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #666666; @@ -1531,7 +1454,6 @@ color: #666666; background: transparent; } - .p-input-filled .p-multiselect { background: #f4f4f4; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #e7a3a3; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #e7a3a3; } - .p-password-panel { padding: 0.571rem 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #a3e2c6; } - p-password.p-password-clearable .p-password-input { padding-right: 1.858rem; } @@ -1579,7 +1497,6 @@ color: #a6a6a6; right: 0.429rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.287rem; } @@ -1587,7 +1504,6 @@ color: #a6a6a6; right: 1.858rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #617c8a; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #e7a3a3; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f4f4f4; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #617c8a; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #d66161; } - .p-selectbutton .p-button { background: #eaeaea; border: 1px solid #eaeaea; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #666666; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #333333; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #666666; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #385048; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #385048; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #385048; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #385048; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #e7a3a3; } - .p-slider { background: #c4c4c4; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #eaeaea; border: 1px solid #eaeaea; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #666666; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #333333; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #666666; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #385048; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #385048; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #385048; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #385048; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #e7a3a3; } - .p-treeselect { background: #ffffff; border: 1px solid #dadada; @@ -1850,15 +1756,12 @@ border-top-right-radius: 2px; border-bottom-right-radius: 2px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #e7a3a3; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.2145rem 0.429rem; } - .p-treeselect-panel { background: #ffffff; color: #666666; @@ -1918,7 +1821,6 @@ color: #666666; background: transparent; } - .p-input-filled .p-treeselect { background: #f4f4f4; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #f4f4f4; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.429rem; } @@ -1936,7 +1837,6 @@ color: #a6a6a6; right: 2.357rem; } - .p-button { color: #ffffff; background: #7b95a3; @@ -2048,7 +1948,7 @@ padding: 0.429rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #a3897b; border: 1px solid #8e6f5f; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #8e6f5f; color: #ffffff; border-color: #7a5743; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bfaaa0; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #7a5743; color: #ffffff; border-color: #6e4e3c; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #a3897b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(163, 137, 123, 0.04); color: #a3897b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(163, 137, 123, 0.16); color: #a3897b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #a3897b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(163, 137, 123, 0.04); border-color: transparent; color: #a3897b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(163, 137, 123, 0.16); border-color: transparent; color: #a3897b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #3d4447; background: #a3def8; border: 1px solid #79c8eb; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #81cbec; color: #3d4447; border-color: #60b7de; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #d2effc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #3ea9db; color: #3d4447; border-color: #2987b1; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #a3def8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(163, 222, 248, 0.04); color: #a3def8; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(163, 222, 248, 0.16); color: #a3def8; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #a3def8; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(163, 222, 248, 0.04); border-color: transparent; color: #a3def8; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(163, 222, 248, 0.16); border-color: transparent; color: #a3def8; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #323e39; background: #a3e2c6; border: 1px solid #80caaa; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #80caaa; color: #323e39; border-color: #5ea285; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #caeede; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #31b57c; color: #323e39; border-color: #5ea285; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #a3e2c6; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(163, 226, 198, 0.04); color: #a3e2c6; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(163, 226, 198, 0.16); color: #a3e2c6; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #a3e2c6; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(163, 226, 198, 0.04); border-color: transparent; color: #a3e2c6; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(163, 226, 198, 0.16); border-color: transparent; color: #a3e2c6; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #333333; background: #ffe38e; border: 1px solid #ffd95e; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd95e; color: #333333; border-color: #ffce3c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffce3c; color: #333333; border-color: #ffc62a; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe38e; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 227, 142, 0.04); color: #ffe38e; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 227, 142, 0.16); color: #ffe38e; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe38e; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 227, 142, 0.04); border-color: transparent; color: #ffe38e; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 227, 142, 0.16); border-color: transparent; color: #ffe38e; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #333333; background: #e9bef1; border: 1px solid #de9eea; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #de9eea; color: #333333; border-color: #d37de3; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f0d3f6; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #d37de3; color: #333333; border-color: #c85ddc; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #e9bef1; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(233, 190, 241, 0.04); color: #e9bef1; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(233, 190, 241, 0.16); color: #e9bef1; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #e9bef1; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(233, 190, 241, 0.04); border-color: transparent; color: #e9bef1; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(233, 190, 241, 0.16); border-color: transparent; color: #e9bef1; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #262222; background: #f4b6b6; border: 1px solid #e38787; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #ef9999; color: #262222; border-color: #cb5858; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fbe2e2; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #eb5656; color: #262222; border-color: #b73737; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f4b6b6; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 182, 182, 0.04); color: #f4b6b6; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 182, 182, 0.16); color: #f4b6b6; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f4b6b6; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 182, 182, 0.04); border-color: transparent; color: #f4b6b6; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 182, 182, 0.16); border-color: transparent; color: #f4b6b6; } - .p-button.p-button-link { color: #617c8a; background: transparent; @@ -2526,7 +2418,6 @@ color: #617c8a; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #222c31; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 2px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #a3897b; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #a3897b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #a3def8; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #a3def8; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #a3e2c6; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #a3e2c6; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe38e; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe38e; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #e9bef1; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #e9bef1; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f4b6b6; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f4b6b6; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #a6a6a6; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #666666; border-color: transparent; background: transparent; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; @@ -2901,7 +2775,6 @@ background: #afd3c8; color: #385048; } - .p-datatable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 0.571rem 0.857rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #a6a6a6; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #666666; border-color: transparent; background: transparent; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; @@ -3047,12 +2920,12 @@ background: #7b95a3; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #7b95a3; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.71375rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 0.571rem 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-column-filter-overlay { background: #ffffff; color: #666666; @@ -3285,7 +3153,6 @@ border-top: 1px solid #dadada; margin: 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.429rem 0.857rem; border-bottom: 1px solid #dadada; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 0.571rem 1rem; } - .p-orderlist .p-orderlist-controls { padding: 0.571rem 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f4f4f4; } - .p-orderlist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f4f4f4; color: #666666; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-paginator { background: #ffffff; color: #666666; @@ -3458,9 +3321,9 @@ border-radius: 2px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #666666; @@ -3471,9 +3334,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f4f4f4; border-color: transparent; color: #666666; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #666666; } - .p-picklist .p-picklist-buttons { padding: 0.571rem 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f4f4f4; } - .p-picklist-item.cdk-drag-preview { padding: 0.429rem 0.857rem; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 0 none; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #c8c8c8; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dadada; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #385048; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #385048; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #385048; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-treetable .p-paginator-top { border-width: 1px 1px 0 1px; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #7b95a3; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #7b95a3; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.71375rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #7b95a3; color: #ffffff; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 0.857rem 1rem; border: 1px solid #7b95a3; @@ -4059,7 +3915,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 2px; } - .p-card { background: #ffffff; color: #666666; @@ -4085,7 +3940,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4109,7 +3963,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dadada; background: #ffffff; @@ -4150,7 +4003,6 @@ .p-fieldset .p-fieldset-content { padding: 0.571rem 1rem; } - .p-panel .p-panel-header { border: 1px solid #7b95a3; padding: 0.857rem 1rem; @@ -4217,7 +4069,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f8f8; border: 0 none; @@ -4228,7 +4079,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-splitter { border: 1px solid #dadada; background: #ffffff; @@ -4250,7 +4100,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dadada; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4319,7 +4168,6 @@ border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } - .p-toolbar { background: #7b95a3; border: 1px solid #7b95a3; @@ -4330,7 +4178,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #666666; @@ -4378,7 +4225,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 2px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); @@ -4451,7 +4297,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #666666; @@ -4493,7 +4338,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #f1f1f1; } - .p-sidebar { background: #ffffff; color: #666666; @@ -4504,7 +4348,7 @@ padding: 0.857rem 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #a6a6a6; @@ -4514,13 +4358,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #666666; border-color: transparent; background: transparent; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; @@ -4534,7 +4378,6 @@ .p-sidebar .p-sidebar-footer { padding: 0.857rem 1rem; } - .p-tooltip .p-tooltip-text { background: #afd3c8; color: #385048; @@ -4554,7 +4397,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #afd3c8; } - .p-fileupload .p-fileupload-buttonbar { background: #7b95a3; padding: 0.857rem 1rem; @@ -4594,7 +4436,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #6c8999; color: #ffffff; @@ -4605,7 +4446,6 @@ color: #ffffff; border-color: #617c8a; } - .p-breadcrumb { background: #ffffff; border: 1px solid #c8c8c8; @@ -4637,7 +4477,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #666666; } - .p-contextmenu { padding: 0; background: #ffffff; @@ -4685,7 +4524,7 @@ color: #666666; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4699,7 +4538,7 @@ color: #666666; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4710,7 +4549,7 @@ color: #666666; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-contextmenu .p-menuitem-separator { @@ -4724,7 +4563,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4748,32 +4586,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4832,7 +4669,7 @@ color: #666666; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4846,7 +4683,7 @@ color: #666666; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4857,7 +4694,7 @@ color: #666666; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-megamenu .p-megamenu-panel { @@ -4915,10 +4752,9 @@ color: #666666; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } - .p-menu { padding: 0; background: #ffffff; @@ -4955,7 +4791,7 @@ color: #666666; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4969,7 +4805,7 @@ color: #666666; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4980,7 +4816,7 @@ color: #666666; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menu.p-menu-overlay { @@ -5014,7 +4850,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #ffffff; @@ -5053,7 +4888,7 @@ color: #666666; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5084,7 +4919,7 @@ color: #666666; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5098,7 +4933,7 @@ color: #666666; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5109,7 +4944,7 @@ color: #666666; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-menubar .p-submenu-list { @@ -5126,7 +4961,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5301,7 +5135,7 @@ color: #666666; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5315,7 +5149,7 @@ color: #666666; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5326,7 +5160,7 @@ color: #666666; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5342,7 +5176,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 2px; } - .p-slidemenu { padding: 0; background: #ffffff; @@ -5385,7 +5218,7 @@ color: #666666; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5399,7 +5232,7 @@ color: #666666; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5410,7 +5243,7 @@ color: #666666; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-slidemenu.p-slidemenu-overlay { @@ -5457,7 +5290,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; @@ -5502,7 +5334,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 0 none; @@ -5573,7 +5404,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #e4e9ec; } - .p-tieredmenu { padding: 0; background: #ffffff; @@ -5624,7 +5454,7 @@ color: #666666; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5638,7 +5468,7 @@ color: #666666; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #666666; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5649,7 +5479,7 @@ color: #666666; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #666666; } .p-tieredmenu .p-menuitem-separator { @@ -5663,7 +5493,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem; margin: 0; @@ -5719,7 +5548,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 2px; @@ -5808,7 +5636,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5859,7 +5686,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-success { @@ -5869,7 +5696,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5879,7 +5706,7 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #212121; } .p-toast .p-toast-message.p-toast-message-error { @@ -5889,10 +5716,9 @@ color: #212121; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #212121; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5923,7 +5749,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -5980,7 +5806,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #aeb6bf; @@ -5990,7 +5816,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #aeb6bf; } @@ -5999,29 +5825,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6045,7 +5865,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dadada; border-radius: 2px; @@ -6066,11 +5885,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #7b95a3; color: #ffffff; @@ -6112,7 +5929,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dadada; color: #666666; @@ -6148,7 +5964,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.429rem 0.429rem; border-radius: 2px; @@ -6163,7 +5978,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; } - .p-progressbar { border: 0 none; height: 24px; @@ -6179,7 +5993,6 @@ color: #ffffff; line-height: 24px; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6201,7 +6014,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #dadada; border-radius: 2px; @@ -6209,7 +6021,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #7b95a3; color: #ffffff; @@ -6242,7 +6053,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #666666; @@ -6262,7 +6072,6 @@ .p-panel .p-panel-header .p-panel-header-icon:enabled:hover { color: #ffffff; } - .p-dialog .p-dialog-header .p-dialog-header-icon { color: #ffffff; } diff --git a/src/assets/components/themes/saga-blue/theme.css b/src/assets/components/themes/saga-blue/theme.css index 2778c14c019..89d1ad5b798 100644 --- a/src/assets/components/themes/saga-blue/theme.css +++ b/src/assets/components/themes/saga-blue/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #f44336; } - .p-text-secondary { color: #6c757d; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44336; } - .p-autocomplete-panel { background: #ffffff; color: #495057; @@ -440,11 +427,9 @@ color: #495057; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44336; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: #6c757d; right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6c757d; right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44336; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; border-color: #2196F3; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6c757d; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #495057; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #2196F3; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: #6c757d; right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6c757d; right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44336; } - .p-cascadeselect-panel { background: #ffffff; color: #495057; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f8f9fa; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44336; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: #6c757d; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #0b7ad1; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #0b7ad1; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #2196F3; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44336; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: #6c757d; right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid #ced4da; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44336; } - .p-dropdown-panel { background: #ffffff; color: #495057; @@ -1047,7 +1007,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-dropdown { background: #f8f9fa; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44336; } - .p-inputgroup-addon { background: #e9ecef; color: #6c757d; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #ced4da; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44336; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44336; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #0d89ec; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44336; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: #6c757d; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44336; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: #6c757d; } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: #6c757d; } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: #6c757d; } - :-moz-placeholder { color: #6c757d; } - ::-moz-placeholder { color: #6c757d; } - :-ms-input-placeholder { color: #6c757d; } - .p-input-filled .p-inputtext { background-color: #f8f9fa; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #ffffff; color: #495057; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #a6d5fa; border-color: #2196F3; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44336; } - .p-multiselect { background: #ffffff; border: 1px solid #ced4da; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: #6c757d; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #495057; @@ -1531,7 +1454,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-multiselect { background: #f8f9fa; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44336; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44336; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: #6c757d; right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: #6c757d; right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #0b7ad1; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44336; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f8f9fa; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #0b7ad1; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #c0392b; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #495057; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44336; } - .p-slider { background: #dee2e6; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #495057; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44336; } - .p-treeselect { background: #ffffff; border: 1px solid #ced4da; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44336; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #ffffff; color: #495057; @@ -1918,7 +1821,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-treeselect { background: #f8f9fa; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: #6c757d; right: 2.357rem; } - .p-button { color: #ffffff; background: #2196F3; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #56717d; color: #ffffff; border-color: #56717d; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #beccd2; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #4d646f; color: #ffffff; border-color: #4d646f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0288d1; border: 1px solid #0288d1; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #027abc; color: #ffffff; border-color: #027abc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #89d4fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #026da7; color: #ffffff; border-color: #026da7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(2, 136, 209, 0.16); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0288d1; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); border-color: transparent; color: #0288d1; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(2, 136, 209, 0.16); border-color: transparent; color: #0288d1; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 1px solid #689f38; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #5e8f32; color: #ffffff; border-color: #5e8f32; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c2e0a8; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #537f2d; color: #ffffff; border-color: #537f2d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 1px solid #fbc02d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fab710; color: #212529; border-color: #fab710; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde6ab; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #e8a704; color: #212529; border-color: #e8a704; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8c239e; color: #ffffff; border-color: #8c239e; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #df9eea; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7d1f8d; color: #ffffff; border-color: #7d1f8d; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 1px solid #d32f2f; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c02929; color: #ffffff; border-color: #c02929; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #edacac; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #aa2424; color: #ffffff; border-color: #aa2424; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #0b7ad1; background: transparent; @@ -2526,7 +2418,6 @@ color: #0b7ad1; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #343a40; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0288d1; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #0288d1; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6c757d; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; @@ -2901,7 +2775,6 @@ background: #E3F2FD; color: #495057; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6c757d; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; @@ -3047,12 +2920,12 @@ background: #2196F3; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f8f9fa; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f8f9fa; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-column-filter-overlay { background: #ffffff; color: #495057; @@ -3285,7 +3153,6 @@ border-top: 1px solid #dee2e6; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #e9ecef; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #e9ecef; color: #495057; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-paginator { background: #ffffff; color: #6c757d; @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6c757d; @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e9ecef; border-color: transparent; color: #495057; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #495057; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #e9ecef; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #2196F3; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #2196F3; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f8f9fa; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f8f9fa; color: #495057; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #dee2e6; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #ffffff; color: #495057; @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f9fa; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #f8f9fa; border: 1px solid #dee2e6; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #495057; @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #495057; @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #495057; @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6c757d; @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #495057; color: #ffffff; @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #495057; } - .p-fileupload .p-fileupload-buttonbar { background: #f8f9fa; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #0d89ec; color: #ffffff; @@ -4629,7 +4470,6 @@ color: #ffffff; border-color: #0b7ad1; } - .p-breadcrumb { background: #ffffff; border: 1px solid #dee2e6; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6c757d; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; @@ -4709,7 +4548,7 @@ color: #495057; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: #495057; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: #495057; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -4979,7 +4815,7 @@ color: #495057; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f8f9fa; @@ -5077,7 +4912,7 @@ color: #495057; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: #495057; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5433,7 +5266,7 @@ color: #495057; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #dee2e6; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #a6d5fa; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5672,7 +5502,7 @@ color: #495057; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #2196F3; color: #ffffff; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #495057; @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e9ecef; border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #2196F3; color: #ffffff; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #495057; @@ -6308,11 +6118,9 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #2196F3; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #2196F3; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #2196F3; } diff --git a/src/assets/components/themes/saga-green/theme.css b/src/assets/components/themes/saga-green/theme.css index 05b613de6f2..8251e322888 100644 --- a/src/assets/components/themes/saga-green/theme.css +++ b/src/assets/components/themes/saga-green/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #f44336; } - .p-text-secondary { color: #6c757d; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44336; } - .p-autocomplete-panel { background: #ffffff; color: #495057; @@ -440,11 +427,9 @@ color: #495057; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44336; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: #6c757d; right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6c757d; right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44336; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; border-color: #4CAF50; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6c757d; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #495057; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #4CAF50; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: #6c757d; right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6c757d; right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44336; } - .p-cascadeselect-panel { background: #ffffff; color: #495057; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f8f9fa; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44336; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: #6c757d; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #3d8c40; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3d8c40; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #4CAF50; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44336; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: #6c757d; right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid #ced4da; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44336; } - .p-dropdown-panel { background: #ffffff; color: #495057; @@ -1047,7 +1007,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-dropdown { background: #f8f9fa; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44336; } - .p-inputgroup-addon { background: #e9ecef; color: #6c757d; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #ced4da; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44336; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44336; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #449e48; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44336; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: #6c757d; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44336; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: #6c757d; } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: #6c757d; } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: #6c757d; } - :-moz-placeholder { color: #6c757d; } - ::-moz-placeholder { color: #6c757d; } - :-ms-input-placeholder { color: #6c757d; } - .p-input-filled .p-inputtext { background-color: #f8f9fa; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #ffffff; color: #495057; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #b7e0b8; border-color: #4CAF50; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44336; } - .p-multiselect { background: #ffffff; border: 1px solid #ced4da; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: #6c757d; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #495057; @@ -1531,7 +1454,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-multiselect { background: #f8f9fa; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44336; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44336; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: #6c757d; right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: #6c757d; right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #3d8c40; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44336; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f8f9fa; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #3d8c40; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #c0392b; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #495057; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44336; } - .p-slider { background: #dee2e6; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #495057; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44336; } - .p-treeselect { background: #ffffff; border: 1px solid #ced4da; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44336; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #ffffff; color: #495057; @@ -1918,7 +1821,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-treeselect { background: #f8f9fa; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: #6c757d; right: 2.357rem; } - .p-button { color: #ffffff; background: #4CAF50; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #56717d; color: #ffffff; border-color: #56717d; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #beccd2; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #4d646f; color: #ffffff; border-color: #4d646f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0288d1; border: 1px solid #0288d1; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #027abc; color: #ffffff; border-color: #027abc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #89d4fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #026da7; color: #ffffff; border-color: #026da7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(2, 136, 209, 0.16); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0288d1; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); border-color: transparent; color: #0288d1; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(2, 136, 209, 0.16); border-color: transparent; color: #0288d1; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 1px solid #689f38; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #5e8f32; color: #ffffff; border-color: #5e8f32; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c2e0a8; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #537f2d; color: #ffffff; border-color: #537f2d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 1px solid #fbc02d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fab710; color: #212529; border-color: #fab710; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde6ab; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #e8a704; color: #212529; border-color: #e8a704; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8c239e; color: #ffffff; border-color: #8c239e; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #df9eea; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7d1f8d; color: #ffffff; border-color: #7d1f8d; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 1px solid #d32f2f; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c02929; color: #ffffff; border-color: #c02929; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #edacac; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #aa2424; color: #ffffff; border-color: #aa2424; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #3d8c40; background: transparent; @@ -2526,7 +2418,6 @@ color: #3d8c40; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #343a40; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0288d1; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #0288d1; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6c757d; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; @@ -2901,7 +2775,6 @@ background: #E8F5E9; color: #495057; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6c757d; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; @@ -3047,12 +2920,12 @@ background: #4CAF50; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f8f9fa; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f8f9fa; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-column-filter-overlay { background: #ffffff; color: #495057; @@ -3285,7 +3153,6 @@ border-top: 1px solid #dee2e6; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #e9ecef; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #e9ecef; color: #495057; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-paginator { background: #ffffff; color: #6c757d; @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6c757d; @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e9ecef; border-color: transparent; color: #495057; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #495057; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #e9ecef; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #4CAF50; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #4CAF50; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f8f9fa; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f8f9fa; color: #495057; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #dee2e6; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #ffffff; color: #495057; @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f9fa; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #f8f9fa; border: 1px solid #dee2e6; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #495057; @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #495057; @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #495057; @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6c757d; @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #495057; color: #ffffff; @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #495057; } - .p-fileupload .p-fileupload-buttonbar { background: #f8f9fa; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #449e48; color: #ffffff; @@ -4629,7 +4470,6 @@ color: #ffffff; border-color: #3d8c40; } - .p-breadcrumb { background: #ffffff; border: 1px solid #dee2e6; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6c757d; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; @@ -4709,7 +4548,7 @@ color: #495057; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: #495057; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: #495057; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -4979,7 +4815,7 @@ color: #495057; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f8f9fa; @@ -5077,7 +4912,7 @@ color: #495057; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: #495057; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5433,7 +5266,7 @@ color: #495057; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #dee2e6; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #b7e0b8; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5672,7 +5502,7 @@ color: #495057; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #4CAF50; color: #ffffff; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #495057; @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e9ecef; border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #4CAF50; color: #ffffff; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #495057; @@ -6308,11 +6118,9 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #4CAF50; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #4CAF50; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #4CAF50; } diff --git a/src/assets/components/themes/saga-orange/theme.css b/src/assets/components/themes/saga-orange/theme.css index 04d12a5607f..3a6054753bd 100644 --- a/src/assets/components/themes/saga-orange/theme.css +++ b/src/assets/components/themes/saga-orange/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #f44336; } - .p-text-secondary { color: #6c757d; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44336; } - .p-autocomplete-panel { background: #ffffff; color: #495057; @@ -440,11 +427,9 @@ color: #495057; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44336; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: #6c757d; right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6c757d; right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44336; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; border-color: #FFC107; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6c757d; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #495057; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #FFC107; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: #6c757d; right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6c757d; right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44336; } - .p-cascadeselect-panel { background: #ffffff; color: #495057; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f8f9fa; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44336; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: #6c757d; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #d29d00; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #d29d00; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #FFC107; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44336; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: #6c757d; right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid #ced4da; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44336; } - .p-dropdown-panel { background: #ffffff; color: #495057; @@ -1047,7 +1007,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-dropdown { background: #f8f9fa; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44336; } - .p-inputgroup-addon { background: #e9ecef; color: #6c757d; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #ced4da; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44336; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44336; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #ecb100; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44336; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: #6c757d; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44336; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: #6c757d; } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: #6c757d; } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: #6c757d; } - :-moz-placeholder { color: #6c757d; } - ::-moz-placeholder { color: #6c757d; } - :-ms-input-placeholder { color: #6c757d; } - .p-input-filled .p-inputtext { background-color: #f8f9fa; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #ffffff; color: #495057; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #ffe69c; border-color: #FFC107; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44336; } - .p-multiselect { background: #ffffff; border: 1px solid #ced4da; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: #6c757d; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #495057; @@ -1531,7 +1454,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-multiselect { background: #f8f9fa; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44336; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44336; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: #6c757d; right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: #6c757d; right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #d29d00; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44336; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f8f9fa; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #d29d00; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #c0392b; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #495057; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44336; } - .p-slider { background: #dee2e6; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #495057; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44336; } - .p-treeselect { background: #ffffff; border: 1px solid #ced4da; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44336; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #ffffff; color: #495057; @@ -1918,7 +1821,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-treeselect { background: #f8f9fa; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: #6c757d; right: 2.357rem; } - .p-button { color: #212529; background: #FFC107; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #56717d; color: #ffffff; border-color: #56717d; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #beccd2; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #4d646f; color: #ffffff; border-color: #4d646f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0288d1; border: 1px solid #0288d1; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #027abc; color: #ffffff; border-color: #027abc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #89d4fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #026da7; color: #ffffff; border-color: #026da7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(2, 136, 209, 0.16); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0288d1; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); border-color: transparent; color: #0288d1; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(2, 136, 209, 0.16); border-color: transparent; color: #0288d1; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 1px solid #689f38; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #5e8f32; color: #ffffff; border-color: #5e8f32; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c2e0a8; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #537f2d; color: #ffffff; border-color: #537f2d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 1px solid #fbc02d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fab710; color: #212529; border-color: #fab710; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde6ab; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #e8a704; color: #212529; border-color: #e8a704; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8c239e; color: #ffffff; border-color: #8c239e; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #df9eea; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7d1f8d; color: #ffffff; border-color: #7d1f8d; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 1px solid #d32f2f; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c02929; color: #ffffff; border-color: #c02929; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #edacac; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #aa2424; color: #ffffff; border-color: #aa2424; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #d29d00; background: transparent; @@ -2526,7 +2418,6 @@ color: #d29d00; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #343a40; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0288d1; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #0288d1; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6c757d; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; @@ -2901,7 +2775,6 @@ background: #FFF3E0; color: #495057; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6c757d; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; @@ -3047,12 +2920,12 @@ background: #FFC107; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f8f9fa; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f8f9fa; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-column-filter-overlay { background: #ffffff; color: #495057; @@ -3285,7 +3153,6 @@ border-top: 1px solid #dee2e6; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #e9ecef; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #e9ecef; color: #495057; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-paginator { background: #ffffff; color: #6c757d; @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6c757d; @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e9ecef; border-color: transparent; color: #495057; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #495057; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #e9ecef; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #FFC107; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #FFC107; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f8f9fa; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f8f9fa; color: #495057; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #dee2e6; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #ffffff; color: #495057; @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f9fa; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #f8f9fa; border: 1px solid #dee2e6; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #495057; @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #495057; @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #495057; @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6c757d; @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #495057; color: #ffffff; @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #495057; } - .p-fileupload .p-fileupload-buttonbar { background: #f8f9fa; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #ecb100; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #d29d00; } - .p-breadcrumb { background: #ffffff; border: 1px solid #dee2e6; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6c757d; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; @@ -4709,7 +4548,7 @@ color: #495057; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: #495057; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: #495057; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -4979,7 +4815,7 @@ color: #495057; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f8f9fa; @@ -5077,7 +4912,7 @@ color: #495057; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: #495057; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5433,7 +5266,7 @@ color: #495057; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #dee2e6; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #ffe69c; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5672,7 +5502,7 @@ color: #495057; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #FFC107; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #495057; @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e9ecef; border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #FFC107; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #495057; @@ -6308,11 +6118,9 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #FFC107; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #FFC107; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #FFC107; } diff --git a/src/assets/components/themes/saga-purple/theme.css b/src/assets/components/themes/saga-purple/theme.css index 3c23e8fd166..9f1f06ebcc4 100644 --- a/src/assets/components/themes/saga-purple/theme.css +++ b/src/assets/components/themes/saga-purple/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #f44336; } - .p-text-secondary { color: #6c757d; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f44336; } - .p-autocomplete-panel { background: #ffffff; color: #495057; @@ -440,11 +427,9 @@ color: #495057; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f44336; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: #6c757d; right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #6c757d; right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f44336; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; border-color: #9C27B0; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #6c757d; @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #495057; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #9C27B0; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: #6c757d; right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #6c757d; right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f44336; } - .p-cascadeselect-panel { background: #ffffff; color: #495057; @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f8f9fa; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f44336; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: #6c757d; right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #7d1f8d; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #7d1f8d; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f44336; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #9C27B0; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f44336; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: #6c757d; right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 1px solid #ced4da; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f44336; } - .p-dropdown-panel { background: #ffffff; color: #495057; @@ -1047,7 +1007,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-dropdown { background: #f8f9fa; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f44336; } - .p-inputgroup-addon { background: #e9ecef; color: #6c757d; @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #ced4da; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f44336; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f44336; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: #6c757d; right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #8c239e; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f44336; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: #6c757d; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f44336; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: #6c757d; } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: #6c757d; } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: #6c757d; } - :-moz-placeholder { color: #6c757d; } - ::-moz-placeholder { color: #6c757d; } - :-ms-input-placeholder { color: #6c757d; } - .p-input-filled .p-inputtext { background-color: #f8f9fa; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #ffffff; color: #495057; @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 0.2rem #df9eea; border-color: #9C27B0; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f44336; } - .p-multiselect { background: #ffffff; border: 1px solid #ced4da; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: #6c757d; right: 2.357rem; } - .p-multiselect-panel { background: #ffffff; color: #495057; @@ -1531,7 +1454,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-multiselect { background: #f8f9fa; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f44336; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f44336; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #689f38; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: #6c757d; right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: #6c757d; right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #7d1f8d; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f44336; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f8f9fa; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #7d1f8d; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #c0392b; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: #495057; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f44336; } - .p-slider { background: #dee2e6; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: #495057; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #6c757d; } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f44336; } - .p-treeselect { background: #ffffff; border: 1px solid #ced4da; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f44336; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #ffffff; color: #495057; @@ -1918,7 +1821,6 @@ color: #495057; background: transparent; } - .p-input-filled .p-treeselect { background: #f8f9fa; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: #6c757d; right: 2.357rem; } - .p-button { color: #ffffff; background: #9C27B0; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #607d8b; border: 1px solid #607d8b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #56717d; color: #ffffff; border-color: #56717d; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #beccd2; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #4d646f; color: #ffffff; border-color: #4d646f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(96, 125, 139, 0.16); color: #607d8b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #607d8b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(96, 125, 139, 0.04); border-color: transparent; color: #607d8b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(96, 125, 139, 0.16); border-color: transparent; color: #607d8b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #0288d1; border: 1px solid #0288d1; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #027abc; color: #ffffff; border-color: #027abc; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #89d4fe; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #026da7; color: #ffffff; border-color: #026da7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(2, 136, 209, 0.16); color: #0288d1; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #0288d1; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(2, 136, 209, 0.04); border-color: transparent; color: #0288d1; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(2, 136, 209, 0.16); border-color: transparent; color: #0288d1; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #689f38; border: 1px solid #689f38; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #5e8f32; color: #ffffff; border-color: #5e8f32; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c2e0a8; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #537f2d; color: #ffffff; border-color: #537f2d; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(104, 159, 56, 0.16); color: #689f38; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #689f38; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(104, 159, 56, 0.04); border-color: transparent; color: #689f38; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(104, 159, 56, 0.16); border-color: transparent; color: #689f38; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #212529; background: #fbc02d; border: 1px solid #fbc02d; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #fab710; color: #212529; border-color: #fab710; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fde6ab; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #e8a704; color: #212529; border-color: #e8a704; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(251, 192, 45, 0.16); color: #fbc02d; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #fbc02d; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(251, 192, 45, 0.04); border-color: transparent; color: #fbc02d; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(251, 192, 45, 0.16); border-color: transparent; color: #fbc02d; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #9c27b0; border: 1px solid #9c27b0; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #8c239e; color: #ffffff; border-color: #8c239e; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #df9eea; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7d1f8d; color: #ffffff; border-color: #7d1f8d; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(156, 39, 176, 0.16); color: #9c27b0; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #9c27b0; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(156, 39, 176, 0.04); border-color: transparent; color: #9c27b0; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(156, 39, 176, 0.16); border-color: transparent; color: #9c27b0; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d32f2f; border: 1px solid #d32f2f; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #c02929; color: #ffffff; border-color: #c02929; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #edacac; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #aa2424; color: #ffffff; border-color: #aa2424; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(211, 47, 47, 0.16); color: #d32f2f; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d32f2f; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(211, 47, 47, 0.04); border-color: transparent; color: #d32f2f; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(211, 47, 47, 0.16); border-color: transparent; color: #d32f2f; } - .p-button.p-button-link { color: #7d1f8d; background: transparent; @@ -2526,7 +2418,6 @@ color: #7d1f8d; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: #343a40; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #607d8b; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #607d8b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #0288d1; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #0288d1; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #689f38; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #689f38; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #fbc02d; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #fbc02d; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #9c27b0; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #9c27b0; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d32f2f; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #d32f2f; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #6c757d; @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; @@ -2901,7 +2775,6 @@ background: #F3E5F5; color: #495057; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #6c757d; @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; @@ -3047,12 +2920,12 @@ background: #9C27B0; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #f8f9fa; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #f8f9fa; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-column-filter-overlay { background: #ffffff; color: #495057; @@ -3285,7 +3153,6 @@ border-top: 1px solid #dee2e6; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #e9ecef; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #e9ecef; color: #495057; @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-paginator { background: #ffffff; color: #6c757d; @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #6c757d; @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #e9ecef; border-color: transparent; color: #495057; @@ -3530,7 +3393,6 @@ border-color: transparent; color: #495057; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #e9ecef; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #9C27B0; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #dee2e6; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dee2e6; background: #ffffff; @@ -3707,11 +3566,11 @@ color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #9C27B0; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #f8f9fa; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #f8f9fa; color: #495057; @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #dee2e6; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #ffffff; color: #495057; @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dee2e6; background: #ffffff; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f8f9fa; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-splitter { border: 1px solid #dee2e6; background: #ffffff; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dee2e6; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #f8f9fa; border: 1px solid #dee2e6; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #495057; @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #495057; @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #495057; @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #6c757d; @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #495057; border-color: transparent; background: #e9ecef; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #495057; color: #ffffff; @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #495057; } - .p-fileupload .p-fileupload-buttonbar { background: #f8f9fa; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #8c239e; color: #ffffff; @@ -4629,7 +4470,6 @@ color: #ffffff; border-color: #7d1f8d; } - .p-breadcrumb { background: #ffffff; border: 1px solid #dee2e6; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #6c757d; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; @@ -4709,7 +4548,7 @@ color: #495057; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: #495057; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: #495057; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: #495057; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: #495057; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -4979,7 +4815,7 @@ color: #495057; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: #495057; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f8f9fa; @@ -5077,7 +4912,7 @@ color: #495057; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: #495057; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: #495057; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: #495057; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5433,7 +5266,7 @@ color: #495057; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: #495057; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #dee2e6; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.2rem #df9eea; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5672,7 +5502,7 @@ color: #495057; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: #495057; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #6c757d; } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dee2e6; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #9C27B0; color: #ffffff; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dee2e6; color: #495057; @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #e9ecef; border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #9C27B0; color: #ffffff; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #495057; @@ -6308,11 +6118,9 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #9C27B0; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #9C27B0; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #9C27B0; } diff --git a/src/assets/components/themes/soho-dark/theme.css b/src/assets/components/themes/soho-dark/theme.css index c29ee539461..687e0fb9a5e 100644 --- a/src/assets/components/themes/soho-dark/theme.css +++ b/src/assets/components/themes/soho-dark/theme.css @@ -10,7 +10,7 @@ --text-color: rgba(255, 255, 255, 0.87); --text-color-secondary: rgba(255, 255, 255, 0.6); --primary-color: #b19df7; - --primary-color-text: #1c1d26; + --primary-color-text: hsl(234, 15%, 13%); --surface-0: #1d1e27; --surface-50: #34343d; --surface-100: #4a4b52; @@ -53,24 +53,21 @@ font-family: "Lato"; font-style: normal; font-weight: 300; - src: local("Lato Light"), local("Lato-Light"), url("./fonts/lato-v17-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-300.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Lato Light"), local("Lato-Light"), url("./fonts/lato-v17-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* lato-regular - latin-ext_latin */ @font-face { font-family: "Lato"; font-style: normal; font-weight: 400; - src: local("Lato Regular"), local("Lato-Regular"), url("./fonts/lato-v17-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Lato Regular"), local("Lato-Regular"), url("./fonts/lato-v17-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* lato-700 - latin-ext_latin */ @font-face { font-family: "Lato"; font-style: normal; font-weight: 700; - src: local("Lato Bold"), local("Lato-Bold"), url("./fonts/lato-v17-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Lato Bold"), local("Lato-Bold"), url("./fonts/lato-v17-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f6fbfe; @@ -298,40 +295,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ff9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -343,15 +332,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -368,7 +354,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -415,7 +400,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ff9a9a; } - .p-autocomplete-panel { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -462,11 +446,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ff9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -474,23 +456,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ff9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; border-color: #b19df7; } - .p-datepicker { padding: 0.5rem; background: #282936; @@ -517,7 +495,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -527,13 +505,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; @@ -542,14 +520,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #b19df7; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -698,7 +676,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -706,12 +683,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -754,7 +729,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ff9a9a; } - .p-cascadeselect-panel { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -794,7 +768,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #3e4053; } @@ -804,11 +777,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #3e4053; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ff9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -816,7 +787,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -825,7 +795,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -841,7 +810,7 @@ } .p-checkbox .p-checkbox-box .p-checkbox-icon { transition-duration: 0.2s; - color: #1c1d26; + color: hsl(234, 15%, 13%); font-size: 14px; } .p-checkbox .p-checkbox-box .p-icon { @@ -864,13 +833,11 @@ .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #9378f4; background: #9378f4; - color: #1c1d26; + color: hsl(234, 15%, 13%); } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ff9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #3e4053; } @@ -883,15 +850,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9378f4; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ff9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #b19df7; } @@ -930,11 +894,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ff9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -942,26 +904,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #282936; border: 1px solid #3e4053; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #1d1e27; border: 1px solid #3e4053; @@ -1005,7 +963,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ff9a9a; } - .p-dropdown-panel { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -1069,7 +1026,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #3e4053; } @@ -1082,11 +1038,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ff9a9a; } - .p-inputgroup-addon { background: #282936; color: rgba(255, 255, 255, 0.6); @@ -1099,68 +1053,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #3e4053; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ff9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1168,11 +1114,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ff9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1180,14 +1124,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1226,11 +1168,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #a28af5; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ff9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1263,57 +1203,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ff9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #3e4053; } @@ -1323,17 +1251,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #3e4053; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -1408,11 +1333,9 @@ box-shadow: 0 0 0 1px #e0d8fc; border-color: #b19df7; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ff9a9a; } - .p-multiselect { background: #1d1e27; border: 1px solid #3e4053; @@ -1452,11 +1375,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1464,7 +1385,6 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-multiselect-panel { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -1553,7 +1473,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #3e4053; } @@ -1563,15 +1482,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #3e4053; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ff9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ff9a9a; } - .p-password-panel { padding: 1.25rem; background: #282936; @@ -1593,7 +1509,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #93deac; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1601,7 +1516,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1609,7 +1523,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1636,7 +1549,7 @@ width: 12px; height: 12px; transition-duration: 0.2s; - background-color: #1c1d26; + background-color: hsl(234, 15%, 13%); } .p-radiobutton .p-radiobutton-box.p-highlight { border-color: #b19df7; @@ -1645,13 +1558,11 @@ .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { border-color: #9378f4; background: #9378f4; - color: #1c1d26; + color: hsl(234, 15%, 13%); } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ff9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #3e4053; } @@ -1664,11 +1575,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #9378f4; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1699,7 +1608,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #282936; border: 1px solid #3e4053; @@ -1707,7 +1615,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1716,32 +1624,30 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { background: #b19df7; border-color: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { - color: #1c1d26; + .p-selectbutton .p-button.p-highlight .p-button-icon-right { + color: hsl(234, 15%, 13%); } .p-selectbutton .p-button.p-highlight:hover { background: #a28af5; border-color: #a28af5; - color: #1c1d26; + color: hsl(234, 15%, 13%); } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { - color: #1c1d26; + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + color: hsl(234, 15%, 13%); } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ff9a9a; } - .p-slider { background: #3e4053; border: 0 none; @@ -1793,7 +1699,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #282936; border: 1px solid #3e4053; @@ -1801,7 +1706,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1810,32 +1715,30 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { background: #b19df7; border-color: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { - color: #1c1d26; + .p-togglebutton.p-button.p-highlight .p-button-icon-right { + color: hsl(234, 15%, 13%); } .p-togglebutton.p-button.p-highlight:hover { background: #a28af5; border-color: #a28af5; - color: #1c1d26; + color: hsl(234, 15%, 13%); } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { - color: #1c1d26; + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + color: hsl(234, 15%, 13%); } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ff9a9a; } - .p-treeselect { background: #1d1e27; border: 1px solid #3e4053; @@ -1872,15 +1775,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ff9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -1940,7 +1840,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #3e4053; } @@ -1950,7 +1849,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #3e4053; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1958,9 +1856,8 @@ color: rgba(255, 255, 255, 0.6); right: 3rem; } - .p-button { - color: #1c1d26; + color: hsl(234, 15%, 13%); background: #b19df7; border: 1px solid #b19df7; padding: 0.75rem 1.25rem; @@ -1970,12 +1867,12 @@ } .p-button:not(:disabled):hover { background: #a28af5; - color: #1c1d26; + color: hsl(234, 15%, 13%); border-color: #a28af5; } .p-button:not(:disabled):active { background: #9378f4; - color: #1c1d26; + color: hsl(234, 15%, 13%); border-color: #9378f4; } .p-button.p-button-outlined { @@ -2057,7 +1954,7 @@ height: 1rem; line-height: 1rem; color: #b19df7; - background-color: #1c1d26; + background-color: hsl(234, 15%, 13%); } .p-button.p-button-raised { box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); @@ -2070,7 +1967,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2097,434 +1994,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #1d1e27; background: #d4ea93; border: 1px solid #d4ea93; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #c7e473; color: #1d1e27; border-color: #c7e473; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #e1f0b3; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #bbde53; color: #1d1e27; border-color: #bbde53; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #d4ea93; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(212, 234, 147, 0.04); color: #d4ea93; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(212, 234, 147, 0.16); color: #d4ea93; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #d4ea93; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(212, 234, 147, 0.04); border-color: transparent; color: #d4ea93; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(212, 234, 147, 0.16); border-color: transparent; color: #d4ea93; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #1d1e27; background: #9bcaff; border: 1px solid #9bcaff; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #72b4ff; color: #1d1e27; border-color: #72b4ff; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b9daff; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #499fff; color: #1d1e27; border-color: #499fff; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #9bcaff; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(155, 202, 255, 0.04); color: #9bcaff; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(155, 202, 255, 0.16); color: #9bcaff; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #9bcaff; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(155, 202, 255, 0.04); border-color: transparent; color: #9bcaff; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(155, 202, 255, 0.16); border-color: transparent; color: #9bcaff; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #1d1e27; background: #93deac; border: 1px solid #93deac; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #77d596; color: #1d1e27; border-color: #77d596; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #b3e8c5; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #5acd81; color: #1d1e27; border-color: #5acd81; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #93deac; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(147, 222, 172, 0.04); color: #93deac; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(147, 222, 172, 0.16); color: #93deac; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #93deac; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(147, 222, 172, 0.04); border-color: transparent; color: #93deac; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(147, 222, 172, 0.16); border-color: transparent; color: #93deac; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #1d1e27; background: #ffcf91; border: 1px solid #ffcf91; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffbe69; color: #1d1e27; border-color: #ffbe69; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffddb2; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffac41; color: #1d1e27; border-color: #ffac41; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffcf91; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 207, 145, 0.04); color: #ffcf91; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 207, 145, 0.16); color: #ffcf91; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffcf91; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 207, 145, 0.04); border-color: transparent; color: #ffcf91; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 207, 145, 0.16); border-color: transparent; color: #ffcf91; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #1d1e27; background: #86e0e7; border: 1px solid #86e0e7; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #68d8e1; color: #1d1e27; border-color: #68d8e1; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #aae9ee; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #49d0db; color: #1d1e27; border-color: #49d0db; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #86e0e7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(134, 224, 231, 0.04); color: #86e0e7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(134, 224, 231, 0.16); color: #86e0e7; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #86e0e7; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(134, 224, 231, 0.04); border-color: transparent; color: #86e0e7; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(134, 224, 231, 0.16); border-color: transparent; color: #86e0e7; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #1d1e27; background: #eb9a9c; border: 1px solid #eb9a9c; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #e57a7c; color: #1d1e27; border-color: #e57a7c; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f1b8ba; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #de595c; color: #1d1e27; border-color: #de595c; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #eb9a9c; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(235, 154, 156, 0.04); color: #eb9a9c; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(235, 154, 156, 0.16); color: #eb9a9c; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #eb9a9c; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(235, 154, 156, 0.04); border-color: transparent; color: #eb9a9c; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(235, 154, 156, 0.16); border-color: transparent; color: #eb9a9c; } - .p-button.p-button-link { color: #b19df7; background: transparent; @@ -2548,7 +2437,6 @@ color: #b19df7; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2560,17 +2448,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2581,52 +2466,45 @@ background: rgba(255, 255, 255, 0.6); color: #1d1e27; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2704,7 +2582,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #d4ea93; @@ -2733,7 +2610,6 @@ border-color: transparent; color: #d4ea93; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #9bcaff; @@ -2762,7 +2638,6 @@ border-color: transparent; color: #9bcaff; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #93deac; @@ -2791,7 +2666,6 @@ border-color: transparent; color: #93deac; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffcf91; @@ -2820,7 +2694,6 @@ border-color: transparent; color: #ffcf91; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #86e0e7; @@ -2849,7 +2722,6 @@ border-color: transparent; color: #86e0e7; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #eb9a9c; @@ -2878,9 +2750,8 @@ border-color: transparent; color: #eb9a9c; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2891,13 +2762,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; @@ -2923,7 +2794,6 @@ background: rgba(177, 157, 247, 0.16); color: #b19df7; } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3017,9 +2887,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3029,17 +2899,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; @@ -3069,12 +2939,12 @@ background: #b19df7; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #282936; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #282936; } .p-datatable .p-datatable-loading-icon { @@ -3177,7 +3047,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3216,12 +3085,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3249,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3269,7 +3135,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-column-filter-overlay { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -3307,7 +3172,6 @@ border-top: 1px solid #3e4053; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #3e4053; @@ -3336,7 +3200,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3422,7 +3285,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3431,7 +3293,6 @@ background: #282936; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3470,7 +3331,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-paginator { background: #282936; color: rgba(255, 255, 255, 0.6); @@ -3480,9 +3340,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3493,9 +3353,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3552,7 +3412,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3638,7 +3497,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3647,32 +3505,30 @@ background: #282936; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #b19df7; border-radius: 50%; width: 1rem; height: 1rem; - background-color: #1c1d26; + background-color: hsl(234, 15%, 13%); } .p-timeline .p-timeline-event-connector { background-color: #3e4053; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #3e4053; background: #282936; @@ -3729,11 +3585,11 @@ color: #b19df7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #b19df7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #b19df7; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3806,7 +3662,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3946,7 +3801,7 @@ background: #b19df7; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #282936; } .p-treetable .p-treetable-loading-icon { @@ -4007,7 +3862,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #282936; color: rgba(255, 255, 255, 0.6); @@ -4032,7 +3886,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #3e4053; @@ -4081,7 +3934,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -4107,7 +3959,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #282936; } @@ -4131,7 +3982,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #3e4053; background: #282936; @@ -4172,7 +4022,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #3e4053; padding: 1.25rem; @@ -4239,7 +4088,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #3e4053; border: 0 none; @@ -4250,7 +4098,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-splitter { border: 1px solid #3e4053; background: #282936; @@ -4272,7 +4119,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #3e4053; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4341,7 +4187,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #282936; border: 1px solid #3e4053; @@ -4352,7 +4197,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -4400,7 +4244,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4473,7 +4316,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -4486,7 +4328,7 @@ } .p-overlaypanel .p-overlaypanel-close { background: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); width: 2rem; height: 2rem; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; @@ -4497,7 +4339,7 @@ } .p-overlaypanel .p-overlaypanel-close:enabled:hover { background: #a28af5; - color: #1c1d26; + color: hsl(234, 15%, 13%); } .p-overlaypanel:after { border: solid transparent; @@ -4515,7 +4357,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #3e4053; } - .p-sidebar { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -4526,7 +4367,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4536,13 +4377,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; @@ -4556,7 +4397,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #3e4053; color: rgba(255, 255, 255, 0.87); @@ -4576,7 +4416,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #3e4053; } - .p-fileupload .p-fileupload-buttonbar { background: #282936; padding: 1.25rem; @@ -4616,18 +4455,16 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #a28af5; - color: #1c1d26; + color: hsl(234, 15%, 13%); border-color: #a28af5; } .p-fileupload-choose:not(.p-disabled):active { background: #9378f4; - color: #1c1d26; + color: hsl(234, 15%, 13%); border-color: #9378f4; } - .p-breadcrumb { background: #333544; border: 1px solid #3e4053; @@ -4659,7 +4496,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #333544; @@ -4707,7 +4543,7 @@ color: #b19df7; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4721,7 +4557,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4732,7 +4568,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4746,7 +4582,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4770,32 +4605,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4854,7 +4688,7 @@ color: #b19df7; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4868,7 +4702,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4879,7 +4713,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4937,10 +4771,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #333544; @@ -4977,7 +4810,7 @@ color: #b19df7; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4991,7 +4824,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5002,7 +4835,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5025,7 +4858,7 @@ } .p-menu .p-menuitem-badge { background: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); font-size: 0.75rem; font-weight: 700; min-width: 1.5rem; @@ -5036,7 +4869,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #333544; @@ -5075,7 +4907,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5106,7 +4938,7 @@ color: #b19df7; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5120,7 +4952,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5131,7 +4963,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5148,7 +4980,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5323,7 +5154,7 @@ color: #b19df7; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5337,7 +5168,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5348,7 +5179,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5364,7 +5195,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #333544; @@ -5407,7 +5237,7 @@ color: #b19df7; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5421,7 +5251,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5432,7 +5262,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5468,7 +5298,7 @@ } .p-slidemenu .p-menuitem-badge { background: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); font-size: 0.75rem; font-weight: 700; min-width: 1.5rem; @@ -5479,7 +5309,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5524,7 +5353,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #3e4053; @@ -5532,7 +5360,7 @@ } .p-tabmenu .p-tabmenu-nav .p-menuitem-badge { background: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); font-size: 0.75rem; font-weight: 700; min-width: 1.5rem; @@ -5595,7 +5423,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #e0d8fc; } - .p-tieredmenu { padding: 0.25rem 0; background: #333544; @@ -5646,7 +5473,7 @@ color: #b19df7; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #b19df7; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5660,7 +5487,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5671,7 +5498,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5685,7 +5512,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5741,7 +5567,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5830,7 +5655,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5881,7 +5705,7 @@ color: #696cff; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #696cff; } .p-toast .p-toast-message.p-toast-message-success { @@ -5891,7 +5715,7 @@ color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5901,7 +5725,7 @@ color: #cc8925; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #cc8925; } .p-toast .p-toast-message.p-toast-message-error { @@ -5911,10 +5735,9 @@ color: #ff5757; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #ff5757; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5945,7 +5768,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6002,7 +5825,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6012,7 +5835,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6021,29 +5844,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6067,7 +5884,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #3e4053; border-radius: 6px; @@ -6088,14 +5904,12 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #282936; } - .p-badge { background: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); font-size: 0.75rem; font-weight: 700; min-width: 1.5rem; @@ -6134,7 +5948,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #3e4053; color: rgba(255, 255, 255, 0.87); @@ -6170,7 +5983,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6185,7 +5997,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #e0d8fc; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6198,10 +6009,9 @@ background: #b19df7; } .p-progressbar .p-progressbar-label { - color: #1c1d26; + color: hsl(234, 15%, 13%); line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6223,7 +6033,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 6px; @@ -6231,10 +6040,9 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #b19df7; - color: #1c1d26; + color: hsl(234, 15%, 13%); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.4rem; @@ -6264,7 +6072,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #282936; color: rgba(255, 255, 255, 0.87); @@ -6281,14 +6088,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #b19df7; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #b19df7; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #b19df7; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #b19df7; } diff --git a/src/assets/components/themes/soho-light/theme.css b/src/assets/components/themes/soho-light/theme.css index 742464f83cf..9cefe419df5 100644 --- a/src/assets/components/themes/soho-light/theme.css +++ b/src/assets/components/themes/soho-light/theme.css @@ -53,24 +53,21 @@ font-family: "Lato"; font-style: normal; font-weight: 300; - src: local("Lato Light"), local("Lato-Light"), url("./fonts/lato-v17-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-300.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Lato Light"), local("Lato-Light"), url("./fonts/lato-v17-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* lato-regular - latin-ext_latin */ @font-face { font-family: "Lato"; font-style: normal; font-weight: 400; - src: local("Lato Regular"), local("Lato-Regular"), url("./fonts/lato-v17-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Lato Regular"), local("Lato-Regular"), url("./fonts/lato-v17-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* lato-700 - latin-ext_latin */ @font-face { font-family: "Lato"; font-style: normal; font-weight: 700; - src: local("Lato Bold"), local("Lato-Bold"), url("./fonts/lato-v17-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local("Lato Bold"), local("Lato-Bold"), url("./fonts/lato-v17-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/lato-v17-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f6fbfe; @@ -298,40 +295,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #ff6767; } - .p-text-secondary { color: #708da9; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -343,15 +332,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -368,7 +354,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -415,7 +400,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ff6767; } - .p-autocomplete-panel { background: #ffffff; color: #043d75; @@ -462,11 +446,9 @@ color: #043d75; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ff6767; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -474,23 +456,19 @@ color: #708da9; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #708da9; right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ff6767; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; border-color: #7254f3; } - .p-datepicker { padding: 0.5rem; background: linear-gradient(90deg, #7254f3 0%, #9554f3 100%); @@ -517,7 +495,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #708da9; @@ -527,13 +505,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #043d75; border-color: transparent; background: #f6f9fc; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; @@ -542,14 +520,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #ffffff; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 700; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #7254f3; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -698,7 +676,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -706,12 +683,10 @@ color: #708da9; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #708da9; right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -754,7 +729,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ff6767; } - .p-cascadeselect-panel { background: #ffffff; color: #043d75; @@ -794,7 +768,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f6f9fc; } @@ -804,11 +777,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ff6767; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -816,7 +787,6 @@ color: #708da9; right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -825,7 +795,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 22px; height: 22px; @@ -866,11 +835,9 @@ background: #5935f1; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ff6767; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f6f9fc; } @@ -883,15 +850,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #5935f1; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ff6767; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #7254f3; } @@ -930,11 +894,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ff6767; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -942,26 +904,22 @@ color: #708da9; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #323232; border: 1px solid #191919; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } - .p-dropdown { background: #ffffff; border: 1px solid #d3dbe3; @@ -1005,7 +963,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ff6767; } - .p-dropdown-panel { background: #ffffff; color: #043d75; @@ -1069,7 +1026,6 @@ color: #043d75; background: transparent; } - .p-input-filled .p-dropdown { background: #f6f9fc; } @@ -1082,11 +1038,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ff6767; } - .p-inputgroup-addon { background: #f6f9fc; color: #708da9; @@ -1099,68 +1053,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d3dbe3; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ff6767; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1168,11 +1114,9 @@ color: #708da9; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ff6767; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1180,14 +1124,12 @@ color: #708da9; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1226,11 +1168,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #6545f2; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ff6767; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1263,57 +1203,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #708da9; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ff6767; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #708da9; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #708da9; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #708da9; } - :-moz-placeholder { color: #708da9; } - ::-moz-placeholder { color: #708da9; } - :-ms-input-placeholder { color: #708da9; } - .p-input-filled .p-inputtext { background-color: #f6f9fc; } @@ -1323,17 +1251,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #043d75; @@ -1408,11 +1333,9 @@ box-shadow: 0 0 0 1px #c7bbfa; border-color: #7254f3; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ff6767; } - .p-multiselect { background: #ffffff; border: 1px solid #d3dbe3; @@ -1452,11 +1375,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1464,7 +1385,6 @@ color: #708da9; right: 3rem; } - .p-multiselect-panel { background: #ffffff; color: #043d75; @@ -1553,7 +1473,6 @@ color: #043d75; background: transparent; } - .p-input-filled .p-multiselect { background: #f6f9fc; } @@ -1563,15 +1482,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ff6767; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ff6767; } - .p-password-panel { padding: 1.25rem; background: #ffffff; @@ -1593,7 +1509,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #29c76f; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1601,7 +1516,6 @@ color: #708da9; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1609,7 +1523,6 @@ color: #708da9; right: 2.5rem; } - .p-radiobutton { width: 22px; height: 22px; @@ -1647,11 +1560,9 @@ background: #5935f1; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ff6767; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f6f9fc; } @@ -1664,11 +1575,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #5935f1; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1699,7 +1608,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #e73d3e; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #d3dbe3; @@ -1707,7 +1615,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #708da9; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1716,7 +1624,7 @@ color: #043d75; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #708da9; } .p-selectbutton .p-button.p-highlight { @@ -1725,7 +1633,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1734,14 +1642,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ff6767; } - .p-slider { background: #dfe7ef; border: 0 none; @@ -1793,7 +1699,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #d3dbe3; @@ -1801,7 +1706,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #708da9; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1810,7 +1715,7 @@ color: #043d75; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #708da9; } .p-togglebutton.p-button.p-highlight { @@ -1819,7 +1724,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1828,14 +1733,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ff6767; } - .p-treeselect { background: #ffffff; border: 1px solid #d3dbe3; @@ -1872,15 +1775,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ff6767; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #043d75; @@ -1940,7 +1840,6 @@ color: #043d75; background: transparent; } - .p-input-filled .p-treeselect { background: #f6f9fc; } @@ -1950,7 +1849,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1958,7 +1856,6 @@ color: #708da9; right: 3rem; } - .p-button { color: #ffffff; background: #7254f3; @@ -2070,7 +1967,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2097,434 +1994,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #a1c30d; border: 1px solid #a1c30d; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #91b00c; color: #ffffff; border-color: #91b00c; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #e4f78e; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #819c0a; color: #ffffff; border-color: #819c0a; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #a1c30d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(161, 195, 13, 0.04); color: #a1c30d; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(161, 195, 13, 0.16); color: #a1c30d; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #a1c30d; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(161, 195, 13, 0.04); border-color: transparent; color: #a1c30d; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(161, 195, 13, 0.16); border-color: transparent; color: #a1c30d; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #5486f3; border: 1px solid #5486f3; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #3570f1; color: #ffffff; border-color: #3570f1; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #bbcffa; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #175bef; color: #ffffff; border-color: #175bef; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #5486f3; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(84, 134, 243, 0.04); color: #5486f3; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(84, 134, 243, 0.16); color: #5486f3; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #5486f3; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(84, 134, 243, 0.04); border-color: transparent; color: #5486f3; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(84, 134, 243, 0.16); border-color: transparent; color: #5486f3; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #29c76f; border: 1px solid #29c76f; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #25b364; color: #ffffff; border-color: #25b364; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #a5edc5; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #219f59; color: #ffffff; border-color: #219f59; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #29c76f; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(41, 199, 111, 0.04); color: #29c76f; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(41, 199, 111, 0.16); color: #29c76f; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #29c76f; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(41, 199, 111, 0.04); border-color: transparent; color: #29c76f; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(41, 199, 111, 0.16); border-color: transparent; color: #29c76f; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #ff9f42; border: 1px solid #ff9f42; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ff8f22; color: #ffffff; border-color: #ff8f22; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #ffd9b3; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ff7e02; color: #ffffff; border-color: #ff7e02; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ff9f42; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 159, 66, 0.04); color: #ff9f42; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 159, 66, 0.16); color: #ff9f42; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ff9f42; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 159, 66, 0.04); border-color: transparent; color: #ff9f42; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 159, 66, 0.16); border-color: transparent; color: #ff9f42; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #3ec9d6; border: 1px solid #3ec9d6; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #2cbfcd; color: #ffffff; border-color: #2cbfcd; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #b2e9ef; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #27aab6; color: #ffffff; border-color: #27aab6; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #3ec9d6; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(62, 201, 214, 0.04); color: #3ec9d6; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(62, 201, 214, 0.16); color: #3ec9d6; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #3ec9d6; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(62, 201, 214, 0.04); border-color: transparent; color: #3ec9d6; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(62, 201, 214, 0.16); border-color: transparent; color: #3ec9d6; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #ea5455; border: 1px solid #ea5455; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #e73839; color: #ffffff; border-color: #e73839; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f7bbbb; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #e31c1d; color: #ffffff; border-color: #e31c1d; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ea5455; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(234, 84, 85, 0.04); color: #ea5455; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(234, 84, 85, 0.16); color: #ea5455; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ea5455; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(234, 84, 85, 0.04); border-color: transparent; color: #ea5455; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(234, 84, 85, 0.16); border-color: transparent; color: #ea5455; } - .p-button.p-button-link { color: #5935f1; background: transparent; @@ -2548,7 +2437,6 @@ color: #5935f1; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2560,17 +2448,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2581,52 +2466,45 @@ background: #022354; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2704,7 +2582,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #a1c30d; @@ -2733,7 +2610,6 @@ border-color: transparent; color: #a1c30d; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #5486f3; @@ -2762,7 +2638,6 @@ border-color: transparent; color: #5486f3; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #29c76f; @@ -2791,7 +2666,6 @@ border-color: transparent; color: #29c76f; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ff9f42; @@ -2820,7 +2694,6 @@ border-color: transparent; color: #ff9f42; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #3ec9d6; @@ -2849,7 +2722,6 @@ border-color: transparent; color: #3ec9d6; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ea5455; @@ -2878,9 +2750,8 @@ border-color: transparent; color: #ea5455; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #708da9; @@ -2891,13 +2762,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #043d75; border-color: transparent; background: #f6f9fc; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; @@ -2923,7 +2794,6 @@ background: #e2dcfc; color: #7254f3; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3017,9 +2887,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #708da9; @@ -3029,17 +2899,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #043d75; border-color: transparent; background: #f6f9fc; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; @@ -3069,12 +2939,12 @@ background: #7254f3; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #eff3f8; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #eff3f8; } .p-datatable .p-datatable-loading-icon { @@ -3177,7 +3047,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3216,12 +3085,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3249,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3269,7 +3135,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-column-filter-overlay { background: #ffffff; color: #043d75; @@ -3307,7 +3172,6 @@ border-top: 1px solid #dfe7ef; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.75rem 1.25rem; border-bottom: 1px solid #dfe7ef; @@ -3336,7 +3200,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3422,7 +3285,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f6f9fc; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3431,7 +3293,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f6f9fc; color: #043d75; @@ -3470,7 +3331,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-paginator { background: #ffffff; color: #708da9; @@ -3480,9 +3340,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #708da9; @@ -3493,9 +3353,9 @@ border-radius: 50%; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f6f9fc; border-color: transparent; color: #043d75; @@ -3552,7 +3412,6 @@ border-color: transparent; color: #043d75; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3638,7 +3497,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f6f9fc; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1.25rem; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); @@ -3647,7 +3505,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #7254f3; border-radius: 50%; @@ -3659,20 +3516,19 @@ background-color: #dfe7ef; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #dfe7ef; background: #ffffff; @@ -3729,11 +3585,11 @@ color: #7254f3; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #7254f3; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #7254f3; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3806,7 +3662,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3946,7 +3801,7 @@ background: #7254f3; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #eff3f8; } .p-treetable .p-treetable-loading-icon { @@ -4007,7 +3862,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #eff3f8; color: #708da9; @@ -4032,7 +3886,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #dfe7ef; @@ -4081,7 +3934,6 @@ .p-accordion p-accordiontab .p-accordion-tab { margin-bottom: 4px; } - .p-card { background: #ffffff; color: #043d75; @@ -4107,7 +3959,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4131,7 +3982,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #dfe7ef; background: #ffffff; @@ -4172,7 +4022,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #dfe7ef; padding: 1.25rem; @@ -4239,7 +4088,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #eff3f8; border: 0 none; @@ -4250,7 +4098,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-splitter { border: 1px solid #dfe7ef; background: #ffffff; @@ -4272,7 +4119,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #dfe7ef; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4341,7 +4187,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #eff3f8; border: 1px solid #dfe7ef; @@ -4352,7 +4197,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #043d75; @@ -4400,7 +4244,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); @@ -4473,7 +4316,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #043d75; @@ -4515,7 +4357,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #043d75; @@ -4526,7 +4367,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #708da9; @@ -4536,13 +4377,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #043d75; border-color: transparent; background: #f6f9fc; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; @@ -4556,7 +4397,6 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #043d75; color: #ffffff; @@ -4576,7 +4416,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #043d75; } - .p-fileupload .p-fileupload-buttonbar { background: #eff3f8; padding: 1.25rem; @@ -4616,7 +4455,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #6545f2; color: #ffffff; @@ -4627,7 +4465,6 @@ color: #ffffff; border-color: #5935f1; } - .p-breadcrumb { background: #eff3f8; border: 1px solid #dfe7ef; @@ -4659,7 +4496,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #708da9; } - .p-contextmenu { padding: 0.25rem 0; background: #eff3f8; @@ -4707,7 +4543,7 @@ color: #7254f3; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4721,7 +4557,7 @@ color: #043d75; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4732,7 +4568,7 @@ color: #043d75; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-contextmenu .p-menuitem-separator { @@ -4746,7 +4582,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4770,32 +4605,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4854,7 +4688,7 @@ color: #7254f3; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4868,7 +4702,7 @@ color: #043d75; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4879,7 +4713,7 @@ color: #043d75; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-megamenu .p-megamenu-panel { @@ -4937,10 +4771,9 @@ color: #043d75; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } - .p-menu { padding: 0.25rem 0; background: #eff3f8; @@ -4977,7 +4810,7 @@ color: #7254f3; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4991,7 +4824,7 @@ color: #043d75; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5002,7 +4835,7 @@ color: #043d75; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-menu.p-menu-overlay { @@ -5036,7 +4869,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #eff3f8; @@ -5075,7 +4907,7 @@ color: #043d75; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5106,7 +4938,7 @@ color: #7254f3; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5120,7 +4952,7 @@ color: #043d75; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5131,7 +4963,7 @@ color: #043d75; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-menubar .p-submenu-list { @@ -5148,7 +4980,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5323,7 +5154,7 @@ color: #7254f3; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5337,7 +5168,7 @@ color: #043d75; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5348,7 +5179,7 @@ color: #043d75; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5364,7 +5195,6 @@ .p-panelmenu .p-panelmenu-panel { margin-bottom: 4px; } - .p-slidemenu { padding: 0.25rem 0; background: #eff3f8; @@ -5407,7 +5237,7 @@ color: #7254f3; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5421,7 +5251,7 @@ color: #043d75; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5432,7 +5262,7 @@ color: #043d75; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-slidemenu.p-slidemenu-overlay { @@ -5479,7 +5309,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5524,7 +5353,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #dfe7ef; @@ -5595,7 +5423,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #c7bbfa; } - .p-tieredmenu { padding: 0.25rem 0; background: #eff3f8; @@ -5646,7 +5473,7 @@ color: #7254f3; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #7254f3; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5660,7 +5487,7 @@ color: #043d75; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #043d75; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5671,7 +5498,7 @@ color: #043d75; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #708da9; } .p-tieredmenu .p-menuitem-separator { @@ -5685,7 +5512,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5741,7 +5567,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5830,7 +5655,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5881,7 +5705,7 @@ color: #696cff; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #696cff; } .p-toast .p-toast-message.p-toast-message-success { @@ -5891,7 +5715,7 @@ color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #1ea97c; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5901,7 +5725,7 @@ color: #cc8925; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #cc8925; } .p-toast .p-toast-message.p-toast-message-error { @@ -5911,10 +5735,9 @@ color: #ff5757; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #ff5757; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5945,7 +5768,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6002,7 +5825,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #eff3f8; @@ -6012,7 +5835,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #eff3f8; } @@ -6021,29 +5844,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6067,7 +5884,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #dfe7ef; border-radius: 6px; @@ -6088,11 +5904,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #7254f3; color: #ffffff; @@ -6134,7 +5948,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #dfe7ef; color: #043d75; @@ -6170,7 +5983,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 6px; @@ -6185,7 +5997,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #c7bbfa; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6201,7 +6012,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6223,7 +6033,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #dfe7ef; border-radius: 6px; @@ -6231,7 +6040,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #7254f3; color: #ffffff; @@ -6264,7 +6072,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #043d75; @@ -6280,11 +6087,11 @@ /* Customizations to the designer theme should be defined here */ @layer primeng { .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { color: #ffffff; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #ffffff; background-color: rgba(255, 255, 255, 0.2); } @@ -6330,19 +6137,15 @@ color: #ffffff; background: rgba(255, 255, 255, 0.3); } - .p-button .p-button-label { font-weight: 700; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #7254f3; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #7254f3; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #7254f3; } diff --git a/src/assets/components/themes/tailwind-light/theme.css b/src/assets/components/themes/tailwind-light/theme.css index 476678bf5ad..8ee69e98f66 100644 --- a/src/assets/components/themes/tailwind-light/theme.css +++ b/src/assets/components/themes/tailwind-light/theme.css @@ -55,36 +55,31 @@ font-family: "Inter"; font-style: normal; font-weight: 300; - src: local(""), url("./fonts/Inter-Light.woff2") format("woff2"), url("./fonts/Inter-Light.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/Inter-Light.woff2") format("woff2"), url("./fonts/Inter-Light.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 400; - src: local(""), url("./fonts/Inter-Regular.woff2") format("woff2"), url("./fonts/Inter-Regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/Inter-Regular.woff2") format("woff2"), url("./fonts/Inter-Regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 500; - src: local(""), url("./fonts/Inter-Medium.woff2") format("woff2"), url("./fonts/Inter-Medium.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/Inter-Medium.woff2") format("woff2"), url("./fonts/Inter-Medium.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 600; - src: local(""), url("./fonts/Inter-SemiBold.woff2") format("woff2"), url("./fonts/Inter-SemiBold.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/Inter-SemiBold.woff2") format("woff2"), url("./fonts/Inter-SemiBold.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } @font-face { font-family: "Inter"; font-style: normal; font-weight: 700; - src: local(""), url("./fonts/Inter-Bold.woff2") format("woff2"), url("./fonts/Inter-Bold.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/Inter-Bold.woff2") format("woff2"), url("./fonts/Inter-Bold.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f5f9ff; @@ -248,7 +243,7 @@ .p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options { background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border-radius: 0.375rem; padding: 0.25rem 0; } @@ -312,40 +307,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #e24c4c; } - .p-text-secondary { color: #71717a; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -357,15 +344,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -382,7 +366,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -429,13 +412,12 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f0a9a7; } - .p-autocomplete-panel { background: #ffffff; color: #3f3f46; border: 0 none; border-radius: 0.375rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-autocomplete-panel .p-autocomplete-items { padding: 0.25rem 0; @@ -476,11 +458,9 @@ color: #3f3f46; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f0a9a7; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -488,23 +468,19 @@ color: #71717a; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #71717a; right: 3.75rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f0a9a7; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; border-color: #4f46e5; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -515,7 +491,7 @@ .p-datepicker:not(.p-datepicker-inline) { background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header { background: #ffffff; @@ -531,7 +507,7 @@ border-top-left-radius: 0.375rem; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #71717a; @@ -541,13 +517,13 @@ transition: none; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #18181b; border-color: transparent; background: #f4f4f5; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; @@ -556,14 +532,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #3f3f46; transition: none; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #4f46e5; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -712,7 +688,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -720,12 +695,10 @@ color: #71717a; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #71717a; right: 3.75rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -768,13 +741,12 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f0a9a7; } - .p-cascadeselect-panel { background: #ffffff; color: #3f3f46; border: 0 none; border-radius: 0.375rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-cascadeselect-panel .p-cascadeselect-items { padding: 0.25rem 0; @@ -808,7 +780,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #fafafa; } @@ -818,11 +789,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f0a9a7; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -830,7 +799,6 @@ color: #71717a; right: 3rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -839,7 +807,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 16px; height: 16px; @@ -880,11 +847,9 @@ background: #4f46e5; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f0a9a7; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #fafafa; } @@ -897,15 +862,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #4f46e5; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f0a9a7; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #d4d4d8; } @@ -944,11 +906,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f0a9a7; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -956,26 +916,22 @@ color: #71717a; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #27272a; border: 1px solid #18181b; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } - .p-dropdown { background: #ffffff; border: 1px solid #d4d4d8; @@ -1019,13 +975,12 @@ .p-dropdown.p-invalid.p-component { border-color: #f0a9a7; } - .p-dropdown-panel { background: #ffffff; color: #3f3f46; border: 0 none; border-radius: 0.375rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-dropdown-panel .p-dropdown-header { padding: 0.5rem 0.75rem; @@ -1083,7 +1038,6 @@ color: #3f3f46; background: transparent; } - .p-input-filled .p-dropdown { background: #fafafa; } @@ -1096,11 +1050,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f0a9a7; } - .p-inputgroup-addon { background: #fafafa; color: #71717a; @@ -1113,68 +1065,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #d4d4d8; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 3rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f0a9a7; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1182,11 +1126,9 @@ color: #71717a; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f0a9a7; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1194,14 +1136,12 @@ color: #71717a; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.75rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.75rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1240,11 +1180,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #4338ca; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f0a9a7; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1277,57 +1215,45 @@ font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #71717a; transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f0a9a7; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #71717a; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #71717a; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #71717a; } - :-moz-placeholder { color: #71717a; } - ::-moz-placeholder { color: #71717a; } - :-ms-input-placeholder { color: #71717a; } - .p-input-filled .p-inputtext { background-color: #fafafa; } @@ -1337,17 +1263,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #ffffff; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.65625rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.9375rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #3f3f46; @@ -1422,11 +1345,9 @@ box-shadow: 0 0 0 1px #6366f1; border-color: #4f46e5; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f0a9a7; } - .p-multiselect { background: #ffffff; border: 1px solid #d4d4d8; @@ -1466,11 +1387,9 @@ border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.375rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1478,13 +1397,12 @@ color: #71717a; right: 3rem; } - .p-multiselect-panel { background: #ffffff; color: #3f3f46; border: 0 none; border-radius: 0.375rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-multiselect-panel .p-multiselect-header { padding: 0.5rem 0.75rem; @@ -1567,7 +1485,6 @@ color: #3f3f46; background: transparent; } - .p-input-filled .p-multiselect { background: #fafafa; } @@ -1577,21 +1494,18 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f0a9a7; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f0a9a7; } - .p-password-panel { padding: 1.25rem; background: #ffffff; color: #3f3f46; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border-radius: 0.375rem; } .p-password-panel .p-password-meter { @@ -1607,7 +1521,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #22c55e; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1615,7 +1528,6 @@ color: #71717a; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1623,7 +1535,6 @@ color: #71717a; right: 2.5rem; } - .p-radiobutton { width: 16px; height: 16px; @@ -1661,11 +1572,9 @@ background: #4f46e5; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f0a9a7; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #fafafa; } @@ -1678,11 +1587,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #4f46e5; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1713,7 +1620,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #dc2626; } - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #d4d4d8; @@ -1721,7 +1627,7 @@ transition: none; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #71717a; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1730,7 +1636,7 @@ color: #3f3f46; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #71717a; } .p-selectbutton .p-button.p-highlight { @@ -1739,7 +1645,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1748,14 +1654,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f0a9a7; } - .p-slider { background: #e5e7eb; border: 0 none; @@ -1807,7 +1711,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #ffffff; border: 1px solid #d4d4d8; @@ -1815,7 +1718,7 @@ transition: none; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #71717a; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1824,7 +1727,7 @@ color: #3f3f46; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #71717a; } .p-togglebutton.p-button.p-highlight { @@ -1833,7 +1736,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1842,14 +1745,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f0a9a7; } - .p-treeselect { background: #ffffff; border: 1px solid #d4d4d8; @@ -1886,21 +1787,18 @@ border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f0a9a7; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.375rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #3f3f46; border: 0 none; border-radius: 0.375rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-treeselect-panel .p-treeselect-header { padding: 0.5rem 0.75rem; @@ -1954,7 +1852,6 @@ color: #3f3f46; background: transparent; } - .p-input-filled .p-treeselect { background: #fafafa; } @@ -1964,7 +1861,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #ffffff; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1972,7 +1868,6 @@ color: #71717a; right: 3rem; } - .p-button { color: #ffffff; background: #4f46e5; @@ -2084,7 +1979,7 @@ padding: 0.75rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2111,434 +2006,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 3rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #64748b; border: 1px solid #64748b; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #475569; color: #ffffff; border-color: #475569; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #c0c7d2; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #475569; color: #ffffff; border-color: #475569; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(100, 116, 139, 0.16); color: #64748b; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #64748b; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(100, 116, 139, 0.04); border-color: transparent; color: #64748b; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(100, 116, 139, 0.16); border-color: transparent; color: #64748b; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #3b82f6; border: 1px solid #3b82f6; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #2563eb; color: #ffffff; border-color: #2563eb; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #b1cdfb; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #2563eb; color: #ffffff; border-color: #2563eb; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #3b82f6; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(59, 130, 246, 0.04); color: #3b82f6; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(59, 130, 246, 0.16); color: #3b82f6; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #3b82f6; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(59, 130, 246, 0.04); border-color: transparent; color: #3b82f6; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(59, 130, 246, 0.16); border-color: transparent; color: #3b82f6; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #22c55e; border: 1px solid #22c55e; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #16a34a; color: #ffffff; border-color: #16a34a; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #a0efbd; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #16a34a; color: #ffffff; border-color: #16a34a; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(34, 197, 94, 0.16); color: #22c55e; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #22c55e; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(34, 197, 94, 0.04); border-color: transparent; color: #22c55e; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(34, 197, 94, 0.16); border-color: transparent; color: #22c55e; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #f59e0b; border: 1px solid #f59e0b; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #d97706; color: #ffffff; border-color: #d97706; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #fbd89d; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #d97706; color: #ffffff; border-color: #d97706; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #f59e0b; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(245, 158, 11, 0.04); color: #f59e0b; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(245, 158, 11, 0.16); color: #f59e0b; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #f59e0b; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(245, 158, 11, 0.04); border-color: transparent; color: #f59e0b; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(245, 158, 11, 0.16); border-color: transparent; color: #f59e0b; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #a855f7; border: 1px solid #a855f7; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #9333ea; color: #ffffff; border-color: #9333ea; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #dcbbfc; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #9333ea; color: #ffffff; border-color: #9333ea; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(168, 85, 247, 0.16); color: #a855f7; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #a855f7; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(168, 85, 247, 0.04); border-color: transparent; color: #a855f7; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(168, 85, 247, 0.16); border-color: transparent; color: #a855f7; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #ef4444; border: 1px solid #ef4444; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #dc2626; color: #ffffff; border-color: #dc2626; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.2rem #f9b4b4; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #dc2626; color: #ffffff; border-color: #dc2626; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(239, 68, 68, 0.16); color: #ef4444; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #ef4444; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(239, 68, 68, 0.04); border-color: transparent; color: #ef4444; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(239, 68, 68, 0.16); border-color: transparent; color: #ef4444; } - .p-button.p-button-link { color: #4f46e5; background: transparent; @@ -2562,7 +2449,6 @@ color: #4f46e5; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2574,17 +2460,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2595,52 +2478,45 @@ background: #27272a; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 0.375rem; } @@ -2718,7 +2594,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #64748b; @@ -2747,7 +2622,6 @@ border-color: transparent; color: #64748b; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #3b82f6; @@ -2776,7 +2650,6 @@ border-color: transparent; color: #3b82f6; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #22c55e; @@ -2805,7 +2678,6 @@ border-color: transparent; color: #22c55e; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #f59e0b; @@ -2834,7 +2706,6 @@ border-color: transparent; color: #f59e0b; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #a855f7; @@ -2863,7 +2734,6 @@ border-color: transparent; color: #a855f7; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #ef4444; @@ -2892,9 +2762,8 @@ border-color: transparent; color: #ef4444; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #71717a; @@ -2905,13 +2774,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #18181b; border-color: transparent; background: #f4f4f5; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; @@ -2937,7 +2806,6 @@ background: #eef2ff; color: #312e81; } - .p-datatable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3031,9 +2899,9 @@ padding: 1rem 1.5rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #71717a; @@ -3043,17 +2911,17 @@ transition: none; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #18181b; border-color: transparent; background: #f4f4f5; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; @@ -3083,12 +2951,12 @@ background: #4f46e5; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #fafafa; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #fafafa; } .p-datatable .p-datatable-loading-icon { @@ -3191,7 +3059,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 0.9375rem 1.875rem; } - .p-dataview .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3230,12 +3097,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1.25rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3263,7 +3128,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3283,13 +3147,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-column-filter-overlay { background: #ffffff; color: #3f3f46; border: 0 none; border-radius: 0.375rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); min-width: 12.5rem; } .p-column-filter-overlay .p-column-filter-row-items { @@ -3321,7 +3184,6 @@ border-top: 1px solid #f3f4f6; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 0.75rem; border-bottom: 0 none; @@ -3350,7 +3212,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1.25rem; } - .p-orderlist .p-orderlist-controls { padding: 1.25rem; } @@ -3436,16 +3297,14 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #f4f4f5; } - .p-orderlist-item.cdk-drag-preview { padding: 0.75rem 1rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border: 0 none; color: #3f3f46; background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #f4f4f5; color: #18181b; @@ -3484,7 +3343,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-paginator { background: #ffffff; color: #71717a; @@ -3494,9 +3352,9 @@ border-radius: 0.375rem; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 1px solid #d4d4d8; color: #71717a; @@ -3507,9 +3365,9 @@ border-radius: 0; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #f4f4f5; border-color: #d4d4d8; color: #3f3f46; @@ -3566,7 +3424,6 @@ border-color: #d4d4d8; color: #3f3f46; } - .p-picklist .p-picklist-buttons { padding: 1.25rem; } @@ -3652,16 +3509,14 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #f4f4f5; } - .p-picklist-item.cdk-drag-preview { padding: 0.75rem 1rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border: 0 none; color: #3f3f46; background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #4f46e5; border-radius: 50%; @@ -3673,20 +3528,19 @@ background-color: #e5e7eb; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #e5e7eb; background: #ffffff; @@ -3743,11 +3597,11 @@ color: #312e81; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #312e81; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #312e81; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3820,7 +3674,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-treetable .p-paginator-top { border-width: 0 0 1px 0; border-radius: 0; @@ -3960,7 +3813,7 @@ background: #4f46e5; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #fafafa; } .p-treetable .p-treetable-loading-icon { @@ -4021,7 +3874,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 0.9375rem 1.875rem; } - .p-virtualscroller .p-virtualscroller-header { background: #fafafa; color: #3f3f46; @@ -4046,7 +3898,6 @@ border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1.25rem; border: 1px solid #e5e7eb; @@ -4119,7 +3970,6 @@ border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } - .p-card { background: #ffffff; color: #3f3f46; @@ -4145,7 +3995,6 @@ .p-card .p-card-footer { padding: 1.25rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4169,7 +4018,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #e5e7eb; background: #ffffff; @@ -4210,7 +4058,6 @@ .p-fieldset .p-fieldset-content { padding: 1.25rem; } - .p-panel .p-panel-header { border: 1px solid #e5e7eb; padding: 1.25rem; @@ -4277,7 +4124,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #fafafa; border: 0 none; @@ -4288,7 +4134,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-splitter { border: 1px solid #e5e7eb; background: #ffffff; @@ -4310,7 +4155,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #e5e7eb; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 3rem; } @@ -4379,7 +4223,6 @@ border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } - .p-toolbar { background: #fafafa; border: 1px solid #e5e7eb; @@ -4390,7 +4233,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #3f3f46; @@ -4438,7 +4280,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 0.375rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); @@ -4511,7 +4352,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #3f3f46; @@ -4553,7 +4393,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #3f3f46; @@ -4564,7 +4403,7 @@ padding: 1.25rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #71717a; @@ -4574,13 +4413,13 @@ transition: none; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #18181b; border-color: transparent; background: #f4f4f5; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; @@ -4594,12 +4433,11 @@ .p-sidebar .p-sidebar-footer { padding: 1.25rem; } - .p-tooltip .p-tooltip-text { background: #3f3f46; color: #ffffff; padding: 0.75rem 0.75rem; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border-radius: 0.375rem; } .p-tooltip.p-tooltip-right .p-tooltip-arrow { @@ -4614,7 +4452,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #3f3f46; } - .p-fileupload .p-fileupload-buttonbar { background: #fafafa; padding: 1.25rem; @@ -4654,7 +4491,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #4338ca; color: #ffffff; @@ -4665,7 +4501,6 @@ color: #ffffff; border-color: #4338ca; } - .p-breadcrumb { background: #ffffff; border: 1px solid #e5e7eb; @@ -4697,13 +4532,12 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #71717a; } - .p-contextmenu { padding: 0.25rem 0; background: #ffffff; color: #3f3f46; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border-radius: 0.375rem; width: 12.5rem; } @@ -4714,7 +4548,7 @@ padding: 0.25rem 0; background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border-radius: 0.375rem; } .p-contextmenu .p-menuitem > .p-menuitem-content { @@ -4745,7 +4579,7 @@ color: #3f3f46; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4759,7 +4593,7 @@ color: #18181b; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4770,7 +4604,7 @@ color: #18181b; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-contextmenu .p-menuitem-separator { @@ -4784,7 +4618,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4808,32 +4641,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4892,7 +4724,7 @@ color: #3f3f46; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4906,7 +4738,7 @@ color: #18181b; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4917,14 +4749,14 @@ color: #18181b; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-megamenu .p-megamenu-panel { background: #ffffff; color: #3f3f46; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-megamenu .p-submenu-header { margin: 0; @@ -4975,10 +4807,9 @@ color: #18181b; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } - .p-menu { padding: 0.25rem 0; background: #ffffff; @@ -5015,7 +4846,7 @@ color: #3f3f46; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5029,7 +4860,7 @@ color: #18181b; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5040,13 +4871,13 @@ color: #18181b; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-menu.p-menu-overlay { background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-menu .p-submenu-header { margin: 0; @@ -5074,7 +4905,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 1rem; background: #fafafa; @@ -5113,7 +4943,7 @@ color: #18181b; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5144,7 +4974,7 @@ color: #3f3f46; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5158,7 +4988,7 @@ color: #18181b; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5169,14 +4999,14 @@ color: #18181b; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-menubar .p-submenu-list { padding: 0.25rem 0; background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); width: 12.5rem; } .p-menubar .p-submenu-list .p-menuitem-separator { @@ -5186,7 +5016,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5214,7 +5043,7 @@ padding: 0.25rem 0; background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); width: 100%; } .p-menubar .p-menubar-root-list .p-menuitem-separator { @@ -5361,7 +5190,7 @@ color: #3f3f46; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5375,7 +5204,7 @@ color: #18181b; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5386,7 +5215,7 @@ color: #18181b; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5426,7 +5255,6 @@ border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } - .p-slidemenu { padding: 0.25rem 0; background: #ffffff; @@ -5469,7 +5297,7 @@ color: #3f3f46; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5483,7 +5311,7 @@ color: #18181b; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5494,19 +5322,19 @@ color: #18181b; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-slidemenu.p-slidemenu-overlay { background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-slidemenu .p-slidemenu-list { padding: 0.25rem 0; background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-slidemenu .p-menuitem-separator { border-top: 1px solid #f3f4f6; @@ -5541,7 +5369,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: none; @@ -5586,7 +5413,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #e5e7eb; @@ -5657,7 +5483,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #6366f1; } - .p-tieredmenu { padding: 0.25rem 0; background: #ffffff; @@ -5669,7 +5494,7 @@ .p-tieredmenu.p-tieredmenu-overlay { background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-tieredmenu .p-tieredmenu-root-list { outline: 0 none; @@ -5678,7 +5503,7 @@ padding: 0.25rem 0; background: #ffffff; border: 0 none; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .p-tieredmenu .p-menuitem > .p-menuitem-content { color: #3f3f46; @@ -5708,7 +5533,7 @@ color: #3f3f46; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5722,7 +5547,7 @@ color: #18181b; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #18181b; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5733,7 +5558,7 @@ color: #18181b; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #71717a; } .p-tieredmenu .p-menuitem-separator { @@ -5747,7 +5572,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.75rem 0.75rem; margin: 0; @@ -5803,7 +5627,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 0.375rem; @@ -5892,7 +5715,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5943,7 +5765,7 @@ color: #2563eb; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #2563eb; } .p-toast .p-toast-message.p-toast-message-success { @@ -5953,7 +5775,7 @@ color: #059669; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #059669; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5963,7 +5785,7 @@ color: #d97706; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #d97706; } .p-toast .p-toast-message.p-toast-message-error { @@ -5973,10 +5795,9 @@ color: #dc2626; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #dc2626; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -6007,7 +5828,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6064,7 +5885,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #fafafa; @@ -6074,7 +5895,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #fafafa; } @@ -6083,29 +5904,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: none; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6129,7 +5944,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #e5e7eb; border-radius: 0.375rem; @@ -6150,11 +5964,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #4f46e5; color: #ffffff; @@ -6196,7 +6008,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #e5e7eb; color: #3f3f46; @@ -6232,7 +6043,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.75rem 0.75rem; border-radius: 0.375rem; @@ -6247,7 +6057,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #6366f1; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6263,12 +6072,11 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; border-radius: 50%; - box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); transition: none; } .p-scrolltop.p-link { @@ -6285,7 +6093,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #f4f4f5; border-radius: 0.375rem; @@ -6293,7 +6100,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #4f46e5; color: #ffffff; @@ -6326,7 +6132,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #3f3f46; @@ -6342,29 +6147,23 @@ /* Customizations to the designer theme should be defined here */ @layer primeng { .p-inputtext, .p-togglebutton, .p-selectbutton, .p-inputgroup { - box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.05); } - .p-inputgroup .p-inputtext, .p-inputgroup .p-togglebutton, .p-inputgroup .p-selectbutton { box-shadow: none; } - .p-inputtext.p-invalid.p-component:enabled:focus { box-shadow: 0 0 0 1px #f0a9a7; } - .p-highlight { font-weight: 600; } - .p-button-label { font-weight: 500; } - .p-inputswitch.p-focus .p-inputswitch-slider { box-shadow: 0 0 0 2px #6366f1; } - .p-paginator .p-paginator-pages .p-paginator-page { margin-left: -1px; } @@ -6375,7 +6174,6 @@ .p-paginator .p-paginator-current { border: 0 none; } - .p-button:focus { box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #6366f1, 0 1px 2px 0 rgba(0, 0, 0, 0); } @@ -6397,18 +6195,15 @@ .p-button.p-button-danger:enabled:focus { box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #ef4444, 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-checkbox .p-checkbox-box { border-radius: 0.25rem; } .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #6366f1, 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-radiobutton:not(.p-radiobutton-disabled) .p-radiobutton-box.p-focus { box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #6366f1, 0 1px 2px 0 rgba(0, 0, 0, 0); } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #4f46e5; } diff --git a/src/assets/components/themes/vela-blue/theme.css b/src/assets/components/themes/vela-blue/theme.css index 970d2e5ac47..beafcf83cfc 100644 --- a/src/assets/components/themes/vela-blue/theme.css +++ b/src/assets/components/themes/vela-blue/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; border-color: #64B5F6; } - .p-datepicker { padding: 0.5rem; background: #1f2d40; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #64B5F6; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #304562; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #2396f2; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #2396f2; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #64B5F6; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2d40; border: 1px solid #304562; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #17212f; border: 1px solid #304562; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #304562; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #304562; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #43a5f4; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #304562; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #304562; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #93cbf9; border-color: #64B5F6; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #17212f; border: 1px solid #304562; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #304562; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #304562; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1f2d40; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #2396f2; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #304562; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #2396f2; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #304562; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2d40; border: 1px solid #304562; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #17212f; border: 1px solid #304562; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #304562; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #212529; background: #64B5F6; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #64B5F6; background: transparent; @@ -2526,7 +2418,6 @@ color: #64B5F6; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #17212f; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -2901,7 +2775,6 @@ background: rgba(100, 181, 246, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -3047,12 +2920,12 @@ background: #64B5F6; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2d40; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2d40; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-column-filter-overlay { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #304562; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1f2d40; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-paginator { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1f2d40; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #64B5F6; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #304562; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #304562; background: #1f2d40; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #64B5F6; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2d40; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #304562; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2d40; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #304562; background: #1f2d40; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #304562; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #304562; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-splitter { border: 1px solid #304562; background: #1f2d40; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #304562; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1f2d40; border: 1px solid #304562; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #304562; } - .p-sidebar { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #304562; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #304562; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2d40; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #43a5f4; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #2396f2; } - .p-breadcrumb { background: #1f2d40; border: 1px solid #304562; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1f2d40; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1f2d40; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1f2d40; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1f2d40; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #304562; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #93cbf9; } - .p-tieredmenu { padding: 0.25rem 0; background: #1f2d40; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #304562; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2d40; } - .p-badge { background: #64B5F6; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #304562; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #64B5F6; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #64B5F6; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #64B5F6; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #64B5F6; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #64B5F6; } diff --git a/src/assets/components/themes/vela-green/theme.css b/src/assets/components/themes/vela-green/theme.css index 6c562cb81aa..2220e54bd00 100644 --- a/src/assets/components/themes/vela-green/theme.css +++ b/src/assets/components/themes/vela-green/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; border-color: #81C784; } - .p-datepicker { padding: 0.5rem; background: #1f2d40; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #81C784; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #304562; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #54b358; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #54b358; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #81C784; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2d40; border: 1px solid #304562; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #17212f; border: 1px solid #304562; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #304562; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #304562; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #6abd6e; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #304562; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #304562; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #a7d8a9; border-color: #81C784; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #17212f; border: 1px solid #304562; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #304562; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #304562; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1f2d40; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #54b358; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #304562; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #54b358; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #304562; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2d40; border: 1px solid #304562; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #17212f; border: 1px solid #304562; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #304562; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #212529; background: #81C784; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #81C784; background: transparent; @@ -2526,7 +2418,6 @@ color: #81C784; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #17212f; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -2901,7 +2775,6 @@ background: rgba(129, 199, 132, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -3047,12 +2920,12 @@ background: #81C784; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2d40; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2d40; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-column-filter-overlay { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #304562; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1f2d40; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-paginator { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1f2d40; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #81C784; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #304562; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #304562; background: #1f2d40; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #81C784; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2d40; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #304562; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2d40; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #304562; background: #1f2d40; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #304562; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #304562; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-splitter { border: 1px solid #304562; background: #1f2d40; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #304562; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1f2d40; border: 1px solid #304562; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #304562; } - .p-sidebar { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #304562; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #304562; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2d40; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #6abd6e; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #54b358; } - .p-breadcrumb { background: #1f2d40; border: 1px solid #304562; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1f2d40; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1f2d40; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1f2d40; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1f2d40; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #304562; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #a7d8a9; } - .p-tieredmenu { padding: 0.25rem 0; background: #1f2d40; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #304562; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2d40; } - .p-badge { background: #81C784; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #304562; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #81C784; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #81C784; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #81C784; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #81C784; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #81C784; } diff --git a/src/assets/components/themes/vela-orange/theme.css b/src/assets/components/themes/vela-orange/theme.css index 683e53f2acc..12463022a0d 100644 --- a/src/assets/components/themes/vela-orange/theme.css +++ b/src/assets/components/themes/vela-orange/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; border-color: #FFD54F; } - .p-datepicker { padding: 0.5rem; background: #1f2d40; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #FFD54F; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #304562; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #ffc50c; color: #212529; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #ffc50c; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #FFD54F; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2d40; border: 1px solid #304562; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #17212f; border: 1px solid #304562; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #304562; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #304562; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #ffcd2e; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #304562; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #304562; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #ffe284; border-color: #FFD54F; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #17212f; border: 1px solid #304562; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #304562; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #304562; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1f2d40; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #ffc50c; color: #212529; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #304562; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #ffc50c; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #212529; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #212529; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #212529; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #304562; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2d40; border: 1px solid #304562; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #212529; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #212529; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #212529; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #212529; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #17212f; border: 1px solid #304562; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #304562; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #212529; background: #FFD54F; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #FFD54F; background: transparent; @@ -2526,7 +2418,6 @@ color: #FFD54F; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #17212f; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -2901,7 +2775,6 @@ background: rgba(255, 213, 79, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -3047,12 +2920,12 @@ background: #FFD54F; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2d40; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2d40; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-column-filter-overlay { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #304562; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1f2d40; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-paginator { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1f2d40; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #FFD54F; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #304562; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #304562; background: #1f2d40; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #FFD54F; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2d40; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #304562; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2d40; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #304562; background: #1f2d40; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #304562; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #304562; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-splitter { border: 1px solid #304562; background: #1f2d40; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #304562; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1f2d40; border: 1px solid #304562; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #304562; } - .p-sidebar { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #304562; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #304562; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2d40; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #ffcd2e; color: #212529; @@ -4629,7 +4470,6 @@ color: #212529; border-color: #ffc50c; } - .p-breadcrumb { background: #1f2d40; border: 1px solid #304562; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1f2d40; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1f2d40; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1f2d40; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1f2d40; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #304562; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #ffe284; } - .p-tieredmenu { padding: 0.25rem 0; background: #1f2d40; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #304562; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2d40; } - .p-badge { background: #FFD54F; color: #212529; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #304562; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #212529; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #FFD54F; color: #212529; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #FFD54F; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #FFD54F; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #FFD54F; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #FFD54F; } diff --git a/src/assets/components/themes/vela-purple/theme.css b/src/assets/components/themes/vela-purple/theme.css index 6247fddd7d9..aa63610b52b 100644 --- a/src/assets/components/themes/vela-purple/theme.css +++ b/src/assets/components/themes/vela-purple/theme.css @@ -276,40 +276,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.2s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #ef9a9a; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -321,15 +313,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -346,7 +335,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.5rem; } @@ -393,7 +381,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #ef9a9a; } - .p-autocomplete-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -440,11 +427,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #ef9a9a; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2rem; } @@ -452,23 +437,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #ef9a9a; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; border-color: #BA68C8; } - .p-datepicker { padding: 0.5rem; background: #1f2d40; @@ -495,7 +476,7 @@ border-top-left-radius: 3px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -505,13 +486,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -520,14 +501,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #BA68C8; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -676,7 +657,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2rem; } @@ -684,12 +664,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -732,7 +710,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #ef9a9a; } - .p-cascadeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -772,7 +749,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #304562; } @@ -782,11 +758,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #ef9a9a; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.5rem; } @@ -794,7 +768,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -803,7 +776,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -844,11 +816,9 @@ background: #a241b2; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } @@ -861,15 +831,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #a241b2; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #ef9a9a; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #BA68C8; } @@ -908,11 +875,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #ef9a9a; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.5rem; } @@ -920,26 +885,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #1f2d40; border: 1px solid #304562; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #17212f; border: 1px solid #304562; @@ -983,7 +944,6 @@ .p-dropdown.p-invalid.p-component { border-color: #ef9a9a; } - .p-dropdown-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1047,7 +1007,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #304562; } @@ -1060,11 +1019,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #ef9a9a; } - .p-inputgroup-addon { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -1077,68 +1034,60 @@ .p-inputgroup-addon:last-child { border-right: 1px solid #304562; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.357rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #ef9a9a; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2rem; } @@ -1146,11 +1095,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #ef9a9a; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2rem; } @@ -1158,14 +1105,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 2.857rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 2.857rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1204,11 +1149,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #b052c0; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #ef9a9a; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1241,57 +1184,45 @@ font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-float-label > label { left: 0.5rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.2s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #ef9a9a; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.5rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #304562; } @@ -1301,17 +1232,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #304562; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.4375rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.625rem; } - .p-listbox { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1386,11 +1314,9 @@ box-shadow: 0 0 0 1px #cf95d9; border-color: #BA68C8; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #ef9a9a; } - .p-multiselect { background: #17212f; border: 1px solid #304562; @@ -1430,11 +1356,9 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.5rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.5rem; } @@ -1442,7 +1366,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-multiselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1531,7 +1454,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #304562; } @@ -1541,15 +1463,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #304562; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #ef9a9a; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #ef9a9a; } - .p-password-panel { padding: 1rem; background: #1f2d40; @@ -1571,7 +1490,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #c5e1a5; } - p-password.p-password-clearable .p-password-input { padding-right: 2rem; } @@ -1579,7 +1497,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.5rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 3.5rem; } @@ -1587,7 +1504,6 @@ color: rgba(255, 255, 255, 0.6); right: 2rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1625,11 +1541,9 @@ background: #a241b2; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #ef9a9a; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #304562; } @@ -1642,11 +1556,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #a241b2; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1677,7 +1589,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f48fb1; } - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1685,7 +1596,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1694,7 +1605,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1703,7 +1614,7 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover { @@ -1712,14 +1623,12 @@ color: #ffffff; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #ef9a9a; } - .p-slider { background: #304562; border: 0 none; @@ -1771,7 +1680,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.2s; } - .p-togglebutton.p-button { background: #1f2d40; border: 1px solid #304562; @@ -1779,7 +1687,7 @@ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1788,7 +1696,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1797,7 +1705,7 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover { @@ -1806,14 +1714,12 @@ color: #ffffff; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #ffffff; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #ef9a9a; } - .p-treeselect { background: #17212f; border: 1px solid #304562; @@ -1850,15 +1756,12 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #ef9a9a; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.5rem; } - .p-treeselect-panel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1918,7 +1821,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #304562; } @@ -1928,7 +1830,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #304562; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.5rem; } @@ -1936,7 +1837,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.357rem; } - .p-button { color: #ffffff; background: #BA68C8; @@ -2048,7 +1948,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2075,434 +1975,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.357rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #78909c; border: 1px solid #78909c; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #69838f; color: #ffffff; border-color: #69838f; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a1b1ba; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #5d747f; color: #ffffff; border-color: #5d747f; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(120, 144, 156, 0.16); color: #78909c; border: 1px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #78909c; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(120, 144, 156, 0.04); border-color: transparent; color: #78909c; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(120, 144, 156, 0.16); border-color: transparent; color: #78909c; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #121212; background: #81d4fa; border: 1px solid #81d4fa; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #5dc8f9; color: #121212; border-color: #5dc8f9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #a7e1fc; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #38bbf7; color: #121212; border-color: #38bbf7; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 212, 250, 0.16); color: #81d4fa; border: 1px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #81d4fa; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 212, 250, 0.04); border-color: transparent; color: #81d4fa; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 212, 250, 0.16); border-color: transparent; color: #81d4fa; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #121212; background: #c5e1a5; border: 1px solid #c5e1a5; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #b2d788; color: #121212; border-color: #b2d788; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #d6eac0; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #9fce6b; color: #121212; border-color: #9fce6b; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(197, 225, 165, 0.16); color: #c5e1a5; border: 1px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #c5e1a5; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(197, 225, 165, 0.04); border-color: transparent; color: #c5e1a5; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(197, 225, 165, 0.16); border-color: transparent; color: #c5e1a5; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #121212; background: #ffe082; border: 1px solid #ffe082; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd65c; color: #121212; border-color: #ffd65c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ffe9a8; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcd35; color: #121212; border-color: #ffcd35; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 130, 0.16); color: #ffe082; border: 1px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe082; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 130, 0.04); border-color: transparent; color: #ffe082; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 130, 0.16); border-color: transparent; color: #ffe082; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #121212; background: #ce93d8; border: 1px solid #ce93d8; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #c278ce; color: #121212; border-color: #c278ce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ddb3e4; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #b65ec5; color: #121212; border-color: #b65ec5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 147, 216, 0.16); color: #ce93d8; border: 1px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #ce93d8; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 147, 216, 0.04); border-color: transparent; color: #ce93d8; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 147, 216, 0.16); border-color: transparent; color: #ce93d8; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #121212; background: #f48fb1; border: 1px solid #f48fb1; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #f16c98; color: #121212; border-color: #f16c98; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f7b1c8; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #ed4980; color: #121212; border-color: #ed4980; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(244, 143, 177, 0.16); color: #f48fb1; border: 1px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #f48fb1; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(244, 143, 177, 0.04); border-color: transparent; color: #f48fb1; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(244, 143, 177, 0.16); border-color: transparent; color: #f48fb1; } - .p-button.p-button-link { color: #BA68C8; background: transparent; @@ -2526,7 +2418,6 @@ color: #BA68C8; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2538,17 +2429,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2559,52 +2447,45 @@ background: rgba(255, 255, 255, 0.6); color: #17212f; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 3px; } @@ -2682,7 +2563,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #78909c; @@ -2711,7 +2591,6 @@ border-color: transparent; color: #78909c; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #81d4fa; @@ -2740,7 +2619,6 @@ border-color: transparent; color: #81d4fa; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #c5e1a5; @@ -2769,7 +2647,6 @@ border-color: transparent; color: #c5e1a5; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe082; @@ -2798,7 +2675,6 @@ border-color: transparent; color: #ffe082; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #ce93d8; @@ -2827,7 +2703,6 @@ border-color: transparent; color: #ce93d8; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #f48fb1; @@ -2856,9 +2731,8 @@ border-color: transparent; color: #f48fb1; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2869,13 +2743,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -2901,7 +2775,6 @@ background: rgba(186, 104, 200, 0.16); color: rgba(255, 255, 255, 0.87); } - .p-datatable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -2995,9 +2868,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3007,17 +2880,17 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -3047,12 +2920,12 @@ background: #BA68C8; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #1f2d40; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #1f2d40; } .p-datatable .p-datatable-loading-icon { @@ -3155,7 +3028,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3194,12 +3066,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3227,7 +3097,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3247,7 +3116,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-column-filter-overlay { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -3285,7 +3153,6 @@ border-top: 1px solid #304562; margin: 0.25rem 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1rem; border-bottom: 0 none; @@ -3314,7 +3181,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3400,7 +3266,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3409,7 +3274,6 @@ background: #1f2d40; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.87); @@ -3448,7 +3312,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-paginator { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -3458,9 +3321,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3471,9 +3334,9 @@ border-radius: 3px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3530,7 +3393,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3616,7 +3478,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(255, 255, 255, 0.03); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3625,7 +3486,6 @@ background: #1f2d40; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #BA68C8; border-radius: 50%; @@ -3637,20 +3497,19 @@ background-color: #304562; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 1px solid #304562; background: #1f2d40; @@ -3707,11 +3566,11 @@ color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3784,7 +3643,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-treetable .p-paginator-top { border-width: 1px 0 1px 0; border-radius: 0; @@ -3924,7 +3782,7 @@ background: #BA68C8; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #1f2d40; } .p-treetable .p-treetable-loading-icon { @@ -3985,7 +3843,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #1f2d40; color: rgba(255, 255, 255, 0.6); @@ -4010,7 +3867,6 @@ border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 1px solid #304562; @@ -4083,7 +3939,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-card { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4109,7 +3964,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #1f2d40; } @@ -4133,7 +3987,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 1px solid #304562; background: #1f2d40; @@ -4174,7 +4027,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 1px solid #304562; padding: 1rem; @@ -4241,7 +4093,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #304562; border: 0 none; @@ -4252,7 +4103,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-splitter { border: 1px solid #304562; background: #1f2d40; @@ -4274,7 +4124,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #304562; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.357rem; } @@ -4343,7 +4192,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-toolbar { background: #1f2d40; border: 1px solid #304562; @@ -4354,7 +4202,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4402,7 +4249,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 3px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4475,7 +4321,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4517,7 +4362,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #304562; } - .p-sidebar { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -4528,7 +4372,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4538,13 +4382,13 @@ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(255, 255, 255, 0.03); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; @@ -4558,7 +4402,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #304562; color: rgba(255, 255, 255, 0.87); @@ -4578,7 +4421,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #304562; } - .p-fileupload .p-fileupload-buttonbar { background: #1f2d40; padding: 1rem; @@ -4618,7 +4460,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #b052c0; color: #ffffff; @@ -4629,7 +4470,6 @@ color: #ffffff; border-color: #a241b2; } - .p-breadcrumb { background: #1f2d40; border: 1px solid #304562; @@ -4661,7 +4501,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.25rem 0; background: #1f2d40; @@ -4709,7 +4548,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4723,7 +4562,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4734,7 +4573,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4748,7 +4587,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4772,32 +4610,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4856,7 +4693,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4870,7 +4707,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4881,7 +4718,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4939,10 +4776,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.25rem 0; background: #1f2d40; @@ -4979,7 +4815,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4993,7 +4829,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5004,7 +4840,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5038,7 +4874,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #1f2d40; @@ -5077,7 +4912,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5108,7 +4943,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5122,7 +4957,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5133,7 +4968,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5150,7 +4985,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5325,7 +5159,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5339,7 +5173,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5350,7 +5184,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5390,7 +5224,6 @@ border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } - .p-slidemenu { padding: 0.25rem 0; background: #1f2d40; @@ -5433,7 +5266,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5447,7 +5280,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5458,7 +5291,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5505,7 +5338,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.2s; @@ -5550,7 +5382,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #304562; @@ -5621,7 +5452,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #cf95d9; } - .p-tieredmenu { padding: 0.25rem 0; background: #1f2d40; @@ -5672,7 +5502,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5686,7 +5516,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5697,7 +5527,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5711,7 +5541,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.5rem; margin: 0; @@ -5767,7 +5596,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 3px; @@ -5856,7 +5684,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5907,7 +5734,7 @@ color: #044868; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #044868; } .p-toast .p-toast-message.p-toast-message-success { @@ -5917,7 +5744,7 @@ color: #224a23; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #224a23; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5927,7 +5754,7 @@ color: #6d5100; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #6d5100; } .p-toast .p-toast-message.p-toast-message-error { @@ -5937,10 +5764,9 @@ color: #73000c; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #73000c; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -5971,7 +5797,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6028,7 +5854,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6038,7 +5864,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6047,29 +5873,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6093,7 +5913,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #304562; border-radius: 3px; @@ -6114,11 +5933,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #1f2d40; } - .p-badge { background: #BA68C8; color: #ffffff; @@ -6160,7 +5977,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #304562; color: rgba(255, 255, 255, 0.87); @@ -6196,7 +6012,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.5rem; border-radius: 3px; @@ -6211,7 +6026,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6227,7 +6041,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6249,7 +6062,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 3px; @@ -6257,7 +6069,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #BA68C8; color: #ffffff; @@ -6290,7 +6101,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -6308,14 +6118,12 @@ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #BA68C8; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #BA68C8; } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { background: #BA68C8; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #BA68C8; } diff --git a/src/assets/components/themes/viva-dark/theme.css b/src/assets/components/themes/viva-dark/theme.css index 1dd6045cb43..b3f8241706d 100644 --- a/src/assets/components/themes/viva-dark/theme.css +++ b/src/assets/components/themes/viva-dark/theme.css @@ -53,32 +53,28 @@ font-family: "Poppins"; font-style: normal; font-weight: 300; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-300.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* poppins-regular - latin-ext_latin */ @font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* poppins-600 - latin-ext_latin */ @font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-600.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-600.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-600.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* poppins-700 - latin-ext_latin */ @font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f6fbfd; @@ -306,40 +302,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.3s; } - .p-disabled, .p-component:disabled { opacity: 0.4; } - .p-error { color: #f78c79; } - .p-text-secondary { color: rgba(255, 255, 255, 0.6); } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -351,15 +339,12 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -376,7 +361,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -423,7 +407,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f78c79; } - .p-autocomplete-panel { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -470,11 +453,9 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f78c79; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -482,23 +463,19 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.607rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f78c79; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; border-color: #9eade6; } - .p-datepicker { padding: 0.5rem; background: #161d21; @@ -525,7 +502,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -535,13 +512,13 @@ transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(158, 173, 230, 0.08); } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; @@ -550,14 +527,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: rgba(255, 255, 255, 0.87); transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #9eade6; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -706,7 +683,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -714,12 +690,10 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: rgba(255, 255, 255, 0.6); right: 3.607rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -762,7 +736,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f78c79; } - .p-cascadeselect-panel { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -802,7 +775,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #263238; } @@ -812,11 +784,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #263238; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f78c79; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -824,7 +794,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -833,7 +802,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -874,11 +842,9 @@ background: #7f93de; color: #121212; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f78c79; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #263238; } @@ -891,15 +857,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #7f93de; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f78c79; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #2d3e44; } @@ -938,11 +901,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f78c79; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -950,26 +911,22 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #161d21; border: 1px solid #263238; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: rgba(255, 255, 255, 0.87); } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #0e1315; border: 2px solid #263238; @@ -1013,7 +970,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f78c79; } - .p-dropdown-panel { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -1077,7 +1033,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-dropdown { background: #263238; } @@ -1090,11 +1045,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f78c79; } - .p-inputgroup-addon { background: #161d21; color: rgba(255, 255, 255, 0.6); @@ -1107,68 +1060,60 @@ .p-inputgroup-addon:last-child { border-right: 2px solid #263238; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.857rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f78c79; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1176,11 +1121,9 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f78c79; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1188,14 +1131,12 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.607rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.607rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1234,11 +1175,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #8fa0e2; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f78c79; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1271,57 +1210,45 @@ font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: rgba(255, 255, 255, 0.6); transition-duration: 0.3s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f78c79; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: rgba(255, 255, 255, 0.6); } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6); } - :-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - ::-moz-placeholder { color: rgba(255, 255, 255, 0.6); } - :-ms-input-placeholder { color: rgba(255, 255, 255, 0.6); } - .p-input-filled .p-inputtext { background-color: #263238; } @@ -1331,17 +1258,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #263238; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-listbox { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -1416,11 +1340,9 @@ box-shadow: 0 0 0 1px #9eade6; border-color: #9eade6; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f78c79; } - .p-multiselect { background: #0e1315; border: 2px solid #263238; @@ -1460,11 +1382,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1472,7 +1392,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - .p-multiselect-panel { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -1561,7 +1480,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-multiselect { background: #263238; } @@ -1571,15 +1489,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #263238; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f78c79; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f78c79; } - .p-password-panel { padding: 1rem; background: #161d21; @@ -1601,7 +1516,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #cede9c; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1609,7 +1523,6 @@ color: rgba(255, 255, 255, 0.6); right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1617,7 +1530,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1655,11 +1567,9 @@ background: #7f93de; color: #121212; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f78c79; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #263238; } @@ -1672,11 +1582,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #7f93de; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1707,7 +1615,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f88c79; } - .p-selectbutton .p-button { background: #161d21; border: 2px solid #263238; @@ -1715,7 +1622,7 @@ transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1724,7 +1631,7 @@ color: rgba(255, 255, 255, 0.87); } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-selectbutton .p-button.p-highlight { @@ -1733,7 +1640,7 @@ color: #9eade6; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #9eade6; } .p-selectbutton .p-button.p-highlight:hover { @@ -1742,14 +1649,12 @@ color: #9eade6; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #9eade6; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f78c79; } - .p-slider { background: #263238; border: 0 none; @@ -1801,7 +1706,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.3s; } - .p-togglebutton.p-button { background: #161d21; border: 2px solid #263238; @@ -1809,7 +1713,7 @@ transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1818,7 +1722,7 @@ color: rgba(255, 255, 255, 0.87); } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: rgba(255, 255, 255, 0.6); } .p-togglebutton.p-button.p-highlight { @@ -1827,7 +1731,7 @@ color: #9eade6; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #9eade6; } .p-togglebutton.p-button.p-highlight:hover { @@ -1836,14 +1740,12 @@ color: #9eade6; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #9eade6; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f78c79; } - .p-treeselect { background: #0e1315; border: 2px solid #263238; @@ -1880,15 +1782,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f78c79; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.75rem; } - .p-treeselect-panel { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -1948,7 +1847,6 @@ color: rgba(255, 255, 255, 0.87); background: transparent; } - .p-input-filled .p-treeselect { background: #263238; } @@ -1958,7 +1856,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #263238; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1966,7 +1863,6 @@ color: rgba(255, 255, 255, 0.6); right: 2.857rem; } - .p-button { color: #121212; background: #9eade6; @@ -2078,7 +1974,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2105,434 +2001,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.857rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #0e1315; background: #b4bfcd; border: 1px solid #b4bfcd; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #9dabbe; color: #0e1315; border-color: #9dabbe; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 1px #e1e5eb; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #8698ae; color: #0e1315; border-color: #8698ae; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #b4bfcd; border: 2px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(180, 191, 205, 0.04); color: #b4bfcd; border: 2px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(180, 191, 205, 0.16); color: #b4bfcd; border: 2px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #b4bfcd; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(180, 191, 205, 0.04); border-color: transparent; color: #b4bfcd; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(180, 191, 205, 0.16); border-color: transparent; color: #b4bfcd; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #35a4cc; border: 1px solid #35a4cc; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #2f94b9; color: #ffffff; border-color: #2f94b9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #aedbeb; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #2984a4; color: #ffffff; border-color: #2984a4; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #35a4cc; border: 2px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(53, 164, 204, 0.04); color: #35a4cc; border: 2px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(53, 164, 204, 0.16); color: #35a4cc; border: 2px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #35a4cc; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(53, 164, 204, 0.04); border-color: transparent; color: #35a4cc; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(53, 164, 204, 0.16); border-color: transparent; color: #35a4cc; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #0e1315; background: #cede9c; border: 1px solid #cede9c; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #c0d580; color: #0e1315; border-color: #c0d580; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #ebf2d7; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #b2cb63; color: #0e1315; border-color: #b2cb63; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #cede9c; border: 2px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(206, 222, 156, 0.04); color: #cede9c; border: 2px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(206, 222, 156, 0.16); color: #cede9c; border: 2px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #cede9c; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(206, 222, 156, 0.04); border-color: transparent; color: #cede9c; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(206, 222, 156, 0.16); border-color: transparent; color: #cede9c; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #0e1315; background: #ffe08a; border: 1px solid #ffe08a; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ffd663; color: #0e1315; border-color: #ffd663; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #fff3d0; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ffcb3b; color: #0e1315; border-color: #ffcb3b; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ffe08a; border: 2px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 224, 138, 0.04); color: #ffe08a; border: 2px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 224, 138, 0.16); color: #ffe08a; border: 2px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ffe08a; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 224, 138, 0.04); border-color: transparent; color: #ffe08a; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 224, 138, 0.16); border-color: transparent; color: #ffe08a; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #0e1315; background: #b09ce5; border: 1px solid #b09ce5; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #987edd; color: #0e1315; border-color: #987edd; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #dfd7f5; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #7f5fd5; color: #0e1315; border-color: #7f5fd5; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #b09ce5; border: 2px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(176, 156, 229, 0.04); color: #b09ce5; border: 2px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(176, 156, 229, 0.16); color: #b09ce5; border: 2px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #b09ce5; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(176, 156, 229, 0.04); border-color: transparent; color: #b09ce5; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(176, 156, 229, 0.16); border-color: transparent; color: #b09ce5; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #0e1315; background: #e693a9; border: 1px solid #e693a9; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #df7491; color: #0e1315; border-color: #df7491; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 1px #f5d4dd; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #d85678; color: #0e1315; border-color: #d85678; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #e693a9; border: 2px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(230, 147, 169, 0.04); color: #e693a9; border: 2px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(230, 147, 169, 0.16); color: #e693a9; border: 2px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #e693a9; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(230, 147, 169, 0.04); border-color: transparent; color: #e693a9; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(230, 147, 169, 0.16); border-color: transparent; color: #e693a9; } - .p-button.p-button-link { color: #7f93de; background: transparent; @@ -2556,7 +2444,6 @@ color: #7f93de; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2568,17 +2455,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2589,52 +2473,45 @@ background: #263238; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2712,7 +2589,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #b4bfcd; @@ -2741,7 +2617,6 @@ border-color: transparent; color: #b4bfcd; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #35a4cc; @@ -2770,7 +2645,6 @@ border-color: transparent; color: #35a4cc; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #cede9c; @@ -2799,7 +2673,6 @@ border-color: transparent; color: #cede9c; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ffe08a; @@ -2828,7 +2701,6 @@ border-color: transparent; color: #ffe08a; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #b09ce5; @@ -2857,7 +2729,6 @@ border-color: transparent; color: #b09ce5; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #e693a9; @@ -2886,9 +2757,8 @@ border-color: transparent; color: #e693a9; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -2899,13 +2769,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(158, 173, 230, 0.08); } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; @@ -2931,7 +2801,6 @@ background: rgba(158, 173, 230, 0.16); color: #9eade6; } - .p-datatable .p-paginator-top { border-width: 0 0 2px 0; border-radius: 0; @@ -3025,9 +2894,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -3037,17 +2906,17 @@ transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(158, 173, 230, 0.08); } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; @@ -3077,12 +2946,12 @@ background: #9eade6; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #161d21; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #161d21; } .p-datatable .p-datatable-loading-icon { @@ -3185,7 +3054,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 2px 0; border-radius: 0; @@ -3224,12 +3092,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3257,7 +3123,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3277,7 +3142,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-column-filter-overlay { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -3315,7 +3179,6 @@ border-top: 1px solid #263238; margin: 4px 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1.5rem; border-bottom: 0 none; @@ -3344,7 +3207,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3430,7 +3292,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: rgba(158, 173, 230, 0.08); } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3439,7 +3300,6 @@ background: #161d21; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: rgba(158, 173, 230, 0.08); color: rgba(255, 255, 255, 0.87); @@ -3478,7 +3338,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-paginator { background: #161d21; color: rgba(255, 255, 255, 0.6); @@ -3488,9 +3347,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: rgba(255, 255, 255, 0.6); @@ -3501,9 +3360,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: rgba(158, 173, 230, 0.08); border-color: transparent; color: rgba(255, 255, 255, 0.87); @@ -3560,7 +3419,6 @@ border-color: transparent; color: rgba(255, 255, 255, 0.87); } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3646,7 +3504,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: rgba(158, 173, 230, 0.08); } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3655,7 +3512,6 @@ background: #161d21; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #9eade6; border-radius: 50%; @@ -3667,20 +3523,19 @@ background-color: #263238; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 2px solid #263238; background: #161d21; @@ -3737,11 +3592,11 @@ color: #9eade6; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #9eade6; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #9eade6; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3814,7 +3669,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-treetable .p-paginator-top { border-width: 0 0 2px 0; border-radius: 0; @@ -3954,7 +3808,7 @@ background: #9eade6; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #161d21; } .p-treetable .p-treetable-loading-icon { @@ -4015,7 +3869,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #161d21; color: rgba(255, 255, 255, 0.6); @@ -4040,7 +3893,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 2px solid #263238; @@ -4113,7 +3965,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-card { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -4139,7 +3990,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #161d21; } @@ -4163,7 +4013,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 2px solid #263238; background: #161d21; @@ -4204,7 +4053,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 2px solid #263238; padding: 1rem; @@ -4271,7 +4119,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #263238; border: 0 none; @@ -4282,7 +4129,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-splitter { border: 2px solid #263238; background: #161d21; @@ -4304,7 +4150,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #263238; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.857rem; } @@ -4373,7 +4218,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #161d21; border: 2px solid #263238; @@ -4384,7 +4228,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -4432,7 +4275,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4505,7 +4347,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -4547,7 +4388,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #263238; } - .p-sidebar { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -4558,7 +4398,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: rgba(255, 255, 255, 0.6); @@ -4568,13 +4408,13 @@ transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: rgba(255, 255, 255, 0.87); border-color: transparent; background: rgba(158, 173, 230, 0.08); } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; @@ -4588,7 +4428,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #263238; color: rgba(255, 255, 255, 0.87); @@ -4608,7 +4447,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #263238; } - .p-fileupload .p-fileupload-buttonbar { background: #161d21; padding: 1rem; @@ -4648,7 +4486,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #8fa0e2; color: #121212; @@ -4659,7 +4496,6 @@ color: #121212; border-color: #7f93de; } - .p-breadcrumb { background: #161d21; border: 2px solid #263238; @@ -4691,7 +4527,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: rgba(255, 255, 255, 0.6); } - .p-contextmenu { padding: 0.5rem 0.5rem; background: #161d21; @@ -4739,7 +4574,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4753,7 +4588,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4764,7 +4599,7 @@ color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-contextmenu .p-menuitem-separator { @@ -4778,7 +4613,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4802,32 +4636,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4886,7 +4719,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4900,7 +4733,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4911,7 +4744,7 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-megamenu .p-megamenu-panel { @@ -4969,10 +4802,9 @@ color: rgba(255, 255, 255, 0.87); } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } - .p-menu { padding: 0.5rem 0.5rem; background: #161d21; @@ -5009,7 +4841,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5023,7 +4855,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5034,7 +4866,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menu.p-menu-overlay { @@ -5068,7 +4900,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #161d21; @@ -5107,7 +4938,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5138,7 +4969,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5152,7 +4983,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5163,7 +4994,7 @@ color: rgba(255, 255, 255, 0.87); } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-menubar .p-submenu-list { @@ -5180,7 +5011,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5355,7 +5185,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5369,7 +5199,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5380,7 +5210,7 @@ color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5420,7 +5250,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-slidemenu { padding: 0.5rem 0.5rem; background: #161d21; @@ -5463,7 +5292,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5477,7 +5306,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5488,7 +5317,7 @@ color: rgba(255, 255, 255, 0.87); } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-slidemenu.p-slidemenu-overlay { @@ -5535,7 +5364,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.3s; @@ -5580,7 +5408,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: transparent; border: 1px solid #263238; @@ -5651,7 +5478,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 1px #9eade6; } - .p-tieredmenu { padding: 0.5rem 0.5rem; background: #161d21; @@ -5702,7 +5528,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5716,7 +5542,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5727,7 +5553,7 @@ color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: rgba(255, 255, 255, 0.87); } .p-tieredmenu .p-menuitem-separator { @@ -5741,7 +5567,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.75rem; margin: 0; @@ -5797,7 +5622,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5886,7 +5710,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5937,7 +5760,7 @@ color: #0e1315; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #0e1315; } .p-toast .p-toast-message.p-toast-message-success { @@ -5947,7 +5770,7 @@ color: #0e1315; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #0e1315; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5957,7 +5780,7 @@ color: #0e1315; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #0e1315; } .p-toast .p-toast-message.p-toast-message-error { @@ -5967,10 +5790,9 @@ color: #0e1315; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #0e1315; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -6001,7 +5823,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6058,7 +5880,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f8f9fa; @@ -6068,7 +5890,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f8f9fa; } @@ -6077,29 +5899,23 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6123,7 +5939,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #263238; border-radius: 6px; @@ -6144,11 +5959,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #161d21; } - .p-badge { background: #9eade6; color: #121212; @@ -6190,7 +6003,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #263238; color: rgba(255, 255, 255, 0.87); @@ -6226,7 +6038,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.75rem; border-radius: 6px; @@ -6241,7 +6052,6 @@ outline-offset: 0; box-shadow: 0 0 0 1px #9eade6; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6257,7 +6067,6 @@ color: #121212; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6279,7 +6088,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: rgba(255, 255, 255, 0.06); border-radius: 6px; @@ -6287,7 +6095,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); } - .p-tag { background: #9eade6; color: #121212; @@ -6320,7 +6127,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #161d21; color: rgba(255, 255, 255, 0.87); @@ -6339,20 +6145,16 @@ .p-button .p-button-label { font-weight: 600; } - - .p-buttonset .p-button-label, -.p-togglebutton .p-button-label { + .p-button-group .p-button-label, + .p-togglebutton .p-button-label { font-weight: 400; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #9eade6; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #9eade6; } - .p-panel { border: 2px solid #263238; border-radius: 6px; @@ -6363,11 +6165,9 @@ .p-panel .p-panel-content { border: 0 none; } - .p-fieldset .p-fieldset-legend { border-color: transparent; } - .p-accordion .p-accordion-toggle-icon { order: 10; margin-left: auto; @@ -6385,7 +6185,6 @@ .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { border-bottom: 0 none; } - .p-inline-message.p-inline-message-info { border-color: #a3d7e6; } @@ -6398,39 +6197,30 @@ .p-inline-message.p-inline-message-error { border-color: #e6a3b2; } - .p-inputtext:enabled:focus { box-shadow: none; } - .p-dropdown:not(.p-disabled).p-focus { box-shadow: none; } - .p-multiselect:not(.p-disabled).p-focus { box-shadow: none; } - .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: none; } - .p-autocomplete.p-autocomplete-multiple:not(.p-disabled).p-focus { box-shadow: none; } - .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: none; } - .p-orderlist .p-orderlist-list { border-top: 0 none; } - .p-picklist .p-picklist-list { border-top: 0 none; } - .p-panelmenu .p-panelmenu-icon.pi-chevron-right, .p-panelmenu .p-panelmenu-icon.pi-chevron-down { order: 10; margin-left: auto; @@ -6449,7 +6239,6 @@ padding-bottom: calc(1rem + 2px); border-bottom: 0 none; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #9eade6; } diff --git a/src/assets/components/themes/viva-light/theme.css b/src/assets/components/themes/viva-light/theme.css index 1e1b0a3a47a..38e885c82a1 100644 --- a/src/assets/components/themes/viva-light/theme.css +++ b/src/assets/components/themes/viva-light/theme.css @@ -54,32 +54,28 @@ font-family: "Poppins"; font-style: normal; font-weight: 300; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-300.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-300.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* poppins-regular - latin-ext_latin */ @font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-regular.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-regular.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* poppins-600 - latin-ext_latin */ @font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-600.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-600.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-600.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* poppins-700 - latin-ext_latin */ @font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; - src: local(""), url("./fonts/poppins-v15-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-700.woff") format("woff"); - /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + src: local(""), url("./fonts/poppins-v15-latin-ext_latin-700.woff2") format("woff2"), url("./fonts/poppins-v15-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } :root { --blue-50:#f6fbfd; @@ -307,40 +303,32 @@ * { box-sizing: border-box; } - .p-component { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); font-size: 1rem; font-weight: normal; } - .p-component-overlay { background-color: rgba(0, 0, 0, 0.4); transition-duration: 0.3s; } - .p-disabled, .p-component:disabled { opacity: 0.6; } - .p-error { color: #f88c79; } - .p-text-secondary { color: #898989; } - .pi { font-size: 1rem; } - .p-icon { width: 1rem; height: 1rem; } - .p-link { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -352,15 +340,12 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-component-overlay-enter { animation: p-component-overlay-enter-animation 150ms forwards; } - .p-component-overlay-leave { animation: p-component-overlay-leave-animation 150ms forwards; } - @keyframes p-component-overlay-enter-animation { from { background-color: transparent; @@ -377,7 +362,6 @@ background-color: transparent; } } - .p-autocomplete .p-autocomplete-loader { right: 0.75rem; } @@ -424,7 +408,6 @@ .p-autocomplete.p-invalid.p-component > .p-inputtext { border-color: #f88c79; } - .p-autocomplete-panel { background: #ffffff; color: #6c6c6c; @@ -471,11 +454,9 @@ color: #6c6c6c; background: transparent; } - p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { border-color: #f88c79; } - p-autocomplete.p-autocomplete-clearable .p-inputtext { padding-right: 2.5rem; } @@ -483,23 +464,19 @@ color: #898989; right: 0.75rem; } - p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd .p-autocomplete-clear-icon { color: #898989; right: 3.607rem; } - p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { border-color: #f88c79; } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; border-color: #91a4e3; } - .p-datepicker { padding: 0.5rem; background: #ffffff; @@ -526,7 +503,7 @@ border-top-left-radius: 6px; } .p-datepicker .p-datepicker-header .p-datepicker-prev, -.p-datepicker .p-datepicker-header .p-datepicker-next { + .p-datepicker .p-datepicker-header .p-datepicker-next { width: 2rem; height: 2rem; color: #898989; @@ -536,13 +513,13 @@ transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { color: #6c6c6c; border-color: transparent; background: #edf0fa; } .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, -.p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { + .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; @@ -551,14 +528,14 @@ line-height: 2rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { color: #6c6c6c; transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; font-weight: 600; padding: 0.5rem; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, -.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { + .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { color: #5472d4; } .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { @@ -707,7 +684,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - p-calendar.p-calendar-clearable .p-inputtext { padding-right: 2.5rem; } @@ -715,12 +691,10 @@ color: #898989; right: 0.75rem; } - p-calendar.p-calendar-clearable .p-calendar-w-btn .p-calendar-clear-icon { color: #898989; right: 3.607rem; } - @media screen and (max-width: 769px) { .p-datepicker table th, .p-datepicker table td { padding: 0; @@ -763,7 +737,6 @@ .p-cascadeselect.p-invalid.p-component { border-color: #f88c79; } - .p-cascadeselect-panel { background: #ffffff; color: #6c6c6c; @@ -803,7 +776,6 @@ .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { font-size: 0.875rem; } - .p-input-filled .p-cascadeselect { background: #f2f2f2; } @@ -813,11 +785,9 @@ .p-input-filled .p-cascadeselect:not(.p-disabled).p-focus { background-color: #f2f2f2; } - p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect { border-color: #f88c79; } - p-cascadeselect.p-cascadeselect-clearable .p-cascadeselect-label { padding-right: 0.75rem; } @@ -825,7 +795,6 @@ color: #898989; right: 2.857rem; } - .p-overlay-modal .p-cascadeselect-sublist .p-cascadeselect-panel { box-shadow: none; border-radius: 0; @@ -834,7 +803,6 @@ .p-overlay-modal .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon { transform: rotate(90deg); } - .p-checkbox { width: 20px; height: 20px; @@ -875,11 +843,9 @@ background: #3c5ece; color: #ffffff; } - p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f88c79; } - .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f2f2f2; } @@ -892,15 +858,12 @@ .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3c5ece; } - .p-checkbox-label { margin-left: 0.5rem; } - p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box { border-color: #f88c79; } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { border-color: #cecece; } @@ -939,11 +902,9 @@ padding: 0; margin: 0; } - p-chips.ng-dirty.ng-invalid > .p-chips > .p-inputtext { border-color: #f88c79; } - p-chips.p-chips-clearable .p-inputtext { padding-right: 1.75rem; } @@ -951,26 +912,22 @@ color: #898989; right: 0.75rem; } - .p-colorpicker-preview, -.p-fluid .p-colorpicker-preview.p-inputtext { + .p-fluid .p-colorpicker-preview.p-inputtext { width: 2rem; height: 2rem; } - .p-colorpicker-panel { background: #585858; border: 1px solid #585858; } .p-colorpicker-panel .p-colorpicker-color-handle, -.p-colorpicker-panel .p-colorpicker-hue-handle { + .p-colorpicker-panel .p-colorpicker-hue-handle { border-color: #ffffff; } - .p-colorpicker-overlay-panel { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } - .p-dropdown { background: #ffffff; border: 2px solid #e1e1e1; @@ -1014,7 +971,6 @@ .p-dropdown.p-invalid.p-component { border-color: #f88c79; } - .p-dropdown-panel { background: #ffffff; color: #6c6c6c; @@ -1078,7 +1034,6 @@ color: #6c6c6c; background: transparent; } - .p-input-filled .p-dropdown { background: #f2f2f2; } @@ -1091,11 +1046,9 @@ .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext { background-color: transparent; } - p-dropdown.ng-dirty.ng-invalid > .p-dropdown { border-color: #f88c79; } - .p-inputgroup-addon { background: #f5f5f5; color: #898989; @@ -1108,68 +1061,60 @@ .p-inputgroup-addon:last-child { border-right: 2px solid #e1e1e1; } - .p-inputgroup > .p-component, -.p-inputgroup > .p-inputwrapper > .p-inputtext, -.p-inputgroup > .p-float-label > .p-component { + .p-inputgroup > .p-inputwrapper > .p-inputtext, + .p-inputgroup > .p-float-label > .p-component { border-radius: 0; margin: 0; } .p-inputgroup > .p-component + .p-inputgroup-addon, -.p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, -.p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { + .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, + .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { border-left: 0 none; } .p-inputgroup > .p-component:focus, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus, -.p-inputgroup > .p-float-label > .p-component:focus { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, + .p-inputgroup > .p-float-label > .p-component:focus { z-index: 1; } .p-inputgroup > .p-component:focus ~ label, -.p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, -.p-inputgroup > .p-float-label > .p-component:focus ~ label { + .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, + .p-inputgroup > .p-float-label > .p-component:focus ~ label { z-index: 1; } - .p-inputgroup-addon:first-child, -.p-inputgroup button:first-child, -.p-inputgroup input:first-child, -.p-inputgroup > .p-inputwrapper:first-child > .p-component, -.p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { + .p-inputgroup button:first-child, + .p-inputgroup input:first-child, + .p-inputgroup > .p-inputwrapper:first-child > .p-component, + .p-inputgroup > .p-inputwrapper:first-child > .p-component > .p-inputtext { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup .p-float-label:first-child input { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - .p-inputgroup-addon:last-child, -.p-inputgroup button:last-child, -.p-inputgroup input:last-child, -.p-inputgroup > .p-inputwrapper:last-child > .p-component, -.p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { + .p-inputgroup button:last-child, + .p-inputgroup input:last-child, + .p-inputgroup > .p-inputwrapper:last-child > .p-component, + .p-inputgroup > .p-inputwrapper:last-child > .p-component > .p-inputtext { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputgroup .p-float-label:last-child input { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-fluid .p-inputgroup .p-button { width: auto; } .p-fluid .p-inputgroup .p-button.p-button-icon-only { width: 2.857rem; } - p-inputmask.ng-dirty.ng-invalid > .p-inputtext { border-color: #f88c79; } - p-inputmask.p-inputmask-clearable .p-inputtext { padding-right: 2.5rem; } @@ -1177,11 +1122,9 @@ color: #898989; right: 0.75rem; } - p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext { border-color: #f88c79; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-input { padding-right: 2.5rem; } @@ -1189,14 +1132,12 @@ color: #898989; right: 0.75rem; } - p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-stacked .p-inputnumber-clear-icon { right: 3.607rem; } p-inputnumber.p-inputnumber-clearable .p-inputnumber-buttons-horizontal .p-inputnumber-clear-icon { right: 3.607rem; } - .p-inputswitch { width: 3rem; height: 1.75rem; @@ -1235,11 +1176,9 @@ .p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { background: #4868d1; } - p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch > .p-inputswitch-slider { border-color: #f88c79; } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -1272,57 +1211,45 @@ font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-float-label > label { left: 0.75rem; color: #898989; transition-duration: 0.3s; } - .p-float-label > .ng-invalid.ng-dirty + label { color: #f88c79; } - .p-input-icon-left > .p-icon-wrapper.p-icon, -.p-input-icon-left > i:first-of-type { + .p-input-icon-left > i:first-of-type { left: 0.75rem; color: #898989; } - .p-input-icon-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > .p-icon-wrapper, -.p-input-icon-right > i:last-of-type { + .p-input-icon-right > i:last-of-type { right: 0.75rem; color: #898989; } - .p-input-icon-right > .p-inputtext { padding-right: 2.5rem; } - ::-webkit-input-placeholder { color: #898989; } - :-moz-placeholder { color: #898989; } - ::-moz-placeholder { color: #898989; } - :-ms-input-placeholder { color: #898989; } - .p-input-filled .p-inputtext { background-color: #f2f2f2; } @@ -1332,17 +1259,14 @@ .p-input-filled .p-inputtext:enabled:focus { background-color: #f2f2f2; } - .p-inputtext-sm .p-inputtext { font-size: 0.875rem; padding: 0.4375rem 0.65625rem; } - .p-inputtext-lg .p-inputtext { font-size: 1.25rem; padding: 0.625rem 0.9375rem; } - .p-listbox { background: #ffffff; color: #6c6c6c; @@ -1417,11 +1341,9 @@ box-shadow: 0 0 0 0.1rem #bbc7ee; border-color: #91a4e3; } - p-listbox.ng-dirty.ng-invalid > .p-listbox { border-color: #f88c79; } - .p-multiselect { background: #ffffff; border: 2px solid #e1e1e1; @@ -1461,11 +1383,9 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { padding: 0.25rem 0.75rem; } - .p-multiselect-clearable .p-multiselect-label-container { padding-right: 1.75rem; } @@ -1473,7 +1393,6 @@ color: #898989; right: 2.857rem; } - .p-multiselect-panel { background: #ffffff; color: #6c6c6c; @@ -1562,7 +1481,6 @@ color: #6c6c6c; background: transparent; } - .p-input-filled .p-multiselect { background: #f2f2f2; } @@ -1572,15 +1490,12 @@ .p-input-filled .p-multiselect:not(.p-disabled).p-focus { background-color: #f2f2f2; } - p-multiselect.ng-dirty.ng-invalid > .p-multiselect { border-color: #f88c79; } - p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext { border-color: #f88c79; } - .p-password-panel { padding: 1rem; background: #ffffff; @@ -1602,7 +1517,6 @@ .p-password-panel .p-password-meter .p-password-strength.strong { background: #8bae2c; } - p-password.p-password-clearable .p-password-input { padding-right: 2.5rem; } @@ -1610,7 +1524,6 @@ color: #898989; right: 0.75rem; } - p-password.p-password-clearable.p-password-mask .p-password-input { padding-right: 4.25rem; } @@ -1618,7 +1531,6 @@ color: #898989; right: 2.5rem; } - .p-radiobutton { width: 20px; height: 20px; @@ -1656,11 +1568,9 @@ background: #3c5ece; color: #ffffff; } - p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box { border-color: #f88c79; } - .p-input-filled .p-radiobutton .p-radiobutton-box { background-color: #f2f2f2; } @@ -1673,11 +1583,9 @@ .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { background: #3c5ece; } - .p-radiobutton-label { margin-left: 0.5rem; } - .p-rating { gap: 0.5rem; } @@ -1708,7 +1616,6 @@ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { color: #f88c79; } - .p-selectbutton .p-button { background: #ffffff; border: 2px solid #e1e1e1; @@ -1716,7 +1623,7 @@ transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; } .p-selectbutton .p-button .p-button-icon-left, -.p-selectbutton .p-button .p-button-icon-right { + .p-selectbutton .p-button .p-button-icon-right { color: #898989; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1725,7 +1632,7 @@ color: #6c6c6c; } .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #898989; } .p-selectbutton .p-button.p-highlight { @@ -1734,7 +1641,7 @@ color: #585858; } .p-selectbutton .p-button.p-highlight .p-button-icon-left, -.p-selectbutton .p-button.p-highlight .p-button-icon-right { + .p-selectbutton .p-button.p-highlight .p-button-icon-right { color: #585858; } .p-selectbutton .p-button.p-highlight:hover { @@ -1743,14 +1650,12 @@ color: #585858; } .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, -.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { color: #585858; } - p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button { border-color: #f88c79; } - .p-slider { background: #ebebeb; border: 0 none; @@ -1802,7 +1707,6 @@ .p-slider.p-slider-animate.p-slider-vertical .p-slider-range { transition: height 0.3s; } - .p-togglebutton.p-button { background: #ffffff; border: 2px solid #e1e1e1; @@ -1810,7 +1714,7 @@ transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; } .p-togglebutton.p-button .p-button-icon-left, -.p-togglebutton.p-button .p-button-icon-right { + .p-togglebutton.p-button .p-button-icon-right { color: #898989; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { @@ -1819,7 +1723,7 @@ color: #6c6c6c; } .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, -.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { + .p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { color: #898989; } .p-togglebutton.p-button.p-highlight { @@ -1828,7 +1732,7 @@ color: #585858; } .p-togglebutton.p-button.p-highlight .p-button-icon-left, -.p-togglebutton.p-button.p-highlight .p-button-icon-right { + .p-togglebutton.p-button.p-highlight .p-button-icon-right { color: #585858; } .p-togglebutton.p-button.p-highlight:hover { @@ -1837,14 +1741,12 @@ color: #585858; } .p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, -.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + .p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { color: #585858; } - p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button { border-color: #f88c79; } - .p-treeselect { background: #ffffff; border: 2px solid #e1e1e1; @@ -1881,15 +1783,12 @@ border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - p-treeselect.ng-invalid.ng-dirty > .p-treeselect { border-color: #f88c79; } - .p-inputwrapper-filled .p-treeselect.p-treeselect-chip .p-treeselect-label { padding: 0.25rem 0.75rem; } - .p-treeselect-panel { background: #ffffff; color: #6c6c6c; @@ -1949,7 +1848,6 @@ color: #6c6c6c; background: transparent; } - .p-input-filled .p-treeselect { background: #f2f2f2; } @@ -1959,7 +1857,6 @@ .p-input-filled .p-treeselect:not(.p-disabled).p-focus { background-color: #f2f2f2; } - p-treeselect.p-treeselect-clearable .p-treeselect-label-container { padding-right: 1.75rem; } @@ -1967,7 +1864,6 @@ color: #898989; right: 2.857rem; } - .p-button { color: #ffffff; background: #5472d4; @@ -2079,7 +1975,7 @@ padding: 0.5rem 0; } .p-button.p-button-icon-only .p-button-icon-left, -.p-button.p-button-icon-only .p-button-icon-right { + .p-button.p-button-icon-only .p-button-icon-right { margin: 0; } .p-button.p-button-icon-only.p-button-rounded { @@ -2106,434 +2002,426 @@ .p-button.p-button-loading-label-only .p-button-loading-icon { margin-right: 0; } - .p-fluid .p-button { width: 100%; } - .p-fluid .p-button-icon-only { + .p-fluid .p-button-group .p-button-icon-only { width: 2.857rem; } - .p-fluid .p-buttonset { + .p-fluid .p-button-group { display: flex; } - .p-fluid .p-buttonset .p-button { + .p-fluid .p-button-group .p-button { flex: 1; } - .p-button.p-button-secondary, -.p-buttonset.p-button-secondary > .p-button, -.p-splitbutton.p-button-secondary > .p-button { + .p-button-group.p-button-secondary > .p-button, + .p-splitbutton.p-button-secondary > .p-button { color: #ffffff; background: #8191a6; border: 1px solid #8191a6; } .p-button.p-button-secondary:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover { background: #70829a; color: #ffffff; border-color: #70829a; } .p-button.p-button-secondary:not(:disabled):focus, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { + .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #cdd3db; } .p-button.p-button-secondary:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active { background: #62738a; color: #ffffff; border-color: #62738a; } .p-button.p-button-secondary.p-button-outlined, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined { + .p-button-group.p-button-secondary > .p-button.p-button-outlined, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined { background-color: transparent; color: #8191a6; border: 2px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(129, 145, 166, 0.04); color: #8191a6; border: 2px solid; } .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active { background: rgba(129, 145, 166, 0.16); color: #8191a6; border: 2px solid; } .p-button.p-button-secondary.p-button-text, -.p-buttonset.p-button-secondary > .p-button.p-button-text, -.p-splitbutton.p-button-secondary > .p-button.p-button-text { + .p-button-group.p-button-secondary > .p-button.p-button-text, + .p-splitbutton.p-button-secondary > .p-button.p-button-text { background-color: transparent; color: #8191a6; border-color: transparent; } .p-button.p-button-secondary.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover { background: rgba(129, 145, 166, 0.04); border-color: transparent; color: #8191a6; } .p-button.p-button-secondary.p-button-text:not(:disabled):active, -.p-buttonset.p-button-secondary > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active { background: rgba(129, 145, 166, 0.16); border-color: transparent; color: #8191a6; } - .p-button.p-button-info, -.p-buttonset.p-button-info > .p-button, -.p-splitbutton.p-button-info > .p-button { + .p-button-group.p-button-info > .p-button, + .p-splitbutton.p-button-info > .p-button { color: #ffffff; background: #35a4cc; border: 1px solid #35a4cc; } .p-button.p-button-info:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button:not(:disabled):hover { + .p-button-group.p-button-info > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button:not(:disabled):hover { background: #2f94b9; color: #ffffff; border-color: #2f94b9; } .p-button.p-button-info:not(:disabled):focus, -.p-buttonset.p-button-info > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-info > .p-button:not(:disabled):focus { + .p-button-group.p-button-info > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-info > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #aedbeb; } .p-button.p-button-info:not(:disabled):active, -.p-buttonset.p-button-info > .p-button:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button:not(:disabled):active { + .p-button-group.p-button-info > .p-button:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button:not(:disabled):active { background: #2984a4; color: #ffffff; border-color: #2984a4; } .p-button.p-button-info.p-button-outlined, -.p-buttonset.p-button-info > .p-button.p-button-outlined, -.p-splitbutton.p-button-info > .p-button.p-button-outlined { + .p-button-group.p-button-info > .p-button.p-button-outlined, + .p-splitbutton.p-button-info > .p-button.p-button-outlined { background-color: transparent; color: #35a4cc; border: 2px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(53, 164, 204, 0.04); color: #35a4cc; border: 2px solid; } .p-button.p-button-info.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active { background: rgba(53, 164, 204, 0.16); color: #35a4cc; border: 2px solid; } .p-button.p-button-info.p-button-text, -.p-buttonset.p-button-info > .p-button.p-button-text, -.p-splitbutton.p-button-info > .p-button.p-button-text { + .p-button-group.p-button-info > .p-button.p-button-text, + .p-splitbutton.p-button-info > .p-button.p-button-text { background-color: transparent; color: #35a4cc; border-color: transparent; } .p-button.p-button-info.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover { background: rgba(53, 164, 204, 0.04); border-color: transparent; color: #35a4cc; } .p-button.p-button-info.p-button-text:not(:disabled):active, -.p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active { background: rgba(53, 164, 204, 0.16); border-color: transparent; color: #35a4cc; } - .p-button.p-button-success, -.p-buttonset.p-button-success > .p-button, -.p-splitbutton.p-button-success > .p-button { + .p-button-group.p-button-success > .p-button, + .p-splitbutton.p-button-success > .p-button { color: #ffffff; background: #8bae2c; border: 1px solid #8bae2c; } .p-button.p-button-success:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button:not(:disabled):hover { + .p-button-group.p-button-success > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button:not(:disabled):hover { background: #7d9d28; color: #ffffff; border-color: #7d9d28; } .p-button.p-button-success:not(:disabled):focus, -.p-buttonset.p-button-success > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-success > .p-button:not(:disabled):focus { + .p-button-group.p-button-success > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-success > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #d5e7a2; } .p-button.p-button-success:not(:disabled):active, -.p-buttonset.p-button-success > .p-button:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button:not(:disabled):active { + .p-button-group.p-button-success > .p-button:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button:not(:disabled):active { background: #6f8b23; color: #ffffff; border-color: #6f8b23; } .p-button.p-button-success.p-button-outlined, -.p-buttonset.p-button-success > .p-button.p-button-outlined, -.p-splitbutton.p-button-success > .p-button.p-button-outlined { + .p-button-group.p-button-success > .p-button.p-button-outlined, + .p-splitbutton.p-button-success > .p-button.p-button-outlined { background-color: transparent; color: #8bae2c; border: 2px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(139, 174, 44, 0.04); color: #8bae2c; border: 2px solid; } .p-button.p-button-success.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active { background: rgba(139, 174, 44, 0.16); color: #8bae2c; border: 2px solid; } .p-button.p-button-success.p-button-text, -.p-buttonset.p-button-success > .p-button.p-button-text, -.p-splitbutton.p-button-success > .p-button.p-button-text { + .p-button-group.p-button-success > .p-button.p-button-text, + .p-splitbutton.p-button-success > .p-button.p-button-text { background-color: transparent; color: #8bae2c; border-color: transparent; } .p-button.p-button-success.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover { background: rgba(139, 174, 44, 0.04); border-color: transparent; color: #8bae2c; } .p-button.p-button-success.p-button-text:not(:disabled):active, -.p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active { background: rgba(139, 174, 44, 0.16); border-color: transparent; color: #8bae2c; } - .p-button.p-button-warning, -.p-buttonset.p-button-warning > .p-button, -.p-splitbutton.p-button-warning > .p-button { + .p-button-group.p-button-warning > .p-button, + .p-splitbutton.p-button-warning > .p-button { color: #ffffff; background: #ff922a; border: 1px solid #ff922a; } .p-button.p-button-warning:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover { background: #ff830c; color: #ffffff; border-color: #ff830c; } .p-button.p-button-warning:not(:disabled):focus, -.p-buttonset.p-button-warning > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { + .p-button-group.p-button-warning > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #ffd3aa; } .p-button.p-button-warning:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button:not(:disabled):active { + .p-button-group.p-button-warning > .p-button:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button:not(:disabled):active { background: #ee7400; color: #ffffff; border-color: #ee7400; } .p-button.p-button-warning.p-button-outlined, -.p-buttonset.p-button-warning > .p-button.p-button-outlined, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined { + .p-button-group.p-button-warning > .p-button.p-button-outlined, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined { background-color: transparent; color: #ff922a; border: 2px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(255, 146, 42, 0.04); color: #ff922a; border: 2px solid; } .p-button.p-button-warning.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active { background: rgba(255, 146, 42, 0.16); color: #ff922a; border: 2px solid; } .p-button.p-button-warning.p-button-text, -.p-buttonset.p-button-warning > .p-button.p-button-text, -.p-splitbutton.p-button-warning > .p-button.p-button-text { + .p-button-group.p-button-warning > .p-button.p-button-text, + .p-splitbutton.p-button-warning > .p-button.p-button-text { background-color: transparent; color: #ff922a; border-color: transparent; } .p-button.p-button-warning.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover { background: rgba(255, 146, 42, 0.04); border-color: transparent; color: #ff922a; } .p-button.p-button-warning.p-button-text:not(:disabled):active, -.p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active { background: rgba(255, 146, 42, 0.16); border-color: transparent; color: #ff922a; } - .p-button.p-button-help, -.p-buttonset.p-button-help > .p-button, -.p-splitbutton.p-button-help > .p-button { + .p-button-group.p-button-help > .p-button, + .p-splitbutton.p-button-help > .p-button { color: #ffffff; background: #7654d4; border: 1px solid #7654d4; } .p-button.p-button-help:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button:not(:disabled):hover { + .p-button-group.p-button-help > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button:not(:disabled):hover { background: #633cce; color: #ffffff; border-color: #633cce; } .p-button.p-button-help:not(:disabled):focus, -.p-buttonset.p-button-help > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-help > .p-button:not(:disabled):focus { + .p-button-group.p-button-help > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-help > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #c8bbee; } .p-button.p-button-help:not(:disabled):active, -.p-buttonset.p-button-help > .p-button:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button:not(:disabled):active { + .p-button-group.p-button-help > .p-button:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button:not(:disabled):active { background: #5530bd; color: #ffffff; border-color: #5530bd; } .p-button.p-button-help.p-button-outlined, -.p-buttonset.p-button-help > .p-button.p-button-outlined, -.p-splitbutton.p-button-help > .p-button.p-button-outlined { + .p-button-group.p-button-help > .p-button.p-button-outlined, + .p-splitbutton.p-button-help > .p-button.p-button-outlined { background-color: transparent; color: #7654d4; border: 2px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(118, 84, 212, 0.04); color: #7654d4; border: 2px solid; } .p-button.p-button-help.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active { background: rgba(118, 84, 212, 0.16); color: #7654d4; border: 2px solid; } .p-button.p-button-help.p-button-text, -.p-buttonset.p-button-help > .p-button.p-button-text, -.p-splitbutton.p-button-help > .p-button.p-button-text { + .p-button-group.p-button-help > .p-button.p-button-text, + .p-splitbutton.p-button-help > .p-button.p-button-text { background-color: transparent; color: #7654d4; border-color: transparent; } .p-button.p-button-help.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover { background: rgba(118, 84, 212, 0.04); border-color: transparent; color: #7654d4; } .p-button.p-button-help.p-button-text:not(:disabled):active, -.p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active { background: rgba(118, 84, 212, 0.16); border-color: transparent; color: #7654d4; } - .p-button.p-button-danger, -.p-buttonset.p-button-danger > .p-button, -.p-splitbutton.p-button-danger > .p-button { + .p-button-group.p-button-danger > .p-button, + .p-splitbutton.p-button-danger > .p-button { color: #ffffff; background: #d45472; border: 1px solid #d45472; } .p-button.p-button-danger:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover { background: #ce3c5e; color: #ffffff; border-color: #ce3c5e; } .p-button.p-button-danger:not(:disabled):focus, -.p-buttonset.p-button-danger > .p-button:not(:disabled):focus, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { + .p-button-group.p-button-danger > .p-button:not(:disabled):focus, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus { box-shadow: 0 0 0 0.1rem #eebbc7; } .p-button.p-button-danger:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button:not(:disabled):active { + .p-button-group.p-button-danger > .p-button:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button:not(:disabled):active { background: #bd3051; color: #ffffff; border-color: #bd3051; } .p-button.p-button-danger.p-button-outlined, -.p-buttonset.p-button-danger > .p-button.p-button-outlined, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined { + .p-button-group.p-button-danger > .p-button.p-button-outlined, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined { background-color: transparent; color: #d45472; border: 2px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover { background: rgba(212, 84, 114, 0.04); color: #d45472; border: 2px solid; } .p-button.p-button-danger.p-button-outlined:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active { background: rgba(212, 84, 114, 0.16); color: #d45472; border: 2px solid; } .p-button.p-button-danger.p-button-text, -.p-buttonset.p-button-danger > .p-button.p-button-text, -.p-splitbutton.p-button-danger > .p-button.p-button-text { + .p-button-group.p-button-danger > .p-button.p-button-text, + .p-splitbutton.p-button-danger > .p-button.p-button-text { background-color: transparent; color: #d45472; border-color: transparent; } .p-button.p-button-danger.p-button-text:not(:disabled):hover, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover { background: rgba(212, 84, 114, 0.04); border-color: transparent; color: #d45472; } .p-button.p-button-danger.p-button-text:not(:disabled):active, -.p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, -.p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { + .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, + .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active { background: rgba(212, 84, 114, 0.16); border-color: transparent; color: #d45472; } - .p-button.p-button-link { color: #3c5ece; background: transparent; @@ -2557,7 +2445,6 @@ color: #3c5ece; border-color: transparent; } - .p-speeddial-button.p-button.p-button-icon-only { width: 4rem; height: 4rem; @@ -2569,17 +2456,14 @@ width: 1.3rem; height: 1.3rem; } - .p-speeddial-list { outline: 0 none; } - .p-speeddial-item.p-focus > .p-speeddial-action { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-speeddial-action { width: 3rem; height: 3rem; @@ -2590,52 +2474,45 @@ background: #585858; color: #fff; } - .p-speeddial-direction-up .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-up .p-speeddial-item:first-child { margin-bottom: 0.5rem; } - .p-speeddial-direction-down .p-speeddial-item { margin: 0.25rem 0; } .p-speeddial-direction-down .p-speeddial-item:first-child { margin-top: 0.5rem; } - .p-speeddial-direction-left .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-left .p-speeddial-item:first-child { margin-right: 0.5rem; } - .p-speeddial-direction-right .p-speeddial-item { margin: 0 0.25rem; } .p-speeddial-direction-right .p-speeddial-item:first-child { margin-left: 0.5rem; } - .p-speeddial-circle .p-speeddial-item, -.p-speeddial-semi-circle .p-speeddial-item, -.p-speeddial-quarter-circle .p-speeddial-item { + .p-speeddial-semi-circle .p-speeddial-item, + .p-speeddial-quarter-circle .p-speeddial-item { margin: 0; } .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, -.p-speeddial-semi-circle .p-speeddial-item:first-child, -.p-speeddial-semi-circle .p-speeddial-item:last-child, -.p-speeddial-quarter-circle .p-speeddial-item:first-child, -.p-speeddial-quarter-circle .p-speeddial-item:last-child { + .p-speeddial-semi-circle .p-speeddial-item:first-child, + .p-speeddial-semi-circle .p-speeddial-item:last-child, + .p-speeddial-quarter-circle .p-speeddial-item:first-child, + .p-speeddial-quarter-circle .p-speeddial-item:last-child { margin: 0; } - .p-speeddial-mask { background-color: rgba(0, 0, 0, 0.4); } - .p-splitbutton { border-radius: 6px; } @@ -2713,7 +2590,6 @@ .p-splitbutton.p-button-lg > .p-button .p-button-icon { font-size: 1.25rem; } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { background-color: transparent; color: #8191a6; @@ -2742,7 +2618,6 @@ border-color: transparent; color: #8191a6; } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { background-color: transparent; color: #35a4cc; @@ -2771,7 +2646,6 @@ border-color: transparent; color: #35a4cc; } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { background-color: transparent; color: #8bae2c; @@ -2800,7 +2674,6 @@ border-color: transparent; color: #8bae2c; } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { background-color: transparent; color: #ff922a; @@ -2829,7 +2702,6 @@ border-color: transparent; color: #ff922a; } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { background-color: transparent; color: #7654d4; @@ -2858,7 +2730,6 @@ border-color: transparent; color: #7654d4; } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { background-color: transparent; color: #d45472; @@ -2887,9 +2758,8 @@ border-color: transparent; color: #d45472; } - .p-carousel .p-carousel-content .p-carousel-prev, -.p-carousel .p-carousel-content .p-carousel-next { + .p-carousel .p-carousel-content .p-carousel-next { width: 2rem; height: 2rem; color: #898989; @@ -2900,13 +2770,13 @@ margin: 0.5rem; } .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, -.p-carousel .p-carousel-content .p-carousel-next:enabled:hover { + .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { color: #6c6c6c; border-color: transparent; background: #edf0fa; } .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, -.p-carousel .p-carousel-content .p-carousel-next:focus-visible { + .p-carousel .p-carousel-content .p-carousel-next:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; @@ -2932,7 +2802,6 @@ background: #ced6f1; color: #585858; } - .p-datatable .p-paginator-top { border-width: 0 0 2px 0; border-radius: 0; @@ -3026,9 +2895,9 @@ padding: 1rem 1rem; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { width: 2rem; height: 2rem; color: #898989; @@ -3038,17 +2907,17 @@ transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { color: #6c6c6c; border-color: transparent; background: #edf0fa; } .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, -.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, + .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; @@ -3078,12 +2947,12 @@ background: #5472d4; } .p-datatable .p-datatable-scrollable-header, -.p-datatable .p-datatable-scrollable-footer { + .p-datatable .p-datatable-scrollable-footer { background: #ffffff; } .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, -.p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-thead, + .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table > .p-datatable-tfoot { background-color: #ffffff; } .p-datatable .p-datatable-loading-icon { @@ -3186,7 +3055,6 @@ .p-datatable.p-datatable-lg .p-datatable-footer { padding: 1.25rem 1.25rem; } - .p-dataview .p-paginator-top { border-width: 0 0 2px 0; border-radius: 0; @@ -3225,12 +3093,10 @@ .p-dataview .p-dataview-emptymessage { padding: 1rem; } - .p-column-filter-row .p-column-filter-menu-button, -.p-column-filter-row .p-column-filter-clear-button { + .p-column-filter-row .p-column-filter-clear-button { margin-left: 0.5rem; } - .p-column-filter-menu-button { width: 2rem; height: 2rem; @@ -3258,7 +3124,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-column-filter-clear-button { width: 2rem; height: 2rem; @@ -3278,7 +3143,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-column-filter-overlay { background: #ffffff; color: #6c6c6c; @@ -3316,7 +3180,6 @@ border-top: 1px solid #ebebeb; margin: 4px 0; } - .p-column-filter-overlay-menu .p-column-filter-operator { padding: 0.5rem 1.5rem; border-bottom: 0 none; @@ -3345,7 +3208,6 @@ .p-column-filter-overlay-menu .p-column-filter-buttonbar { padding: 1rem; } - .p-orderlist .p-orderlist-controls { padding: 1rem; } @@ -3431,7 +3293,6 @@ .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { background: #edf0fa; } - .p-orderlist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3440,7 +3301,6 @@ background: #ffffff; margin: 0; } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { background: #edf0fa; color: #6c6c6c; @@ -3479,7 +3339,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-paginator { background: #ffffff; color: #898989; @@ -3489,9 +3348,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first, -.p-paginator .p-paginator-prev, -.p-paginator .p-paginator-next, -.p-paginator .p-paginator-last { + .p-paginator .p-paginator-prev, + .p-paginator .p-paginator-next, + .p-paginator .p-paginator-last { background-color: transparent; border: 0 none; color: #898989; @@ -3502,9 +3361,9 @@ border-radius: 6px; } .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, -.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { + .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, + .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { background: #edf0fa; border-color: transparent; color: #6c6c6c; @@ -3561,7 +3420,6 @@ border-color: transparent; color: #6c6c6c; } - .p-picklist .p-picklist-buttons { padding: 1rem; } @@ -3647,7 +3505,6 @@ .p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(even):hover { background: #edf0fa; } - .p-picklist-item.cdk-drag-preview { padding: 0.5rem 1rem; box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); @@ -3656,7 +3513,6 @@ background: #ffffff; margin: 0; } - .p-timeline .p-timeline-event-marker { border: 2px solid #5472d4; border-radius: 50%; @@ -3668,20 +3524,19 @@ background-color: #ebebeb; } .p-timeline.p-timeline-vertical .p-timeline-event-opposite, -.p-timeline.p-timeline-vertical .p-timeline-event-content { + .p-timeline.p-timeline-vertical .p-timeline-event-content { padding: 0 1rem; } .p-timeline.p-timeline-vertical .p-timeline-event-connector { width: 2px; } .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, -.p-timeline.p-timeline-horizontal .p-timeline-event-content { + .p-timeline.p-timeline-horizontal .p-timeline-event-content { padding: 1rem 0; } .p-timeline.p-timeline-horizontal .p-timeline-event-connector { height: 2px; } - .p-tree { border: 2px solid #ebebeb; background: #ffffff; @@ -3738,11 +3593,11 @@ color: #585858; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { color: #585858; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, -.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { + .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { color: #585858; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { @@ -3815,7 +3670,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-treetable .p-paginator-top { border-width: 0 0 2px 0; border-radius: 0; @@ -3955,7 +3809,7 @@ background: #5472d4; } .p-treetable .p-treetable-scrollable-header, -.p-treetable .p-treetable-scrollable-footer { + .p-treetable .p-treetable-scrollable-footer { background: #ffffff; } .p-treetable .p-treetable-loading-icon { @@ -4016,7 +3870,6 @@ .p-treetable.p-treetable-lg .p-treetable-footer { padding: 1.25rem 1.25rem; } - .p-virtualscroller .p-virtualscroller-header { background: #ffffff; color: #6c6c6c; @@ -4041,7 +3894,6 @@ border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } - .p-accordion .p-accordion-header .p-accordion-header-link { padding: 1rem; border: 2px solid #ebebeb; @@ -4114,7 +3966,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-card { background: #ffffff; color: #6c6c6c; @@ -4140,7 +3991,6 @@ .p-card .p-card-footer { padding: 1rem 0 0 0; } - .p-divider .p-divider-content { background-color: #ffffff; } @@ -4164,7 +4014,6 @@ .p-divider.p-divider-vertical .p-divider-content { padding: 0.5rem 0; } - .p-fieldset { border: 2px solid #ebebeb; background: #ffffff; @@ -4205,7 +4054,6 @@ .p-fieldset .p-fieldset-content { padding: 1rem; } - .p-panel .p-panel-header { border: 2px solid #ebebeb; padding: 1rem; @@ -4272,7 +4120,6 @@ width: 100%; text-align: center; } - .p-scrollpanel .p-scrollpanel-bar { background: #f5f5f5; border: 0 none; @@ -4283,7 +4130,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-splitter { border: 2px solid #ebebeb; background: #ffffff; @@ -4305,7 +4151,6 @@ .p-splitter .p-splitter-gutter-resizing { background: #ebebeb; } - .p-tabview .p-tabview-nav-content { scroll-padding-inline: 2.857rem; } @@ -4374,7 +4219,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-toolbar { background: #ffffff; border: 2px solid #ebebeb; @@ -4385,7 +4229,6 @@ .p-toolbar .p-toolbar-separator { margin: 0 0.5rem; } - .p-confirm-popup { background: #ffffff; color: #6c6c6c; @@ -4433,7 +4276,6 @@ .p-confirm-popup .p-confirm-popup-message { margin-left: 1rem; } - .p-dialog { border-radius: 6px; box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); @@ -4506,7 +4348,6 @@ .p-dialog.p-confirm-dialog .p-confirm-dialog-message { margin-left: 1rem; } - .p-overlaypanel { background: #ffffff; color: #6c6c6c; @@ -4548,7 +4389,6 @@ .p-overlaypanel.p-overlaypanel-flipped:before { border-top-color: #ffffff; } - .p-sidebar { background: #ffffff; color: #6c6c6c; @@ -4559,7 +4399,7 @@ padding: 1rem; } .p-sidebar .p-sidebar-header .p-sidebar-close, -.p-sidebar .p-sidebar-header .p-sidebar-icon { + .p-sidebar .p-sidebar-header .p-sidebar-icon { width: 2rem; height: 2rem; color: #898989; @@ -4569,13 +4409,13 @@ transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, -.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { + .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { color: #6c6c6c; border-color: transparent; background: #edf0fa; } .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, -.p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { + .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; @@ -4589,7 +4429,6 @@ .p-sidebar .p-sidebar-footer { padding: 1rem; } - .p-tooltip .p-tooltip-text { background: #585858; color: #ffffff; @@ -4609,7 +4448,6 @@ .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { border-bottom-color: #585858; } - .p-fileupload .p-fileupload-buttonbar { background: #ffffff; padding: 1rem; @@ -4649,7 +4487,6 @@ .p-fileupload.p-fileupload-advanced .p-message { margin-top: 0; } - .p-fileupload-choose:not(.p-disabled):hover { background: #4868d1; color: #ffffff; @@ -4660,7 +4497,6 @@ color: #ffffff; border-color: #3c5ece; } - .p-breadcrumb { background: #ffffff; border: 2px solid #ebebeb; @@ -4692,7 +4528,6 @@ .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { color: #898989; } - .p-contextmenu { padding: 0.5rem 0.5rem; background: #ffffff; @@ -4740,7 +4575,7 @@ color: #6c6c6c; } .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4754,7 +4589,7 @@ color: #6c6c6c; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4765,7 +4600,7 @@ color: #6c6c6c; } .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-contextmenu .p-menuitem-separator { @@ -4779,7 +4614,6 @@ width: 0.875rem; height: 0.875rem; } - .p-dock .p-dock-list-container { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); @@ -4803,32 +4637,31 @@ height: 4rem; } .p-dock.p-dock-top .p-dock-item-second-prev, -.p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, -.p-dock.p-dock-bottom .p-dock-item-second-next { + .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, + .p-dock.p-dock-bottom .p-dock-item-second-next { margin: 0 0.9rem; } .p-dock.p-dock-top .p-dock-item-prev, -.p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, -.p-dock.p-dock-bottom .p-dock-item-next { + .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, + .p-dock.p-dock-bottom .p-dock-item-next { margin: 0 1.3rem; } .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { margin: 0 1.5rem; } .p-dock.p-dock-left .p-dock-item-second-prev, -.p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, -.p-dock.p-dock-right .p-dock-item-second-next { + .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, + .p-dock.p-dock-right .p-dock-item-second-next { margin: 0.9rem 0; } .p-dock.p-dock-left .p-dock-item-prev, -.p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, -.p-dock.p-dock-right .p-dock-item-next { + .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, + .p-dock.p-dock-right .p-dock-item-next { margin: 1.3rem 0; } .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { margin: 1.5rem 0; } - @media screen and (max-width: 960px) { .p-dock.p-dock-top .p-dock-list-container, .p-dock.p-dock-bottom .p-dock-list-container { overflow-x: auto; @@ -4887,7 +4720,7 @@ color: #6c6c6c; } .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -4901,7 +4734,7 @@ color: #6c6c6c; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -4912,7 +4745,7 @@ color: #6c6c6c; } .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-megamenu .p-megamenu-panel { @@ -4970,10 +4803,9 @@ color: #6c6c6c; } .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } - .p-menu { padding: 0.5rem 0.5rem; background: #ffffff; @@ -5010,7 +4842,7 @@ color: #6c6c6c; } .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5024,7 +4856,7 @@ color: #6c6c6c; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5035,7 +4867,7 @@ color: #6c6c6c; } .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-menu.p-menu-overlay { @@ -5069,7 +4901,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-menubar { padding: 0.5rem; background: #f5f5f5; @@ -5108,7 +4939,7 @@ color: #6c6c6c; } .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-menubar .p-menuitem > .p-menuitem-content { @@ -5139,7 +4970,7 @@ color: #6c6c6c; } .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5153,7 +4984,7 @@ color: #6c6c6c; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5164,7 +4995,7 @@ color: #6c6c6c; } .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-menubar .p-submenu-list { @@ -5181,7 +5012,6 @@ .p-menubar .p-submenu-list .p-submenu-icon { font-size: 0.875rem; } - @media screen and (max-width: 960px) { .p-menubar { position: relative; @@ -5356,7 +5186,7 @@ color: #6c6c6c; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5370,7 +5200,7 @@ color: #6c6c6c; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5381,7 +5211,7 @@ color: #6c6c6c; } .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { @@ -5421,7 +5251,6 @@ border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; } - .p-slidemenu { padding: 0.5rem 0.5rem; background: #ffffff; @@ -5464,7 +5293,7 @@ color: #6c6c6c; } .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-slidemenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5478,7 +5307,7 @@ color: #6c6c6c; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5489,7 +5318,7 @@ color: #6c6c6c; } .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-slidemenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-slidemenu.p-slidemenu-overlay { @@ -5536,7 +5365,6 @@ padding-left: 0.5rem; padding-right: 0.5rem; } - .p-steps .p-steps-item .p-menuitem-link { background: transparent; transition: box-shadow 0.3s; @@ -5581,7 +5409,6 @@ position: absolute; margin-top: -1rem; } - .p-tabmenu .p-tabmenu-nav { background: #ffffff; border: 1px solid #ebebeb; @@ -5652,7 +5479,6 @@ outline-offset: 0; box-shadow: inset 0 0 0 0.1rem #bbc7ee; } - .p-tieredmenu { padding: 0.5rem 0.5rem; background: #ffffff; @@ -5703,7 +5529,7 @@ color: #6c6c6c; } .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #898989; } .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { @@ -5717,7 +5543,7 @@ color: #6c6c6c; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { color: #6c6c6c; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { @@ -5728,7 +5554,7 @@ color: #6c6c6c; } .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, -.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { + .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { color: #898989; } .p-tieredmenu .p-menuitem-separator { @@ -5742,7 +5568,6 @@ width: 0.875rem; height: 0.875rem; } - .p-inline-message { padding: 0.5rem 0.75rem; margin: 0; @@ -5798,7 +5623,6 @@ .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { margin-right: 0; } - .p-message { margin: 1rem 0; border-radius: 6px; @@ -5887,7 +5711,6 @@ .p-message .p-message-detail { margin-left: 0.5rem; } - .p-toast { opacity: 0.9; } @@ -5938,7 +5761,7 @@ color: #585858; } .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { color: #585858; } .p-toast .p-toast-message.p-toast-message-success { @@ -5948,7 +5771,7 @@ color: #585858; } .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { color: #585858; } .p-toast .p-toast-message.p-toast-message-warn { @@ -5958,7 +5781,7 @@ color: #585858; } .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { color: #585858; } .p-toast .p-toast-message.p-toast-message-error { @@ -5968,10 +5791,9 @@ color: #585858; } .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, -.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { + .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { color: #585858; } - .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; @@ -6002,7 +5824,7 @@ margin: 0 0.5rem; } .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, -.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { + .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { font-size: 2rem; } .p-galleria .p-galleria-item-nav .p-icon-wrapper .p-icon { @@ -6059,7 +5881,7 @@ padding: 1rem 0.25rem; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; color: #f5f5f5; @@ -6069,7 +5891,7 @@ border-radius: 50%; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, -.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { + .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); color: #f5f5f5; } @@ -6078,29 +5900,23 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-galleria-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-mask { --maskbg: rgba(0, 0, 0, 0.9); } - .p-image-preview-indicator { background-color: transparent; color: #f8f9fa; transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; } - .p-image-preview-container:hover > .p-image-preview-indicator { background-color: rgba(0, 0, 0, 0.5); } - .p-image-toolbar { padding: 1rem; } - .p-image-action.p-link { color: #f8f9fa; background-color: transparent; @@ -6124,7 +5940,6 @@ width: 1.5rem; height: 1.5rem; } - .p-avatar { background-color: #ebebeb; border-radius: 6px; @@ -6145,11 +5960,9 @@ .p-avatar.p-avatar-xl .p-avatar-icon { font-size: 2rem; } - .p-avatar-group .p-avatar { border: 2px solid #ffffff; } - .p-badge { background: #5472d4; color: #ffffff; @@ -6191,7 +6004,6 @@ height: 3rem; line-height: 3rem; } - .p-chip { background-color: #ebebeb; color: #6c6c6c; @@ -6227,7 +6039,6 @@ .p-chip .pi-chip-remove-icon:focus { outline: 0 none; } - .p-inplace .p-inplace-display { padding: 0.5rem 0.75rem; border-radius: 6px; @@ -6242,7 +6053,6 @@ outline-offset: 0; box-shadow: 0 0 0 0.1rem #bbc7ee; } - .p-progressbar { border: 0 none; height: 1.5rem; @@ -6258,7 +6068,6 @@ color: #ffffff; line-height: 1.5rem; } - .p-scrolltop { width: 3rem; height: 3rem; @@ -6280,7 +6089,6 @@ width: 1.5rem; height: 1.5rem; } - .p-skeleton { background-color: #ebebeb; border-radius: 6px; @@ -6288,7 +6096,6 @@ .p-skeleton:after { background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); } - .p-tag { background: #5472d4; color: #ffffff; @@ -6321,7 +6128,6 @@ width: 0.75rem; height: 0.75rem; } - .p-terminal { background: #ffffff; color: #6c6c6c; @@ -6340,20 +6146,16 @@ .p-button .p-button-label { font-weight: 600; } - - .p-buttonset .p-button-label, -.p-togglebutton .p-button-label { + .p-button-group .p-button-label, + .p-togglebutton .p-button-label { font-weight: 400; } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { background-color: #5472d4; } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { background-color: #5472d4; } - .p-panel { border: 2px solid #ebebeb; border-radius: 6px; @@ -6364,11 +6166,9 @@ .p-panel .p-panel-content { border: 0 none; } - .p-fieldset .p-fieldset-legend { border-color: transparent; } - .p-accordion .p-accordion-toggle-icon { order: 10; margin-left: auto; @@ -6386,7 +6186,6 @@ .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { border-bottom: 0 none; } - .p-inline-message.p-inline-message-info { border-color: #e1f2f7; } @@ -6399,39 +6198,30 @@ .p-inline-message.p-inline-message-error { border-color: #f7e1e6; } - .p-inputtext:enabled:focus { box-shadow: none; } - .p-dropdown:not(.p-disabled).p-focus { box-shadow: none; } - .p-multiselect:not(.p-disabled).p-focus { box-shadow: none; } - .p-cascadeselect:not(.p-disabled).p-focus { box-shadow: none; } - .p-autocomplete.p-autocomplete-multiple:not(.p-disabled).p-focus { box-shadow: none; } - .p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { box-shadow: none; } - .p-orderlist .p-orderlist-list { border-top: 0 none; } - .p-picklist .p-picklist-list { border-top: 0 none; } - .p-panelmenu .p-panelmenu-icon.pi-chevron-right, .p-panelmenu .p-panelmenu-icon.pi-chevron-down { order: 10; margin-left: auto; @@ -6450,7 +6240,6 @@ padding-bottom: calc(1rem + 2px); border-bottom: 0 none; } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { box-shadow: inset 0 2px 0 0 #5472d4; } diff --git a/src/assets/showcase/styles/layout/layout.css b/src/assets/showcase/styles/layout/layout.css new file mode 100644 index 00000000000..1d1719df53c --- /dev/null +++ b/src/assets/showcase/styles/layout/layout.css @@ -0,0 +1,2001 @@ +.landing.layout-light { + --home-highlight-color:#3B82F6; + --home-highlight-darker-color:#2563eb; + --home-highlight-fore-color:#ffffff; + --home-bg:#F9FAFB; + --home-border-color:rgba(0,0,0,.1); + --home-primary-text-color:#030712; + --home-secondary-text-color:#6b7280; + --home-card-shadow:0px 7px 15px 0px rgba(0, 0, 0, 0.02), 0px 28px 28px 0px rgba(0, 0, 0, 0.02), 0px 63px 38px 0px rgba(0, 0, 0, 0.01); + --home-box-bg:#ffffff; + --home-linkbox-bg:#ffffff; + --home-linkbox-border:1px solid rgba(0,0,0,.1); + --home-linkbox-text-color:#030712; + --home-linkbox-hover-bg:#e5e7eb; + --home-blocks-bg:transparent; + --home-blocks-block-bg:#ffffff; + --home-blocks-block-shadow:-10px 4px 10px 0px rgba(0, 0, 0, .1), -10px 4px 25px rgba(0, 0, 0, .1); + --home-blocks-border-left:5px solid rgba(0,0,0,.1); + --home-blocks-border-bottom:7px solid rgba(0,0,0,.1); + --home-blocks-border:1px solid rgba(0,0,0,.1); + --home-blocks-sidebar-bg:#f3f4f6; + --home-blocks-list-bg:#f9fafb; + --home-blocks-main-bg:#ffffff; + --home-blocks-main-border:1px solid rgba(0,0,0,.1); + --home-blocks-item-bg:#f4f5f7; + --home-blocks-image-bg:#e5e7eb; + --home-blocks-text-color:#d1d5db; + --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, .1); + --home-blocks-active-border-top:1px solid rgba(0,0,0,.07); + --home-blocks-active-border-right:1px solid rgba(0,0,0,.07); + --home-blocks-active-border-bottom:4px solid rgba(0,0,0,.07); + --home-blocks-active-border-left:4px solid rgba(0,0,0,.07); + --home-blocks-animation-shadow:0px 30px 50px 10px rgba(0, 0, 0, .2); + --home-blocks-tablebar-bg:#d1d5db; + --home-blocks-bar-bg:#d1d5db; + --home-blocks-bar-button-bg:#ffffff; + --home-blocks-circle-bg:#c7cad0; + --home-templates-bg:transparent; + --home-templates-block-shadow:0px 5px 10px 0px rgba(0,0,0,.1); + --home-templates-block-border-left:5px solid #d1d5db; + --home-templates-block-border-bottom:7px solid #d1d5db; + --home-templates-line:rgba(0,0,0,.1); + --home-templates-block-hover-bg:rgba(0, 0, 0, 0.2); + --home-templates-btn-bg:rgba(0, 0, 0, 0.5); + --home-templates-btn-text-color:#ffffff; + --home-templates-btn-shadow:0px 10px 15px 0px rgba(0, 0, 0, 0.5); + --home-templates-btn-border-top:1px solid rgba(0,0,0,.1); + --home-templates-btn-border-right:1px solid rgba(0,0,0,.1); + --home-templates-btn-border-bottom:4px solid rgba(0,0,0,.1); + --home-templates-btn-border-left:3px solid rgba(0,0,0,.1); + --home-features-card-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.02), 0px 28px 28px 0px rgba(0, 0, 0, 0.02), 0px 63px 38px 0px rgba(0, 0, 0, 0.01); + --home-box-ring-color: var(--primary-100); +} + +.landing.layout-dark { + --home-highlight-color:#60a5fa; + --home-highlight-darker-color:#93c5fd; + --home-highlight-fore-color:#030712; + --home-bg:#111827; + --home-border-color:#424b57; + --home-primary-text-color:#ffffff; + --home-secondary-text-color:rgba(255,255,255,.6); + --home-card-shadow:0px 50px 100px rgba(0, 0, 0, 0.25); + --home-box-bg:#1f2937; + --home-linkbox-bg:rgba(255, 255, 255, .05); + --home-linkbox-border:1px solid rgba(255, 255, 255, .1); + --home-linkbox-text-color:#ffffff; + --home-linkbox-hover-bg:rgba(255, 255, 255, .1); + --home-blocks-bg:transparent; + --home-blocks-block-bg:#111827; + --home-blocks-block-shadow:0px 5px 10px 0px rgba(0, 0, 0, 0.25) , 0px 4px 25px rgba(0, 0, 0, 0.25); + --home-blocks-border-left:5px solid #1f2937; + --home-blocks-border-bottom:7px solid #1f2937; + --home-blocks-border:1px solid #424b57; + --home-blocks-sidebar-bg:#1f2937; + --home-blocks-list-bg:#28323f; + --home-blocks-main-bg:#111827; + --home-blocks-main-border:1px solid #424b57; + --home-blocks-item-bg:#1f2937; + --home-blocks-image-bg:#28323f; + --home-blocks-text-color:#4b5563; + --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, 0.25); + --home-blocks-active-border-top:1px solid #424b57; + --home-blocks-active-border-right:1px solid #424b57; + --home-blocks-active-border-bottom:6px solid #424b57; + --home-blocks-active-border-left:4px solid #424b57; + --home-blocks-animation-shadow:0px 30px 50px 20px rgba(0, 0, 0, 0.25); + --home-blocks-tablebar-bg:#4b5563; + --home-blocks-bar-bg:#4b5563; + --home-blocks-bar-button-bg:#ffffff; + --home-blocks-circle-bg:#4b5563; + --home-templates-bg:transparent; + --home-templates-block-shadow:0px 5px 10px 0px rgba(0, 0, 0, 0.25); + --home-templates-block-border-left:5px solid #424b57; + --home-templates-block-border-bottom:7px solid #424b57; + --home-templates-line:rgba(255,255,255,.1); + --home-templates-block-hover-bg:rgba(255,255,255,.1); + --home-templates-btn-bg:#1f2937; + --home-templates-btn-text-color:#ffffff; + --home-templates-btn-shadow:0px 10px 15px 0px rgba(0, 0, 0, 0.25); + --home-templates-btn-border-top:1px solid #424b57; + --home-templates-btn-border-right:1px solid #424b57; + --home-templates-btn-border-bottom:4px solid #424b57; + --home-templates-btn-border-left:3px solid #424b57; + --home-features-card-shadow: none; + --home-box-ring-color: rgba(96, 165, 250, 0.3); +} + +.layout-light { + --topbar-sticky-bg:rgba(255,255,255,.7); + --card-border: 1px solid var(--surface-border); + --card-bg: var(--surface-card); + --glow-image: url(https://www.primefaces.org/cdn/primevue/images/layout/pattern.png), radial-gradient(50% 50% at center top, var(--primary-100) 0%, #ffffff 100%); + --glow-blend: hard-light, multiply; + --topbar-border: rgba(0,0,0,.05); + --mobile-menu-bg: var(--surface-overlay); + --demo-code-bg: var(--surface-700); + --demo-code-button-color: var(--surface-300); + --demo-code-button-hover-bg: rgba(255,255,255,.1); + --demo-code-button-hover-color: var(--surface-100); + --doc-highlight-text-bg: var(--primary-100); + --doc-highlight-text-color: var(--primary-900); +} + +.layout-dark { + --topbar-sticky-bg:rgba(0,0,0,.3); + --card-border: 0 none; + --card-bg: var(--surface-card); + --glow-image: url(https://www.primefaces.org/cdn/primevue/images/layout/pattern.png), radial-gradient(50% 50% at center -25px, var(--primary-color) 0%, #000000 100%); + --glow-blend: hard-light, color-dodge; + --topbar-border: var(--surface-border); + --mobile-menu-bg: rgba(0,0,0,.3); + --demo-code-bg: var(--surface-card); + --demo-code-button-color: var(--surface-500); + --demo-code-button-hover-bg: rgba(255,255,255,.1); + --demo-code-button-hover-color: var(--surface-700); + --doc-highlight-text-bg: var(--highlight-bg); + --doc-highlight-text-color: var(--highlight-text-color); +} + +html { + font-size: 14px; +} + +body { + margin: 0px; + min-height: 100%; + overflow-x: hidden; + overflow-y: auto; + background-color: var(--surface-ground); + font-weight: normal; + color: var(--text-color); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.layout-wrapper { + background-color: var(--surface-ground); +} + +a { + text-decoration: none; +} + +::selection { + background-color: var(--highlight-bg); + color: var(--highlight-text-color); +} + +h1, h2, h3, h4, h5, h6 { + margin: 1.5rem 0 1rem 0; + font-family: inherit; + font-weight: 600; + line-height: 1.2; + color: var(--surface-900); +} +h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child { + margin-top: 0; +} + +h1 { + font-size: 2rem; +} + +h2 { + font-size: 1.5rem; +} + +h3 { + font-size: 1.25rem; +} + +h4 { + font-size: 1.125rem; +} + +h5 { + font-size: 1rem; +} + +h6 { + font-size: 0.875rem; +} + +p { + line-height: 1.75; + margin: 0 0 1rem 0; +} + +input[type=number] { + -moz-appearance: textfield; +} +input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +.p-toast.p-toast-top-right, +.p-toast.p-toast-top-left { + top: 7rem; +} + +.px-link { + font-size: 1rem; + border-radius: var(--border-radius); + text-align: left; + background-color: transparent; + margin: 0; + padding: 0; + border: none; + cursor: pointer; + user-select: none; +} +.px-link:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} + +.px-link:disabled { + cursor: default; +} + +button { + font-family: var(--font-family); + font-feature-settings: var(--font-feature-settings); +} + +.landing, .layout-wrapper { + background-image: var(--glow-image); + background-blend-mode: var(--glow-blend); + background-position: top center; + background-repeat: no-repeat; + background-size: auto 20rem; +} + +.layout-topbar { + position: fixed; + top: 0; + left: 0; + width: calc(100% - var(--scrollbar-width, 0px)); + z-index: 1100; + transition: background-color 0.5s, border-color 0.5s; + border-bottom: 1px solid transparent; +} +.layout-topbar.layout-topbar-sticky { + border-bottom: 1px solid var(--surface-border); + background-color: var(--topbar-sticky-bg); + backdrop-filter: blur(8px); +} + +.layout-topbar-inner { + height: 4rem; + padding: 0 4rem; + display: flex; + align-items: center; + justify-content: space-between; +} +.layout-topbar-inner .layout-topbar-logo-container { + width: 250px; + margin-right: 4rem; +} +.layout-topbar-inner .layout-topbar-logo, +.layout-topbar-inner .layout-topbar-icon { + border-radius: var(--border-radius); +} +.layout-topbar-inner .layout-topbar-logo:focus-visible, +.layout-topbar-inner .layout-topbar-icon:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.layout-topbar-inner .layout-topbar-logo svg, +.layout-topbar-inner .layout-topbar-icon svg { + width: 120px; +} +.layout-topbar-inner .layout-topbar-logo { + display: inline-flex; +} +.layout-topbar-inner .layout-topbar-logo svg { + width: 120px; +} +.layout-topbar-inner .layout-topbar-icon { + display: none; +} +.layout-topbar-inner .layout-topbar-icon svg { + width: 25px; +} +.layout-topbar-inner .menu-button { + display: none; +} + +.layout-sidebar { + position: sticky; + left: 0; + top: 6rem; + height: calc(100vh - 9rem); + user-select: none; + transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99), opacity 0.3s; + display: flex; + flex-direction: column; + padding: 0 0 0 0; + flex: 0 0 250px; + margin-right: 4rem; + overflow: auto; +} +.layout-sidebar .logo { + display: flex; + justify-content: center; +} +.layout-sidebar nav { + padding: 0 1rem 0 0; + margin: 0; + flex-grow: 1; +} +.layout-sidebar .layout-menu { + list-style: none; + margin: 0; + padding: 0; +} +.layout-sidebar .layout-menu > li { + margin-bottom: 0.25rem; +} +.layout-sidebar .layout-menu > li > button, +.layout-sidebar .layout-menu > li > a { + display: flex; + width: 100%; + align-items: center; + padding: 0.5rem 0; + color: var(--surface-900); + font-weight: 600; + transition: all 0.2s; + border-radius: var(--border-radius); +} +.layout-sidebar .layout-menu > li > button .menu-icon, +.layout-sidebar .layout-menu > li > a .menu-icon { + width: 2rem; + height: 2rem; + border-radius: var(--border-radius); + margin-right: 0.5rem; + border: 1px solid var(--surface-border); + display: inline-flex; + align-items: center; + justify-content: center; + transition: all 0.2s; +} +.layout-sidebar .layout-menu > li > button .menu-icon i, +.layout-sidebar .layout-menu > li > a .menu-icon i { + color: var(--surface-700); + transition: all 0.2s; +} +.layout-sidebar .layout-menu > li > button .menu-toggle-icon, +.layout-sidebar .layout-menu > li > a .menu-toggle-icon { + color: var(--surface-700); + margin-left: auto; +} +.layout-sidebar .layout-menu > li > button:hover .menu-icon i, +.layout-sidebar .layout-menu > li > a:hover .menu-icon i { + color: var(--primary-color); +} +.layout-sidebar .layout-menu > li > button:hover .menu-toggle-icon, +.layout-sidebar .layout-menu > li > a:hover .menu-toggle-icon { + color: var(--surface-900); +} +.layout-sidebar .layout-menu > li > button.router-link-active, +.layout-sidebar .layout-menu > li > a.router-link-active { + color: var(--primary-color); +} +.layout-sidebar .layout-menu > li > button.router-link-active > .menu-icon i, +.layout-sidebar .layout-menu > li > a.router-link-active > .menu-icon i { + color: var(--primary-color); +} +.layout-sidebar .layout-menu > li > button:focus-visible, +.layout-sidebar .layout-menu > li > a:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: inset var(--focus-ring); +} +.layout-sidebar .layout-menu > li > div ol { + margin: 0 0 0 1rem; + padding: 0.25rem 0; + list-style: none; +} +.layout-sidebar .layout-menu > li > div ol li a { + color: var(--surface-700); + border-left: 1px solid var(--surface-border); + transition: all 0.2s; + font-weight: 450; + display: flex; + padding: 0.5rem 0.5rem 0.5rem 1rem; + color: var(--surface-700); + transition: all 0.2s; +} +.layout-sidebar .layout-menu > li > div ol li a:focus-visible { + outline: 0 none; + box-shadow: inset var(--focus-ring); +} +.layout-sidebar .layout-menu > li > div ol li a:hover { + color: var(--surface-900); + border-left-color: var(--surface-500); +} +.layout-sidebar .layout-menu > li > div ol li a.router-link-active { + color: var(--primary-color); + border-left-color: var(--primary-color); +} +.layout-sidebar .layout-menu > li > div ol li ol { + margin: 0; + padding: 0; +} +.layout-sidebar .layout-menu > li > div ol li:has(.menu-child-category) { + margin-top: 1rem; +} +.layout-sidebar .layout-menu > li > div ol li:has(.menu-child-category):first-child { + margin-top: 0rem; +} +.layout-sidebar .layout-menu .menu-child-category { + display: flex; + padding: 0.5rem 0.5rem 0.5rem 0; + font-size: 0.875rem; + font-weight: 600; + letter-spacing: 1px; + color: var(--surface-900); + margin-bottom: 0.25rem; +} + +.layout-content { + padding: 6rem 4rem 0 4rem; + display: flex; +} +.layout-content .layout-content-slot { + flex: 1 1 auto; + width: 1%; + padding-top: 0.5rem; +} + +.card { + background: var(--surface-card); + border: var(--card-border); + padding: 2rem; + border-radius: 10px; + margin-bottom: 1rem; +} + +.layout-news { + position: fixed; + top: 0; + left: 0; + z-index: 1100; + width: 100%; + height: 2rem; + padding: 0 2rem; + background-color: var(--primary-color); +} +.layout-news .layout-news-container { + display: flex; + justify-content: space-between; + align-items: center; + width: calc(100% - var(--scrollbar-width, 0px)); + height: 100%; +} +.layout-news .layout-news-content { + flex: 1; + display: flex; + justify-content: center; + align-items: center; + min-width: 0%; +} +.layout-news .layout-news-text { + line-height: 1.5; + display: block; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + min-width: 0%; + font-weight: 500; + color: var(--primary-color-text); +} +.layout-news .layout-news-link { + margin-left: 0.5rem; + line-height: 1.5; + white-space: nowrap; +} +.layout-news .layout-news-link, +.layout-news .layout-news-link:visited, +.layout-news .layout-news-link:active { + color: var(--primary-color-text); + font-weight: 700; +} +.layout-news .layout-news-link:hover { + text-decoration: underline; +} +.layout-news .layout-news-close { + line-height: 1.5; + cursor: pointer; + display: inline-flex; + justify-content: center; + align-items: center; + border-radius: 50%; + width: 1.5rem; + height: 1.5rem; + transition: background-color 0.3s; + margin-left: 0.5rem; + color: var(--primary-color-text); +} +.layout-news .layout-news-close:hover { + background-color: rgba(255, 255, 255, 0.2); +} + +.layout-news-active .layout-topbar { + top: 2rem; +} +.layout-news-active .layout-sidebar, +.layout-news-active .doc-section-nav { + top: 8rem; +} +.layout-news-active .layout-content { + padding-top: 8rem; +} +.layout-news-active .doc-section-label, +.layout-news-active .doc-table tbody td .doc-option-name, +.layout-news-active .doc-table tbody td > i { + scroll-margin-top: 8.5rem; +} + +.layout-footer { + padding: 2rem 4rem; + margin-top: 4rem; + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + font-weight: 500; + color: var(--text-800); + border-top: 1px solid var(--surface-border); +} +.layout-footer a { + color: var(--primary-color); + font-weight: 700; + transition: all 0.3s; + border-radius: var(--border-radius); +} +.layout-footer a:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.layout-footer a:hover { + text-decoration: underline; +} + +.layout-config { + backdrop-filter: blur(20px); + background-color: var(--mobile-menu-bg); +} +.layout-config .p-selectbutton .p-button { + padding: 0.5rem 1rem; +} +.layout-config .p-selectbutton .p-button:first-child { + border-top-left-radius: 30px; + border-bottom-left-radius: 30px; +} +.layout-config .p-selectbutton .p-button:last-child { + border-top-right-radius: 30px; + border-bottom-right-radius: 30px; +} +.layout-config button:focus-visible { + outline: 0 none; + border-color: var(--surface-500) !important; +} +.layout-config .grid > div { + padding: 1rem; +} +.layout-config .p-inputswitch .p-inputswitch-slider { + border-radius: 30px; +} +.layout-config .p-inputswitch .p-inputswitch-slider:before { + border-radius: 30px; +} + +.layout-light .layout-config { + background: var(--surface-overlay); +} + +.layout-dark .layout-config { + background: var(rgba(0, 0, 0, 0.3)); + border: 0 none; +} + +code[class*=language-], +pre[class*=language-] { + background: none; + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +div.code-toolbar > .toolbar { + display: none; +} + +pre[class*=language-] { + position: relative; + background: transparent; + margin: 0; + padding: 0; + max-height: 40rem; + overflow: auto; + color-scheme: dark; +} +pre[class*=language-]:before, pre[class*=language-]:after { + display: none !important; +} +pre[class*=language-] code { + border-left: 1rem solid transparent; + box-shadow: none; + margin: 0; + font-size: 14px; + border-radius: 10px; + color: #ffffff; + max-height: inherit; + height: inherit; + padding: 0 1rem; + display: block; + overflow: auto; +} +pre[class*=language-] code .token.comment, +pre[class*=language-] code .token.block-comment, +pre[class*=language-] code .token.prolog, +pre[class*=language-] code .token.doctype, +pre[class*=language-] code .token.cdata { + color: #bbf7d0; +} +pre[class*=language-] code .token.punctuation { + color: #bfdbfe; +} +pre[class*=language-] code .token.property, +pre[class*=language-] code .token.tag, +pre[class*=language-] code .token.boolean, +pre[class*=language-] code .token.number, +pre[class*=language-] code .token.function-name, +pre[class*=language-] code .token.constant, +pre[class*=language-] code .token.symbol, +pre[class*=language-] code .token.deleted { + color: #93c5fd; +} +pre[class*=language-] code .token.selector, +pre[class*=language-] code .token.attr-name, +pre[class*=language-] code .token.string, +pre[class*=language-] code .token.char, +pre[class*=language-] code .token.function, +pre[class*=language-] code .token.builtin, +pre[class*=language-] code .token.inserted { + color: #eff6ff; +} +pre[class*=language-] code .token.operator, +pre[class*=language-] code .token.entity, +pre[class*=language-] code .token.url, +pre[class*=language-] code .token.variable { + color: #ffffff; +} +pre[class*=language-] code .token.atrule, +pre[class*=language-] code .token.attr-value, +pre[class*=language-] code .token.keyword, +pre[class*=language-] code .token.class-name { + color: #bbf7d0; +} +pre[class*=language-] code .token.regex, +pre[class*=language-] code .token.important { + color: #fde68a; +} +pre[class*=language-] code .language-css .token.string, +pre[class*=language-] code .style .token.string { + color: #fde68a; +} +pre[class*=language-] code .token.important { + font-weight: normal; +} +pre[class*=language-] code .token.bold { + font-weight: bold; +} +pre[class*=language-] code .token.italic { + font-style: italic; +} +pre[class*=language-] code .token.entity { + cursor: help; +} + +.copy-to-clipboard-button { + display: none; +} + +pre[class*=language-] code { + background: var(--demo-code-bg); +} + +.layout-light[data-p-theme^=md] pre[class*=language-] code { + background: var(--surface-900); +} + +.doc-tabmenu { + list-style: none; + margin: 0; + padding: 0; + display: flex; + margin-bottom: 2rem; + overflow: auto; + position: relative; +} +.doc-tabmenu:after { + display: block; + position: absolute; + bottom: 0; + width: 100%; + border-bottom: 1px solid var(--surface-border); + content: ""; +} +.doc-tabmenu li { + position: relative; + z-index: 1; +} +.doc-tabmenu li button { + background-color: transparent; + border: 0 none; + display: block; + padding: 0 2rem 1rem 2rem; + text-align: center; + color: var(--surface-700); + font-size: 1rem; + letter-spacing: 1px; + cursor: pointer; + margin: 0; + transition: all 0.2s; + border-bottom: 1px solid transparent; + border-top-right-radius: var(--border-round); + border-top-left-radius: var(--border-round); + white-space: nowrap; +} +.doc-tabmenu li button:hover { + border-bottom-color: var(--surface-500); +} +.doc-tabmenu li button:focus { + outline: 0 none; +} +.doc-tabmenu li button:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.doc-tabmenu li.doc-tabmenu-active button { + border-bottom-color: var(--primary-color); + color: var(--primary-color); +} +.doc-tabmenu::-webkit-scrollbar { + display: none; +} + +.doc-tabpanel, +.doc { + display: flex; +} + +.doc-main { + flex-grow: 1; + flex-shrink: 1; + flex-basis: 0; + min-width: 0; +} + +.doc-intro { + margin-bottom: 1.5rem; +} +.doc-intro p { + font-size: 1.125rem; + color: var(--surface-900); + margin: 0; +} + +.doc-section-label { + display: flex; + align-items: center; + scroll-margin-top: 6.5rem; +} +.doc-section-label > a { + color: var(--primary-color); + opacity: 0.7; + margin-left: 1rem; + display: none; + transition: all 0.2s; + border-radius: var(--border-radius); +} +.doc-section-label > a:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.doc-section-label:hover > a { + display: block; +} +.doc-section-label:hover > a:hover { + opacity: 1; +} + +.doc-section-description > p { + font-size: 1.125rem; + color: var(--surface-900); +} +.doc-section-description > p i { + border-radius: 6px; + padding: 2px 6px; + font-size: 1rem; + font-weight: 500; + font-style: normal; + background-color: var(--doc-highlight-text-bg); + color: var(--doc-highlight-text-color); +} +.doc-section-description > p a { + color: var(--primary-color); + font-weight: 500; + transition: all 0.2s; + border-radius: var(--border-radius); +} +.doc-section-description > p a:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.doc-section-description > p a:hover { + text-decoration: underline; +} +.doc-section-description .notification { + line-height: 1.5; + padding: 1rem; + font-weight: 500; + border-radius: 10px; + background-color: var(--doc-highlight-text-bg); + color: var(--doc-highlight-text-color); +} + +.doc-section-nav { + position: sticky; + top: 6rem; + right: 0; + width: 14rem; + max-height: calc(100vh - 15rem); + list-style: none; + margin: 0; + padding: 0.25rem 0; + margin-left: 4rem; + overflow-y: auto; + overflow-x: hidden; + align-self: flex-start; +} +.doc-section-nav > .navbar-item .navbar-item-content { + border-left: 1px solid var(--surface-border); + padding-left: 0.25rem; + transition: all 0.2s; +} +.doc-section-nav > .navbar-item .navbar-item-content:hover { + border-left-color: var(--surface-500); +} +.doc-section-nav .navbar-item > .navbar-item-content { + display: flex; +} +.doc-section-nav .navbar-item > .navbar-item-content .px-link { + padding: 0.25rem 1rem 0.25rem 1rem; + color: var(--surface-800); + font-weight: 400; + white-space: nowrap; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + transition: all 0.2s; +} +.doc-section-nav .navbar-item > .navbar-item-content:hover .px-link { + color: var(--surface-900); +} +.doc-section-nav .navbar-item.active-navbar-item > .navbar-item-content { + border-color: var(--primary-color); +} +.doc-section-nav .navbar-item.active-navbar-item > .navbar-item-content .px-link { + color: var(--primary-color); +} +.doc-section-nav .navbar-item ul { + list-style: none; + margin: 0; + padding: 0; +} +.doc-section-nav .navbar-item ul .navbar-item .navbar-item-content { + padding-left: 1rem; +} + +.doc-section-code { + position: relative; +} +.doc-section-code div::-webkit-scrollbar { + width: 5px; +} +.doc-section-code:not(:last-child) { + margin-bottom: 1rem; +} +.doc-section-code:hover .doc-section-code-buttons { + display: flex; +} + +.doc-section-code-buttons { + position: absolute; + align-items: center; + justify-content: end; + z-index: 1; + top: 0.75rem; + right: 0.75rem; + gap: 0.5rem; + display: none; + background: rgba(255, 255, 255, 0.05); + border-radius: 10px; + padding: 2px; + backdrop-filter: blur(6px); + border: 1px solid rgba(255, 255, 255, 0.1); +} +.doc-section-code-buttons button { + outline: 0 none; + border-radius: 8px; + outline-offset: 0; + background-color: transparent; + transition: background-color 0.2s, box-shadow 0.2s; + border: 0 none; + color: var(--demo-code-button-color); + cursor: pointer; +} +.doc-section-code-buttons button:hover { + background-color: var(--demo-code-button-hover-bg); + color: var(--demo-code-button-hover-color); +} +.doc-section-code-buttons button.code-active { + color: #bbf7d0; +} + +.doc-section-code-tooltip .p-tooltip-text { + padding: 0.5rem; + font-size: 11px; +} + +.doc-tablewrapper { + overflow: auto; +} + +.doc-table { + border-collapse: collapse; + width: 100%; + min-width: 960px; + margin-bottom: 1.5rem; +} +.doc-table th { + border-bottom: 1px solid var(--surface-border); + padding: 0.75rem 1rem; + text-align: left; + text-transform: capitalize; +} +.doc-table tbody tr:hover { + background: var(--surface-hover); +} +.doc-table tbody td { + padding: 0.75rem 1rem; + border-bottom: 1px solid var(--surface-border); + white-space: pre-line; + line-height: 1.5; + scroll-margin-top: 6.5rem; +} +.doc-table tbody td:first-child { + color: var(--primary-color); + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + font-weight: 600; +} +.doc-table tbody td .doc-option-type { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + color: var(--primary-500); + font-weight: 500; +} +.doc-table tbody td .doc-option-type .doc-option-type-options-container { + display: flex; + align-items: center; +} +.doc-table tbody td .doc-option-type span.doc-option-type-options { + color: var(--primary-700); +} +.doc-table tbody td .doc-option-type.doc-option-link:hover { + text-decoration: underline; +} +.doc-table tbody td .doc-option-name, +.doc-table tbody td > i:not(.pi) { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + position: relative; + scroll-margin-top: 6.5rem; + background-color: var(--doc-highlight-text-bg); + color: var(--doc-highlight-text-color); + border-radius: 6px; + padding: 2px 6px; + font-weight: 600; + font-style: normal; + white-space: nowrap; +} +.doc-table tbody td .doc-option-name .doc-option-link, +.doc-table tbody td > i:not(.pi) .doc-option-link { + position: absolute; + top: 0; + right: -1.5rem; + color: var(--primary-color); + opacity: 0.7; + display: none; + transition: opacity 0.3s, colors 0.3s; +} +.doc-table tbody td:hover .doc-option-name .doc-option-link { + display: inline; +} +.doc-table tbody td:hover .doc-option-name .doc-option-link:hover { + opacity: 1; +} +.doc-table tbody td .doc-option-default, +.doc-table tbody td .doc-option-returnType { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + font-weight: 400; + font-style: normal; + display: flex; + border-width: 1px; + border-style: solid; + border-radius: 6px; + padding: 2px 6px; + max-width: min-content; +} +.doc-table tbody td .doc-option-parameter-name { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + color: var(--primary-700); +} +.doc-table tbody td .doc-option-parameter-type { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; + color: var(--primary-500); +} +.doc-table tbody td .doc-option-params { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, Liberation Mono, monospace; +} +.doc-table tbody td .doc-option-light { + background: var(--bluegray-50); + border-color: var(--bluegray-100); +} +.doc-table tbody td .doc-option-dark { + background: var(--bluegray-800); + border-color: var(--bluegray-800); +} + +.DocSearch-Button { + border-radius: var(--border-radius); + border: 1px solid var(--surface-border); + height: 2rem; + background-color: var(--surface-card); + margin: 0; + transition: all 0.3s; + padding: 0 0.5rem; +} +.DocSearch-Button:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.DocSearch-Button:hover { + border-color: var(--primary-color); +} +.DocSearch-Button:hover { + border-color: var(--primary-color); + box-shadow: none; +} +.DocSearch-Button .DocSearch-Search-Icon { + width: 1rem; + height: 1rem; +} +.DocSearch-Button .DocSearch-Button-Keys { + overflow: hidden; + min-width: auto; + height: auto; + background: transparent; + display: flex; + align-items: center; + justify-content: center; + width: auto; + padding: 0; + gap: 2px; +} +.DocSearch-Button .DocSearch-Button-Keys .DocSearch-Button-Key { + background: transparent; + display: flex; + padding: 0; + margin: 0; + top: 0; + border-radius: 0; + height: auto; + width: auto; + font-family: var(--font-family); +} +.DocSearch-Button .DocSearch-Button-Keys .DocSearch-Button-Key:first-child { + font-size: 0.75rem; + line-height: normal; +} +.DocSearch-Button .DocSearch-Button-Keys .DocSearch-Button-Key:last-child { + justify-content: start; + align-items: center; + font-size: 0.75rem; + position: relative; +} +.DocSearch-Button .DocSearch-Button-Keys .DocSearch-Button-Key:last-child::before { + content: "\e90d"; + display: flex; + color: var(--text-color); + font-family: "primeicons"; + font-size: 0.4rem; + opacity: 0.7; + margin-right: 2px; + height: 13.5px; + align-items: center; + font-weight: 700; +} + +.DocSearch-Container { + z-index: 1101; +} + +.DocSearch-Modal { + border: 1px solid var(--surface-border); + box-shadow: none; +} + +.DocSearch-Footer { + box-shadow: none; + border-top: 1px solid var(--surface-border); + background-color: var(--surface-overlay); +} + +.DocSearch-Form { + background: var(--surface-card); + box-shadow: none; + border: 1px solid var(--surface-border); + border-radius: var(--border-radius); + transition: border-color 0.3s; +} +.DocSearch-Form:hover { + border-color: var(--primary-color); +} +.DocSearch-Form .DocSearch-MagnifierLabel, .DocSearch-Form .DocSearch-Reset { + color: var(--text-color); +} + +.DocSearch-Hit { + border-bottom: 1px solid var(--surface-border); + padding-bottom: 0; + margin-bottom: 0.25rem; +} + +.DocSearch-Hit-source { + color: var(--primary-color); +} + +.DocSearch-Logo .cls-1, .DocSearch-Logo .cls-2 { + fill: var(--primary-color); +} + +.DocSearch-Prefill { + color: var(--primary-color); +} + +.DocSearch-Button-Placeholder { + text-align: center; + display: inline-block; + font-size: 0.875rem; +} + +:root { + --docsearch-searchbox-focus-background: var(--surface-card); + --docsearch-text-color: var(--text-color); + --docsearch-muted-color: var(--text-color); + --docsearch-searchbox-background: var(--surface-card); + --docsearch-text-color: var(--text-color); + --docsearch-modal-background: var(--surface-overlay); + --docsearch-key-gradient: var(--surface-ground); + --docsearch-key-shadow: none; + --docsearch-container-background: var(--maskbg); + --docsearch-hit-background: var(--surface-overlay); + --docsearch-hit-shadow: none; + --docsearch-spacing: 1rem; + --docsearch-hit-color: var(--text-color); + --docsearch-highlight-color: var(--primary-color); + --docsearch-hit-active-color: var(--primary-color-text); +} + +@media screen and (min-width: 1920px) { + .layout-content { + max-width: 1728px; + margin: 0 auto; + } + .layout-topbar-inner, + .layout-footer { + max-width: 1728px; + margin: 0 auto; + } +} +@media screen and (max-width: 1199px) { + .layout-topbar-inner { + padding-left: 2rem; + padding-right: 2rem; + } + .layout-topbar-inner .menu-button { + display: block; + } + .layout-topbar-inner .layout-topbar-logo-container { + width: auto; + margin-right: 0; + } + .layout-topbar-inner .DocSearch-Button { + width: 2rem; + height: 2rem; + overflow: hidden; + padding: 0; + justify-content: center; + align-items: center; + } + .layout-topbar-inner .DocSearch-Button .DocSearch-Search-Icon { + width: 1rem; + height: 1rem; + } + .layout-topbar-inner .DocSearch-Button .DocSearch-Button-Placeholder, + .layout-topbar-inner .DocSearch-Button .DocSearch-Button-Keys { + display: none; + } + .layout-sidebar { + top: 0; + left: 0; + position: fixed; + z-index: 1102; + height: 100%; + transform: translateX(-100%); + background-color: var(--mobile-menu-bg); + backdrop-filter: blur(20px); + width: 300px; + opacity: 0; + } + .layout-sidebar nav { + padding: 1rem 1rem; + } + .layout-sidebar.active { + opacity: 1; + transform: translateX(0); + } + .layout-news-active .layout-sidebar { + top: 0; + } + .layout-mask { + background-color: rgba(0, 0, 0, 0.1); + } + .layout-mask.layout-mask-active { + z-index: 1101; + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + background-color: rgba(0, 0, 0, 0.4); + transition: background-color 0.5s; + } + .doc-section-nav { + display: none; + } + .video-container { + position: relative; + width: 100%; + height: 0; + padding-bottom: 56.25%; + } + .video-container iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + } + .layout-content { + padding-left: 2rem; + padding-right: 2rem; + } + .layout-footer { + padding-left: 2rem; + padding-right: 2rem; + } + .blocked-scroll { + overflow: hidden; + padding-right: var(--scrollbar-width); + } +} +@media (max-width: 768px) { + .DocSearch-Container { + position: fixed !important; + } +} +@media screen and (max-width: 575px) { + .layout-topbar-inner { + padding-left: 1rem; + padding-right: 1rem; + } + .layout-topbar-inner .layout-topbar-logo { + display: none; + } + .layout-topbar-inner .layout-topbar-icon { + display: inline-flex; + } + .layout-content { + padding-left: 1rem; + padding-right: 1rem; + } + .layout-footer { + padding-left: 1rem; + padding-right: 1rem; + } + .doc-tabmenu li { + flex: 1 1 0; + } + .doc-tabmenu li button { + width: 100%; + min-width: auto; + } + .layout-news { + padding-left: 1rem; + padding-right: 1rem; + font-size: 12px; + } + .layout-news > i { + display: none; + } +} +.landing { + background-color: var(--home-bg); + scroll-behavior: smooth; + padding-top: 4rem; +} +.landing .box { + border: 1px solid var(--home-border-color); + border-radius: 10px; + background-color: var(--home-box-bg); + position: relative; + z-index: 0; +} +.landing .box::before, .landing .box::after { + content: ""; + position: absolute; + top: -2px; + left: -2px; + right: -2px; + bottom: -2px; + border: 2px solid var(--home-box-ring-color); + transition: all 0.5s; + animation: clippath 3s infinite linear; + border-radius: 10px; + opacity: 0; + z-index: -1; +} +.landing .box::after { + animation: clippath 3s infinite -1.5s linear; +} +.landing .box:hover::before, .landing .box:hover::after { + opacity: 1; +} +@keyframes clippath { + 0%, 100% { + clip-path: inset(0 0 98% 0); + } + 25% { + clip-path: inset(0 98% 0 0); + } + 50% { + clip-path: inset(98% 0 0 0); + } + 75% { + clip-path: inset(0 0 0 98%); + } +} +.landing .linkbox { + transition: background-color 0.2s, border-color 0.2s; + display: inline-flex; + align-items: center; + color: var(--home-linkbox-text-color); + padding: 0.5rem 1rem; + border: var(--home-linkbox-border); + background-color: var(--home-linkbox-bg); + border-radius: 10px; + cursor: pointer; +} +.landing .linkbox:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +} +.landing .linkbox:hover { + background: var(--home-linkbox-hover-bg); +} +.landing .linkbox.active { + background: var(--home-highlight-color); + color: var(--home-highlight-fore-color); +} +.landing .linkbox.active:hover { + background: var(--home-highlight-darker-color); +} +.landing .section-header { + font-size: 2rem; + color: var(--home-primary-text-color); + font-weight: 700; + text-align: center; + padding: 0 2rem; +} +.landing .section-detail { + text-align: center; + color: var(--home-secondary-text-color); + font-weight: 500; + font-size: 1.25rem; + margin: 1.5rem 0 0 0; + padding: 0 2rem; +} +.landing .section-divider { + border: 1px solid var(--home-border-color); + height: 1px; + border-bottom: 0 none; + overflow: hidden; +} +.landing.layout-news-active { + padding-top: 6rem; +} + +.text-secondary { + color: var(--home-secondary-text-color); +} + +.hover\:surface-hover:hover { + background-color: var(--surface-hover); +} + +.landing-footer-container { + max-width: 1250px !important; + margin-left: auto !important; + margin-right: auto !important; +} + +.animated-text { + position: relative; + color: var(--home-text-color); + padding: 0.25rem 0.5rem; + border-radius: var(--border-radius); + display: inline-block; + width: 14.45rem; +} +.animated-text::before { + border-radius: var(--border-radius); + animation: color-animation 2s linear infinite; + background-size: auto auto; + background-clip: border-box; + background-size: 200% auto; + content: ""; + width: 14.45rem; + height: 1.5rem; + position: absolute; + z-index: 0; + background-image: linear-gradient(-225deg, var(--blue-400) 30%, var(--cyan-400) 60%, var(--purple-400) 80%); + filter: blur(24px); + opacity: 0.6; +} +.animated-text > span { + position: relative; + z-index: 3; + background-image: linear-gradient(-225deg, var(--blue-400) 30%, var(--cyan-400) 60%, var(--purple-400) 80%); + animation: color-animation 2s linear infinite; + background-size: auto auto; + background-clip: border-box; + background-size: 200% auto; + background-clip: text; + text-fill-color: transparent; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +@keyframes color-animation { + 40%, 100% { + background-position: -200% center; + } +} +@keyframes scroll { + 0% { + transform: translateX(0%); + } + 100% { + transform: translateX(calc(-100% - 3rem)); + } +} +.landing-hero .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { + background: transparent; +} +.landing-hero .box { + box-shadow: var(--home-card-shadow); +} + +@media screen and (min-width: 1660px) { + .landing-hero { + width: 1504px !important; + margin-left: auto !important; + margin-right: auto !important; + } +} +.landing-users .fade-right { + background: linear-gradient(to left, var(--home-bg), transparent); +} +.landing-users .fade-left { + background: linear-gradient(to right, var(--home-bg), transparent); +} +.landing-users .section-detail { + max-width: 1250px !important; + margin-left: auto !important; + margin-right: auto !important; +} +.landing-users .users-container { + max-width: 1250px !important; + margin-left: auto !important; + margin-right: auto !important; +} +.landing-users .users-container .marquee-wrapper { + user-select: none; + gap: 3rem; + justify-content: center; + align-items: center; + flex-shrink: 0; +} +.landing-users .users-container .marquee { + flex-shrink: 0; + display: flex; + align-items: center; + justify-content: space-around; + gap: 3rem; + min-width: 100%; + animation: scroll 30s linear infinite; +} +.landing-users .users-container .marquee > div { + max-width: clamp(10rem, 1rem + 28vmin, 20rem); + aspect-ratio: 1; + display: flex; + justify-content: center; + align-items: center; + height: 8rem; +} +.landing-users .users-container .marquee.marquee-reverse { + animation-direction: reverse; + animation-delay: -15s; +} + +.landing-getstarted .download-icon { + color: var(--home-highlight-color); +} +.landing-getstarted .download-box span { + color: var(--home-primary-text-color); +} + +.landing-themes .table-container { + width: 1250px; + box-shadow: var(--home-card-shadow); +} + +.landing-blocks { + background: var(--home-blocks-bg); +} +.landing-blocks * { + box-sizing: content-box; +} +.landing-blocks .prime-blocks { + transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg); + margin: -12rem 0; +} +.landing-blocks .prime-blocks.blocks-animation .prime-block .block-sidebar, +.landing-blocks .prime-blocks.blocks-animation .prime-block .block-header, +.landing-blocks .prime-blocks.blocks-animation .prime-block .block-sidebar-list, +.landing-blocks .prime-blocks.blocks-animation .prime-block .block-content { + opacity: 1; + visibility: visible; + transform: scale(1); +} +.landing-blocks .prime-blocks .prime-block { + background: var(--home-blocks-block-bg); + box-shadow: var(--home-blocks-block-shadow); + border-left: var(--home-blocks-border-left); + border-bottom: var(--home-blocks-border-bottom); + border-radius: 10px; + height: 300px; + width: 600px; + position: relative; + z-index: 1; + margin: 15px; + transition: opacity 1.3s, transform 1.3s; +} +.landing-blocks .prime-blocks .prime-block .block-sidebar, +.landing-blocks .prime-blocks .prime-block .block-header, +.landing-blocks .prime-blocks .prime-block .block-sidebar-list, +.landing-blocks .prime-blocks .prime-block .block-content { + transition: opacity 1.3s, transform 1.3s; + opacity: 0; + visibility: hidden; + transform: scale(0.9); +} +.landing-blocks .prime-blocks .prime-block:before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + border-radius: 6px; + border: var(--home-blocks-border); +} +.landing-blocks .prime-blocks .prime-block .block-sidebar, +.landing-blocks .prime-blocks .prime-block .block-header { + background: var(--home-blocks-sidebar-bg); + border-radius: 6px; +} +.landing-blocks .prime-blocks .prime-block .block-sidebar-list { + background: var(--home-blocks-list-bg); +} +.landing-blocks .prime-blocks .prime-block .block-content .block-main { + border: var(--home-blocks-main-border); + border-radius: 13px; + background: var(--home-blocks-main-bg); +} +.landing-blocks .prime-blocks .block-item { + background: var(--home-blocks-item-bg); + border-radius: 6px; + padding: 1rem; + transition: transform 1s, box-shadow 1s; + overflow: hidden; + transform: translateY(0); +} +.landing-blocks .prime-blocks .block-item .box { + border-radius: 4px; + width: 14px; + height: 14px; +} +.landing-blocks .prime-blocks .block-item .box.box-orange { + background-color: #F57C00; +} +.landing-blocks .prime-blocks .block-item .box.box-pink { + background-color: #E91E63; +} +.landing-blocks .prime-blocks .block-item .box.box-green { + background-color: #4CAF50; +} +.landing-blocks .prime-blocks .block-item .box.box-blue { + background-color: #2196F3; +} +.landing-blocks .prime-blocks .block-item .block-image { + background-color: var(--home-blocks-image-bg); + height: 44px; +} +.landing-blocks .prime-blocks .block-item .text { + display: block; + font-size: 24px; + font-weight: 700; + color: var(--home-blocks-text-color); +} +.landing-blocks .prime-blocks .block-item.block-item-active { + box-shadow: var(--home-blocks-active-shadow); + border-radius: 6px; + border-top: var(--home-blocks-active-border-top); + border-right: var(--home-blocks-active-border-right); + border-bottom: var(--home-blocks-active-border-bottom); + border-left: var(--home-blocks-active-border-left); + position: relative; + z-index: 5; + animation: block-animation 1500ms ease-in-out alternate infinite; +} +.landing-blocks .prime-blocks .block-item.block-item-active.animation-2 { + animation-delay: 1s; +} +.landing-blocks .prime-blocks .block-item.block-item-active.animation-3 { + animation-delay: 1.5s; +} +.landing-blocks .prime-blocks .block-item.block-item-col { + background: none !important; + border: none; + padding: 12px 0; +} +.landing-blocks .prime-blocks .block-item.block-item-table { + border-radius: 100px; + padding: 10px; +} +.landing-blocks .prime-blocks .block-item.block-item-table .bar { + background: var(--home-blocks-tablebar-bg); +} +.landing-blocks .prime-blocks .bar { + background: var(--home-blocks-bar-bg); + height: 6px; + border-radius: 10px; +} +.landing-blocks .prime-blocks .bar.bar-highlight { + background: var(--home-highlight-color); +} +.landing-blocks .prime-blocks .bar.bar-highlight:before { + background: var(--home-highlight-fore-color) !important; +} +.landing-blocks .prime-blocks .bar.bar-button { + height: 16px; + position: relative; +} +.landing-blocks .prime-blocks .bar.bar-button:before { + content: ""; + position: absolute; + top: 6px; + left: 10px; + right: 10px; + bottom: 6px; + height: 3px; + border-radius: 6px; + background: var(--home-blocks-bar-button-bg); +} +.landing-blocks .prime-blocks .circle { + width: 18px; + height: 18px; + border-radius: 100%; + background: var(--home-blocks-circle-bg); +} +.landing-blocks .prime-blocks .circle.circle-small { + width: 8px; + height: 8px; +} +.landing-blocks .prime-blocks .circle.circle-medium { + width: 14px; + height: 14px; +} +.landing-blocks .prime-blocks .circle.circle-highlight { + background: var(--home-highlight-color); +} + +@media screen and (max-width: 1199px) { + .landing-blocks .prime-blocks { + margin: -24rem 0; + transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg) scale(0.6); + } +} +@keyframes block-animation { + to { + transform: translateY(-10px) translateX(10px) scale(1.02); + box-shadow: var(--home-blocks-animation-shadow); + } +} +.landing-templates { + overflow: hidden; + background: var(--home-templates-bg); +} +.landing-templates .templates { + transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg); + position: relative; + z-index: 1; +} +.landing-templates .templates .template-block { + width: 504px; + height: 257px; + background-size: cover; + border-radius: 6px; + overflow: hidden; + box-shadow: var(--home-templates-block-shadow); + border-left: var(--home-templates-block-border-left); + border-bottom: var(--home-templates-block-border-bottom); + position: relative; + z-index: 1; + transition: 1.5s; + opacity: 0; + visibility: hidden; +} +.landing-templates .templates .template-block.block-1 { + animation: animated-block-1 2s ease-in-out alternate infinite; +} +.landing-templates .templates .template-block.block-2 { + animation: animated-block-2 2s 0.2s ease-in-out alternate infinite; +} +.landing-templates .templates .template-block.block-middle { + transform: scale(0.9); +} +.landing-templates .templates .template-block.block-3 { + animation: animated-block-1 2s 0.4s ease-in-out alternate infinite; +} +.landing-templates .templates .template-block.block-4 { + animation: animated-block-2 2s 0.6s ease-in-out alternate infinite; +} +.landing-templates .templates .template-block.block-5 { + animation: animated-block-1 2s 0.8s ease-in-out alternate infinite; +} +.landing-templates .templates .template-block.block-6 { + animation: animated-block-2 2s 1s ease-in-out alternate infinite; +} +.landing-templates .templates .template-block:hover:before { + opacity: 1; +} +.landing-templates .templates .template-block:hover .templates-btn { + transform: scale(1); + opacity: 1; + visibility: visible; +} +.landing-templates .templates .template-block:before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: -1; + transition: 0.4s; + opacity: 0; + background-color: var(--home-templates-block-hover-bg); +} +.landing-templates .templates .template-block .templates-btn { + transition: 0.4s; + opacity: 0; + visibility: hidden; + transform: scale(0.4); + background: var(--home-templates-btn-bg); + border-radius: 30px; + padding: 8px 10px; + color: var(--home-templates-btn-text-color); + font-size: 14px; + text-decoration: none; + box-shadow: var(--home-templates-btn-shadow); + border-top: var(--home-templates-btn-border-top); + border-right: var(--home-templates-btn-border-right); + border-left: var(--home-templates-btn-border-left); + border-bottom: var(--home-templates-btn-border-bottom); +} +.landing-templates .templates .template-block.border-none { + box-shadow: none; +} +.landing-templates .templates .template-block.border-none:before { + display: none; +} +.landing-templates .templates .template-block .img-1 { + opacity: 0; + visibility: hidden; + transition: 1s; + transform: scale(0.4); + transition-delay: 0.8s; +} +.landing-templates .templates .template-block .img-2 { + opacity: 0; + visibility: hidden; + transition: 1s; + transform: scale(0.4); + transition-delay: 1.1s; +} +.landing-templates .templates .lines { + opacity: 0; + position: absolute; + top: 0; + left: 0; + width: 0%; + height: 100%; + z-index: -1; + transition: 2s; +} +.landing-templates .templates .lines .top { + position: absolute; + top: 0; + left: 50%; + transform: translate(-50%, -25%); + z-index: -1; + display: flex; + width: 800px; + height: 200%; + align-items: center; + justify-content: space-between; +} +.landing-templates .templates .lines .top span { + display: block; + width: 1px; + height: 100%; + background: var(--home-templates-line); +} +.landing-templates .templates .lines .left { + position: absolute; + top: 50%; + left: 0; + transform: translateY(-50%); + z-index: -1; + width: 100%; + height: 800px; + display: flex; + align-items: center; + flex-direction: column; + justify-content: space-between; +} +.landing-templates .templates .lines .left span { + display: block; + width: 100%; + height: 1px; + background: var(--home-templates-line); +} +.landing-templates .templates.templates-animation .template-block { + opacity: 1; + visibility: visible; + transition: none !important; +} +.landing-templates .templates.templates-animation .block-middle .theme-mode, .landing-templates .templates.templates-animation .block-middle img { + opacity: 1; + visibility: visible; + transform: scale(1); + transition: none !important; +} +.landing-templates .templates.templates-animation .lines { + opacity: 0.5; + width: 100%; +} + +@media screen and (max-width: 1199px) { + .landing-templates .templates .template-block { + width: 336px; + height: 171px; + border: none !important; + } +} +@media screen and (max-width: 991px) { + .landing-templates .templates { + transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); + } + .landing-templates .templates .template-block { + width: 336px; + height: 171px; + border: none !important; + animation: none !important; + margin-right: 0 !important; + margin-left: 0 !important; + } + .landing-templates .templates .lines { + display: none; + } +} +@media screen and (max-width: 767px) { + .landing-templates .templates { + transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); + } + .landing-templates .templates .template-block { + width: 354px; + height: 180px; + } +} +@keyframes animated-block-1 { + to { + transform: translateX(-10px); + } +} +@keyframes animated-block-2 { + to { + transform: translateX(10px); + } +} +.landing-features .box { + box-shadow: var(--home-features-card-shadow); +} +.landing-features .features-container { + max-width: 1250px !important; + margin-left: auto !important; + margin-right: auto !important; +} + +.landing-footer a:focus-visible { + outline: 0 none; + outline-offset: 0; + box-shadow: var(--focus-ring); +}