diff --git a/.gitignore b/.gitignore index f292afd97..9d15d61de 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,7 @@ yarn-error.log* *.sln *.sw* +# Themes +public/themes/soho-light/ +public/themes/soho-dark/ + diff --git a/gulpfile.js b/gulpfile.js index 6967a88b5..270878290 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -25,7 +25,7 @@ gulp.task('build-css', function() { gulp.task('build-themes', function() { return gulp.src([ - 'public/themes/**/*' + 'public/themes/**/*','!public/themes/soho-*/**/*' ]) .pipe(gulp.dest('resources/themes')); }) diff --git a/public/demo/images/themes/fluent-light.png b/public/demo/images/themes/fluent-light.png new file mode 100644 index 000000000..4766eebb7 Binary files /dev/null and b/public/demo/images/themes/fluent-light.png differ diff --git a/public/demo/images/themes/soho-dark.png b/public/demo/images/themes/soho-dark.png new file mode 100644 index 000000000..02194d4cd Binary files /dev/null and b/public/demo/images/themes/soho-dark.png differ diff --git a/public/demo/images/themes/soho-light.png b/public/demo/images/themes/soho-light.png new file mode 100644 index 000000000..9532fb526 Binary files /dev/null and b/public/demo/images/themes/soho-light.png differ diff --git a/public/themes/arya-blue/theme.css b/public/themes/arya-blue/theme.css index a3bb69872..471084c6a 100644 --- a/public/themes/arya-blue/theme.css +++ b/public/themes/arya-blue/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #383838; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #64B5F6; + background: #64B5F6; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #64B5F6; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; border-color: #64B5F6; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #64B5F6; - background: #64B5F6; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #2396f2; background: #2396f2; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #383838; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #64B5F6; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #2396f2; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #383838; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #2396f2; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #2396f2; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1278,6 +1266,18 @@ color: #64B5F6; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #64B5F6; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: #93cbf9; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #64B5F6; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #64B5F6; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #64B5F6; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #93cbf9; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #64B5F6; + box-shadow: inset 0 2px 0 0 rgba(100, 181, 246, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #64B5F6; + box-shadow: inset 0 -2px 0 0 rgba(100, 181, 246, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #43a5f4; color: #212529; border-color: #43a5f4; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #2396f2; + color: #212529; + border-color: #2396f2; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #93cbf9; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #93cbf9; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #0c78cf; + color: rgba(12, 120, 207, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: #383838; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #64B5F6; - border-color: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + border-color: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #93cbf9; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #93cbf9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + 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 { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #93cbf9; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/arya-green/theme.css b/public/themes/arya-green/theme.css index 51e8d090e..fff76d721 100644 --- a/public/themes/arya-green/theme.css +++ b/public/themes/arya-green/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #383838; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #81C784; + background: #81C784; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #81C784; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; border-color: #81C784; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #81C784; - background: #81C784; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #54b358; background: #54b358; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #383838; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #81C784; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #54b358; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #383838; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #54b358; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #54b358; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1278,6 +1266,18 @@ color: #81C784; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #81C784; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: #a7d8a9; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #81C784; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #81C784; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #81C784; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #a7d8a9; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #81C784; + box-shadow: inset 0 2px 0 0 rgba(129, 199, 132, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #81C784; + box-shadow: inset 0 -2px 0 0 rgba(129, 199, 132, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #6abd6e; color: #212529; border-color: #6abd6e; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #54b358; + color: #212529; + border-color: #54b358; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #a7d8a9; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #a7d8a9; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #3e8b41; + color: rgba(62, 139, 65, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: #383838; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #81C784; - border-color: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + border-color: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #a7d8a9; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #a7d8a9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + 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 { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #a7d8a9; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/arya-orange/theme.css b/public/themes/arya-orange/theme.css index ca2aed1f4..121f0a2ac 100644 --- a/public/themes/arya-orange/theme.css +++ b/public/themes/arya-orange/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #383838; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #FFD54F; + background: #FFD54F; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #FFD54F; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; border-color: #FFD54F; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #FFD54F; - background: #FFD54F; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #ffc50c; background: #ffc50c; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #383838; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #FFD54F; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #ffc50c; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #383838; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #ffc50c; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #ffc50c; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1278,6 +1266,18 @@ color: #FFD54F; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #FFD54F; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: #ffe284; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #FFD54F; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #FFD54F; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #FFD54F; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #ffe284; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #FFD54F; + box-shadow: inset 0 2px 0 0 rgba(255, 213, 79, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #FFD54F; + box-shadow: inset 0 -2px 0 0 rgba(255, 213, 79, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #ffcd2e; color: #212529; border-color: #ffcd2e; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #ffc50c; + color: #212529; + border-color: #ffc50c; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #ffe284; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #ffe284; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #cf9d00; + color: rgba(207, 157, 0, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: #383838; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #FFD54F; - border-color: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + border-color: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #ffe284; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #ffe284; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + 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 { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #ffe284; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/arya-purple/theme.css b/public/themes/arya-purple/theme.css index cdcc19f50..eb022380e 100644 --- a/public/themes/arya-purple/theme.css +++ b/public/themes/arya-purple/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #383838; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #BA68C8; + background: #BA68C8; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #BA68C8; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; border-color: #BA68C8; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #BA68C8; - background: #BA68C8; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #a241b2; background: #a241b2; color: #ffffff; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #383838; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #383838; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #BA68C8; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #a241b2; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #383838; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #ffffff; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #a241b2; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #a241b2; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #ffffff; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #ffffff; -} - .p-selectbutton .p-button { background: #1e1e1e; border: 1px solid #383838; @@ -1278,6 +1266,18 @@ color: #BA68C8; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #BA68C8; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: #cf95d9; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #BA68C8; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #BA68C8; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #BA68C8; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #cf95d9; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #BA68C8; + box-shadow: inset 0 2px 0 0 rgba(186, 104, 200, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #BA68C8; + box-shadow: inset 0 -2px 0 0 rgba(186, 104, 200, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #b052c0; color: #ffffff; border-color: #b052c0; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #a241b2; + color: #ffffff; + border-color: #a241b2; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #cf95d9; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #cf95d9; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #752f81; + color: rgba(117, 47, 129, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: #383838; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #BA68C8; - border-color: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + border-color: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #cf95d9; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #cf95d9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + 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 { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #cf95d9; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index c50d9f71d..0b3da1036 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -342,20 +342,20 @@ color: #151515; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #8dd0ff; + background: #8dd0ff; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #3f4b5b; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #e3f3fe; border-color: #8dd0ff; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #8dd0ff; - background: #8dd0ff; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #1dadff; background: #1dadff; color: #151515; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #3f4b5b; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #3f4b5b; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #8dd0ff; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #3f4b5b; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #1dadff; } @@ -1278,6 +1278,18 @@ color: #8dd0ff; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #8dd0ff; @@ -1781,9 +1793,6 @@ color: rgba(255, 255, 255, 0.87); background: #2a323d; } -.p-datatable .p-sortable-column { - outline-color: #e3f3fe; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #8dd0ff; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.04); + color: #8dd0ff; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #8dd0ff; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #e3f3fe; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #56bdff; color: #151515; border-color: #56bdff; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #1dadff; + color: #151515; + border-color: #1dadff; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #e3f3fe; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index f8565ad69..9be3de4da 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -342,20 +342,20 @@ color: #151515; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #c298d8; + background: #c298d8; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #3f4b5b; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #f0e6f5; border-color: #c298d8; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #c298d8; - background: #c298d8; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #9954bb; background: #9954bb; color: #151515; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #3f4b5b; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #3f4b5b; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #c298d8; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #3f4b5b; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9954bb; } @@ -1278,6 +1278,18 @@ color: #c298d8; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #c298d8; @@ -1781,9 +1793,6 @@ color: rgba(255, 255, 255, 0.87); background: #2a323d; } -.p-datatable .p-sortable-column { - outline-color: #f0e6f5; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #c298d8; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.04); + color: #c298d8; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #c298d8; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #f0e6f5; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #2a323d; color: rgba(255, 255, 255, 0.87); @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #aa70c7; color: #151515; border-color: #aa70c7; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #9954bb; + color: #151515; + border-color: #9954bb; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #f0e6f5; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index 96f6cd1ad..5deea43f5 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -1,7 +1,7 @@ @charset "UTF-8"; :root { --surface-a:#ffffff; - --surface-b:rgba(0, 0, 0, 0.03); + --surface-b:#efefef; --surface-c:#e9ecef; --surface-d:#dee2e6; --surface-e:#ffffff; @@ -142,7 +142,7 @@ box-shadow: none; } .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-datepicker .p-datepicker-header { padding: 0.5rem; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #007bff; + background: #007bff; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #ced4da; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); border-color: #007bff; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #007bff; - background: #007bff; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #0062cc; background: #0062cc; color: #ffffff; @@ -365,15 +365,15 @@ } .p-input-filled .p-checkbox .p-checkbox-box { - background-color: rgba(0, 0, 0, 0.03); -} -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #007bff; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #efefef; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #0062cc; } @@ -490,7 +490,7 @@ padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; margin: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -529,17 +529,17 @@ } .p-input-filled .p-dropdown { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-dropdown:not(.p-disabled).p-focus { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-editor-container .p-editor-toolbar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border-top-right-radius: 4px; border-top-left-radius: 4px; } @@ -824,13 +824,13 @@ } .p-input-filled .p-inputtext { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-inputtext:enabled:focus { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-inputtext-sm .p-inputtext { @@ -853,7 +853,7 @@ padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; margin: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -942,7 +942,7 @@ padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; margin: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -1012,13 +1012,13 @@ } .p-input-filled .p-multiselect { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-multiselect:not(.p-disabled).p-focus { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-password-panel { @@ -1075,10 +1075,10 @@ } .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { background: #007bff; @@ -1278,6 +1278,18 @@ color: #007bff; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} .p-button.p-button-text { background-color: transparent; color: #007bff; @@ -1747,7 +1759,7 @@ border-radius: 0; } .p-datatable .p-datatable-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: solid #dee2e6; border-width: 1px 0 0 0; @@ -1755,7 +1767,7 @@ font-weight: 600; } .p-datatable .p-datatable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; border-width: 1px 0 1px 0; @@ -1781,9 +1793,6 @@ color: #212529; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: rgba(38, 143, 255, 0.5); -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #6c757d; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #007bff; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #007bff; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #007bff; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem rgba(38, 143, 255, 0.5); + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #212529; @@ -1873,7 +1893,7 @@ } .p-datatable .p-datatable-scrollable-header, .p-datatable .p-datatable-scrollable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-datatable .p-datatable-loading-icon { font-size: 2rem; @@ -1952,7 +1972,7 @@ border-radius: 0; } .p-dataview .p-dataview-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: solid #dee2e6; border-width: 1px 0 0 0; @@ -1970,7 +1990,7 @@ border-width: 1px 0 0 0; } .p-dataview .p-dataview-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; border-width: 1px 0 1px 0; @@ -1981,7 +2001,7 @@ } .fc .fc-view-container th { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 1px solid #dee2e6; color: #212529; } @@ -2002,7 +2022,7 @@ color: #ffffff; } .fc .fc-view-container .fc-divider { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 1px solid #dee2e6; } .fc .fc-toolbar .fc-button { @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #0069d9; color: #ffffff; border-color: #0069d9; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #0062cc; + color: #ffffff; + border-color: #0062cc; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2087,7 +2117,7 @@ margin-bottom: 0.5rem; } .p-orderlist .p-orderlist-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; padding: 1rem 1.25rem; @@ -2262,7 +2292,7 @@ margin-bottom: 0.5rem; } .p-picklist .p-picklist-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; padding: 1rem 1.25rem; @@ -2418,7 +2448,7 @@ border-radius: 0; } .p-treetable .p-treetable-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: solid #dee2e6; border-width: 1px 0 0 0; @@ -2426,7 +2456,7 @@ font-weight: 600; } .p-treetable .p-treetable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; border-width: 1px 0 1px 0; @@ -2542,7 +2572,7 @@ } .p-treetable .p-treetable-scrollable-header, .p-treetable .p-treetable-scrollable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-treetable .p-treetable-loading-icon { font-size: 2rem; @@ -2603,7 +2633,7 @@ padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; font-weight: 600; border-radius: 4px; transition: box-shadow 0.15s; @@ -2622,7 +2652,7 @@ color: #212529; } .p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border-color: #dee2e6; color: #212529; border-bottom-right-radius: 0; @@ -2701,7 +2731,7 @@ padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; font-weight: 600; border-radius: 4px; } @@ -2735,7 +2765,7 @@ .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem 1.25rem; - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -2783,7 +2813,7 @@ } .p-scrollpanel .p-scrollpanel-bar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 0 none; } @@ -2833,7 +2863,7 @@ } .p-toolbar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 1px solid #dee2e6; padding: 1rem 1.25rem; border-radius: 4px; @@ -2999,7 +3029,7 @@ } .p-fileupload .p-fileupload-buttonbar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; @@ -3045,7 +3075,7 @@ } .p-breadcrumb { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 0 none; border-radius: 4px; padding: 1rem; @@ -3143,7 +3173,7 @@ .p-megamenu { padding: 0.5rem 1rem; - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: rgba(0, 0, 0, 0.9); border: 0 none; border-radius: 4px; @@ -3333,7 +3363,7 @@ .p-menubar { padding: 0.5rem 1rem; - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: rgba(0, 0, 0, 0.9); border: 0 none; border-radius: 4px; @@ -3573,7 +3603,7 @@ padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; font-weight: 600; border-radius: 4px; transition: box-shadow 0.15s; @@ -3598,7 +3628,7 @@ margin-bottom: 0; } .p-panelmenu .p-panelmenu-header.p-highlight > a { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border-color: #dee2e6; color: #212529; border-bottom-right-radius: 0; @@ -4058,7 +4088,7 @@ .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; - color: rgba(0, 0, 0, 0.03); + color: #efefef; width: 4rem; height: 4rem; transition: box-shadow 0.15s; @@ -4069,11 +4099,11 @@ } .p-galleria .p-galleria-close:hover { background: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.03); + color: #efefef; } .p-galleria .p-galleria-item-nav { background: transparent; - color: rgba(0, 0, 0, 0.03); + color: #efefef; width: 4rem; height: 4rem; transition: box-shadow 0.15s; @@ -4086,11 +4116,11 @@ } .p-galleria .p-galleria-item-nav:not(.p-disabled):hover { background: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.03); + color: #efefef; } .p-galleria .p-galleria-caption { background: rgba(0, 0, 0, 0.5); - color: rgba(0, 0, 0, 0.03); + color: #efefef; padding: 1rem; } .p-galleria .p-galleria-indicators { @@ -4137,7 +4167,7 @@ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; - color: rgba(0, 0, 0, 0.03); + color: #efefef; width: 2rem; height: 2rem; transition: box-shadow 0.15s; @@ -4146,7 +4176,7 @@ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.03); + color: #efefef; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content { transition: box-shadow 0.15s; diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index 9d2a78b3e..d559b1937 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -1,7 +1,7 @@ @charset "UTF-8"; :root { --surface-a:#ffffff; - --surface-b:rgba(0, 0, 0, 0.03); + --surface-b:#efefef; --surface-c:#e9ecef; --surface-d:#dee2e6; --surface-e:#ffffff; @@ -142,7 +142,7 @@ box-shadow: none; } .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-datepicker .p-datepicker-header { padding: 0.5rem; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #883cae; + background: #883cae; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #ced4da; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); border-color: #883cae; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #883cae; - background: #883cae; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #68329e; background: #68329e; color: #ffffff; @@ -365,15 +365,15 @@ } .p-input-filled .p-checkbox .p-checkbox-box { - background-color: rgba(0, 0, 0, 0.03); -} -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #883cae; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #efefef; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #68329e; } @@ -490,7 +490,7 @@ padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; margin: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -529,17 +529,17 @@ } .p-input-filled .p-dropdown { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-input-filled .p-dropdown:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-dropdown:not(.p-disabled).p-focus { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-editor-container .p-editor-toolbar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border-top-right-radius: 4px; border-top-left-radius: 4px; } @@ -824,13 +824,13 @@ } .p-input-filled .p-inputtext { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-inputtext:enabled:hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-inputtext:enabled:focus { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-inputtext-sm .p-inputtext { @@ -853,7 +853,7 @@ padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; margin: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -942,7 +942,7 @@ padding: 0.75rem 1.5rem; border-bottom: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; margin: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -1012,13 +1012,13 @@ } .p-input-filled .p-multiselect { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-input-filled .p-multiselect:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-multiselect:not(.p-disabled).p-focus { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-password-panel { @@ -1075,10 +1075,10 @@ } .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { - background-color: rgba(0, 0, 0, 0.03); + background-color: #efefef; } .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { background: #883cae; @@ -1278,6 +1278,18 @@ color: #883cae; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} .p-button.p-button-text { background-color: transparent; color: #883cae; @@ -1747,7 +1759,7 @@ border-radius: 0; } .p-datatable .p-datatable-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: solid #dee2e6; border-width: 1px 0 0 0; @@ -1755,7 +1767,7 @@ font-weight: 600; } .p-datatable .p-datatable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; border-width: 1px 0 1px 0; @@ -1781,9 +1793,6 @@ color: #212529; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: rgba(136, 60, 174, 0.5); -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #6c757d; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #883cae; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #883cae; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #883cae; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem rgba(136, 60, 174, 0.5); + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #212529; @@ -1873,7 +1893,7 @@ } .p-datatable .p-datatable-scrollable-header, .p-datatable .p-datatable-scrollable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-datatable .p-datatable-loading-icon { font-size: 2rem; @@ -1952,7 +1972,7 @@ border-radius: 0; } .p-dataview .p-dataview-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: solid #dee2e6; border-width: 1px 0 0 0; @@ -1970,7 +1990,7 @@ border-width: 1px 0 0 0; } .p-dataview .p-dataview-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; border-width: 1px 0 1px 0; @@ -1981,7 +2001,7 @@ } .fc .fc-view-container th { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 1px solid #dee2e6; color: #212529; } @@ -2002,7 +2022,7 @@ color: #ffffff; } .fc .fc-view-container .fc-divider { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 1px solid #dee2e6; } .fc .fc-toolbar .fc-button { @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #7a38a7; color: #ffffff; border-color: #7a38a7; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #68329e; + color: #ffffff; + border-color: #68329e; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5); +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2087,7 +2117,7 @@ margin-bottom: 0.5rem; } .p-orderlist .p-orderlist-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; padding: 1rem 1.25rem; @@ -2262,7 +2292,7 @@ margin-bottom: 0.5rem; } .p-picklist .p-picklist-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; padding: 1rem 1.25rem; @@ -2418,7 +2448,7 @@ border-radius: 0; } .p-treetable .p-treetable-header { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: solid #dee2e6; border-width: 1px 0 0 0; @@ -2426,7 +2456,7 @@ font-weight: 600; } .p-treetable .p-treetable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border: 1px solid #dee2e6; border-width: 1px 0 1px 0; @@ -2542,7 +2572,7 @@ } .p-treetable .p-treetable-scrollable-header, .p-treetable .p-treetable-scrollable-footer { - background: rgba(0, 0, 0, 0.03); + background: #efefef; } .p-treetable .p-treetable-loading-icon { font-size: 2rem; @@ -2603,7 +2633,7 @@ padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; font-weight: 600; border-radius: 4px; transition: box-shadow 0.15s; @@ -2622,7 +2652,7 @@ color: #212529; } .p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border-color: #dee2e6; color: #212529; border-bottom-right-radius: 0; @@ -2701,7 +2731,7 @@ padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; font-weight: 600; border-radius: 4px; } @@ -2735,7 +2765,7 @@ .p-panel .p-panel-header { border: 1px solid #dee2e6; padding: 1rem 1.25rem; - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: #212529; border-top-right-radius: 4px; border-top-left-radius: 4px; @@ -2783,7 +2813,7 @@ } .p-scrollpanel .p-scrollpanel-bar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 0 none; } @@ -2833,7 +2863,7 @@ } .p-toolbar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 1px solid #dee2e6; padding: 1rem 1.25rem; border-radius: 4px; @@ -2999,7 +3029,7 @@ } .p-fileupload .p-fileupload-buttonbar { - background: rgba(0, 0, 0, 0.03); + background: #efefef; padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; @@ -3045,7 +3075,7 @@ } .p-breadcrumb { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border: 0 none; border-radius: 4px; padding: 1rem; @@ -3143,7 +3173,7 @@ .p-megamenu { padding: 0.5rem 1rem; - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: rgba(0, 0, 0, 0.9); border: 0 none; border-radius: 4px; @@ -3333,7 +3363,7 @@ .p-menubar { padding: 0.5rem 1rem; - background: rgba(0, 0, 0, 0.03); + background: #efefef; color: rgba(0, 0, 0, 0.9); border: 0 none; border-radius: 4px; @@ -3573,7 +3603,7 @@ padding: 1rem 1.25rem; border: 1px solid #dee2e6; color: #212529; - background: rgba(0, 0, 0, 0.03); + background: #efefef; font-weight: 600; border-radius: 4px; transition: box-shadow 0.15s; @@ -3598,7 +3628,7 @@ margin-bottom: 0; } .p-panelmenu .p-panelmenu-header.p-highlight > a { - background: rgba(0, 0, 0, 0.03); + background: #efefef; border-color: #dee2e6; color: #212529; border-bottom-right-radius: 0; @@ -4058,7 +4088,7 @@ .p-galleria .p-galleria-close { margin: 0.5rem; background: transparent; - color: rgba(0, 0, 0, 0.03); + color: #efefef; width: 4rem; height: 4rem; transition: box-shadow 0.15s; @@ -4069,11 +4099,11 @@ } .p-galleria .p-galleria-close:hover { background: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.03); + color: #efefef; } .p-galleria .p-galleria-item-nav { background: transparent; - color: rgba(0, 0, 0, 0.03); + color: #efefef; width: 4rem; height: 4rem; transition: box-shadow 0.15s; @@ -4086,11 +4116,11 @@ } .p-galleria .p-galleria-item-nav:not(.p-disabled):hover { background: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.03); + color: #efefef; } .p-galleria .p-galleria-caption { background: rgba(0, 0, 0, 0.5); - color: rgba(0, 0, 0, 0.03); + color: #efefef; padding: 1rem; } .p-galleria .p-galleria-indicators { @@ -4137,7 +4167,7 @@ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { margin: 0.5rem; background-color: transparent; - color: rgba(0, 0, 0, 0.03); + color: #efefef; width: 2rem; height: 2rem; transition: box-shadow 0.15s; @@ -4146,7 +4176,7 @@ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { background: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.03); + color: #efefef; } .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content { transition: box-shadow 0.15s; diff --git a/public/themes/fluent-light/theme.css b/public/themes/fluent-light/theme.css new file mode 100644 index 000000000..30bddb101 --- /dev/null +++ b/public/themes/fluent-light/theme.css @@ -0,0 +1,4447 @@ +@charset "UTF-8"; +:root { + --surface-a:#ffffff; + --surface-b:#faf9f8; + --surface-c:#f3f2f1; + --surface-d:#edebe9; + --surface-e:#ffffff; + --surface-f:#ffffff; + --text-color:#323130; + --text-color-secondary:#605e5c; + --primary-color:#0078d4; + --primary-color-text:#ffffff; + --font-family:-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; +} + +* { + box-sizing: border-box; +} + +.p-component { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + 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, .p-invalid { + color: #a4252c; +} + +.p-text-secondary { + color: #605e5c; +} + +.pi { + font-size: 1rem; +} + +.p-link { + font-size: 1rem; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + border-radius: 2px; +} +.p-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} + +.p-autocomplete .p-autocomplete-loader { + right: 0.5rem; +} +.p-autocomplete.p-autocomplete-dd .p-autocomplete-loader { + right: 2.857rem; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container { + padding: 0.25rem 0.5rem; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled):hover { + border-color: #323130; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-input-token { + padding: 0.25rem 0; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-input-token input { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + color: #323130; + padding: 0; + margin: 0; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { + padding: 0.25rem 0.5rem; + margin-right: 0.5rem; + background: #edebe9; + color: #323130; + border-radius: 2px; +} +.p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { + margin-left: 0.5rem; +} +.p-autocomplete.p-error > .p-inputtext, .p-autocomplete.p-invalid > .p-inputtext { + border-color: #a4252c; +} + +.p-autocomplete-panel { + background: #ffffff; + color: #323130; + border: 0 none; + border-radius: 2px; + 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-autocomplete-panel .p-autocomplete-items { + padding: 0; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item { + margin: 0; + padding: 0.75rem 0.5rem; + border: 1px solid transparent; + color: #323130; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover { + color: #323130; + background: #f3f2f1; +} +.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { + color: #323130; + background: #edebe9; +} + +.p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { + border-color: #a4252c; +} + +.p-datepicker { + padding: 0.75rem; + background: #ffffff; + color: #323130; + border: 1px solid #605e5c; + border-radius: 2px; +} +.p-datepicker:not(.p-datepicker-inline) { + background: #ffffff; + border: 0 none; + 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-datepicker:not(.p-datepicker-inline) .p-datepicker-header { + background: #ffffff; +} +.p-datepicker .p-datepicker-header { + padding: 0 0.5rem 0.5rem 0.5rem; + color: #323130; + background: #ffffff; + font-weight: 600; + margin: 0; + border-bottom: 0 none; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-datepicker .p-datepicker-header .p-datepicker-prev, +.p-datepicker .p-datepicker-header .p-datepicker-next { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + 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 { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-datepicker .p-datepicker-header .p-datepicker-prev:focus, +.p-datepicker .p-datepicker-header .p-datepicker-next:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-datepicker .p-datepicker-header .p-datepicker-title { + line-height: 2rem; +} +.p-datepicker .p-datepicker-header .p-datepicker-title select { + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-datepicker .p-datepicker-header .p-datepicker-title select:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { + margin-right: 0.5rem; +} +.p-datepicker table { + font-size: 1rem; + margin: 0; +} +.p-datepicker table th { + padding: 0.5rem; +} +.p-datepicker table th > span { + width: 2rem; + height: 2rem; +} +.p-datepicker table td { + padding: 1px; +} +.p-datepicker table td > span { + width: 2rem; + height: 2rem; + border-radius: 2px; + transition: box-shadow 0.2s; + border: 0 none; +} +.p-datepicker table td > span.p-highlight { + color: #323130; + background: #edebe9; +} +.p-datepicker table td > span:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-datepicker table td.p-datepicker-today > span { + background: #0078d4; + color: #ffffff; + border-color: transparent; +} +.p-datepicker table td.p-datepicker-today > span.p-highlight { + color: #323130; + background: #edebe9; +} +.p-datepicker .p-datepicker-buttonbar { + padding: 1rem 0; + border-top: 1px solid #edebe9; +} +.p-datepicker .p-datepicker-buttonbar .p-button { + width: auto; +} +.p-datepicker .p-timepicker { + border-top: 1px solid #edebe9; + padding: 0.5rem; +} +.p-datepicker .p-timepicker button { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-datepicker .p-timepicker button:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-datepicker .p-timepicker button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-datepicker .p-timepicker button:last-child { + margin-top: 0.2em; +} +.p-datepicker .p-timepicker span { + font-size: 1.25rem; +} +.p-datepicker .p-timepicker > div { + padding: 0 0.5rem; +} +.p-datepicker.p-datepicker-timeonly .p-timepicker { + border-top: 0 none; +} +.p-datepicker .p-monthpicker { + margin: 0; +} +.p-datepicker .p-monthpicker .p-monthpicker-month { + padding: 1px; + transition: box-shadow 0.2s; + border-radius: 2px; +} +.p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { + color: #323130; + background: #edebe9; +} +.p-datepicker.p-datepicker-multiple-month .p-datepicker-group { + border-right: 1px solid #edebe9; + padding-right: 0.75rem; + padding-left: 0.75rem; + padding-top: 0; + padding-bottom: 0; +} +.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child { + padding-left: 0; +} +.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child { + padding-right: 0; + border-right: 0 none; +} +.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover { + background: #f3f2f1; +} +.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { + background: #f3f2f1; +} +.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} + +.p-datepicker-mask.p-component-overlay { + background: rgba(0, 0, 0, 0.4); +} + +@media screen and (max-width: 769px) { + .p-datepicker table th, .p-datepicker table td { + padding: 0; + } +} +.p-checkbox { + width: 20px; + height: 20px; +} +.p-checkbox .p-checkbox-box { + border: 1px solid #605e5c; + background: #ffffff; + width: 20px; + height: 20px; + color: #323130; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-checkbox .p-checkbox-box .p-checkbox-icon { + transition-duration: 0.2s; + color: #ffffff; + font-size: 14px; +} +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #0078d4; + background: #0078d4; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + border-color: #323130; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + border-color: #005a9e; + background: #005a9e; + color: #ffffff; +} +.p-checkbox.p-error > .p-checkbox-box, .p-checkbox.p-invalid > .p-checkbox-box { + border-color: #a4252c; +} + +.p-input-filled .p-checkbox .p-checkbox-box { + background-color: #faf9f8; +} +.p-input-filled .p-checkbox .p-checkbox-box.p-highlight { + background: #0078d4; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #faf9f8; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #005a9e; +} + +.p-chips .p-chips-multiple-container { + padding: 0.25rem 0.5rem; +} +.p-chips .p-chips-multiple-container:not(.p-disabled):hover { + border-color: #323130; +} +.p-chips .p-chips-multiple-container:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-chips .p-chips-multiple-container .p-chips-token { + padding: 0.25rem 0.5rem; + margin-right: 0.5rem; + background: #edebe9; + color: #323130; + border-radius: 2px; +} +.p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { + margin-left: 0.5rem; +} +.p-chips .p-chips-multiple-container .p-chips-input-token { + padding: 0.25rem 0; +} +.p-chips .p-chips-multiple-container .p-chips-input-token input { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + color: #323130; + padding: 0; + margin: 0; +} +.p-chips.p-error > .p-inputtext, .p-chips.p-invalid > .p-inputtext { + border-color: #a4252c; +} + +.p-colorpicker-preview { + width: 2rem; + height: 2rem; +} + +.p-colorpicker-panel { + background: #323232; + border-color: #191919; +} +.p-colorpicker-panel .p-colorpicker-color-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; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 2px; +} +.p-dropdown:not(.p-disabled):hover { + border-color: #323130; +} +.p-dropdown:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-dropdown.p-dropdown-clearable .p-dropdown-label { + padding-right: 1.5rem; +} +.p-dropdown .p-dropdown-label { + background: transparent; + border: 0 none; +} +.p-dropdown .p-dropdown-label.p-placeholder { + color: #605e5c; +} +.p-dropdown .p-dropdown-label:enabled:focus { + outline: 0 none; + box-shadow: none; +} +.p-dropdown .p-dropdown-trigger { + background: transparent; + color: #605e5c; + width: 2.357rem; + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} +.p-dropdown .p-dropdown-clear-icon { + color: #605e5c; + right: 2.357rem; +} +.p-dropdown.p-error, .p-dropdown.p-invalid { + border-color: #a4252c; +} + +.p-dropdown-panel { + background: #ffffff; + color: #323130; + border: 0 none; + border-radius: 2px; + 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-panel .p-dropdown-header { + padding: 0.75rem 0.5rem; + border-bottom: 1px solid #edebe9; + color: #323130; + background: #ffffff; + margin: 0; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-dropdown-panel .p-dropdown-header .p-dropdown-filter { + padding-right: 1.5rem; +} +.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon { + right: 0.5rem; + color: #605e5c; +} +.p-dropdown-panel .p-dropdown-items { + padding: 0; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item { + margin: 0; + padding: 0.75rem 0.5rem; + border: 1px solid transparent; + color: #323130; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { + color: #323130; + background: #edebe9; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { + color: #323130; + background: #f3f2f1; +} +.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message { + padding: 0.75rem 0.5rem; + color: #323130; + background: transparent; +} + +.p-input-filled .p-dropdown { + background: #faf9f8; +} +.p-input-filled .p-dropdown:not(.p-disabled):hover { + background-color: #faf9f8; +} +.p-input-filled .p-dropdown:not(.p-disabled).p-focus { + background-color: #faf9f8; +} + +.p-editor-container .p-editor-toolbar { + background: #faf9f8; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-editor-container .p-editor-toolbar.ql-snow { + border: 1px solid #a19f9d; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke { + stroke: #605e5c; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-fill { + fill: #605e5c; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label { + border: 0 none; + color: #605e5c; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover { + color: #323130; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke { + stroke: #323130; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill { + fill: #323130; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label { + color: #323130; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke { + stroke: #323130; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill { + fill: #323130; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options { + background: #ffffff; + border: 0 none; + 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; + border-radius: 2px; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item { + color: #323130; + padding: 0.75rem 0.5rem; + border-radius: 2px; +} +.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { + color: #323130; + background: #f3f2f1; +} +.p-editor-container .p-editor-content { + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-editor-container .p-editor-content.ql-snow { + border: 1px solid #a19f9d; +} +.p-editor-container .p-editor-content .ql-editor { + background: #ffffff; + color: #323130; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-editor-container .ql-snow.ql-toolbar button:hover, +.p-editor-container .ql-snow.ql-toolbar button:focus { + color: #323130; +} +.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke, +.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke { + stroke: #323130; +} +.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill, +.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill { + fill: #323130; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected { + color: #0078d4; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke { + stroke: #0078d4; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill { + fill: #0078d4; +} +.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label, +.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label { + color: #0078d4; +} + +.p-inputgroup-addon { + background: #f3f2f1; + color: #605e5c; + border-top: 1px solid #605e5c; + border-left: 1px solid #605e5c; + border-bottom: 1px solid #605e5c; + padding: 0.5rem 0.5rem; + min-width: 2.357rem; +} +.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 { + 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 { + border-left: 0 none; +} +.p-inputgroup > .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 { + 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-inputgroup > .p-inputwrapper:first-child > .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-inputgroup > .p-inputwrapper:last-child > .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-inputnumber.p-error > .p-inputtext, .p-inputnumber.p-invalid > .p-inputtext { + border-color: #a4252c; +} + +.p-inputswitch { + width: 3rem; + height: 1.75rem; +} +.p-inputswitch .p-inputswitch-slider { + background: #ffffff; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 30px; +} +.p-inputswitch .p-inputswitch-slider:before { + background: #605e5c; + width: 1.25rem; + height: 1.25rem; + left: 0.25rem; + margin-top: -0.625rem; + border-radius: 50%; + transition-duration: 0.2s; +} +.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before { + transform: translateX(1.25rem); +} +.p-inputswitch.p-focus .p-inputswitch-slider { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { + background: #ffffff; +} +.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider { + background: #0078d4; +} +.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before { + background: #ffffff; +} +.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { + background: #005a9e; +} +.p-inputswitch.p-error, .p-inputswitch.p-invalid { + border-color: #a4252c; +} + +.p-inputtext { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + color: #323130; + background: #ffffff; + padding: 0.5rem 0.5rem; + border: 1px solid #605e5c; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + appearance: none; + border-radius: 2px; +} +.p-inputtext:enabled:hover { + border-color: #323130; +} +.p-inputtext:enabled:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-inputtext.p-error, .p-inputtext.p-invalid { + border-color: #a4252c; +} +.p-inputtext.p-inputtext-sm { + font-size: 0.875rem; + padding: 0.4375rem 0.4375rem; +} +.p-inputtext.p-inputtext-lg { + font-size: 1.25rem; + padding: 0.625rem 0.625rem; +} + +.p-float-label > label { + left: 0.5rem; + color: #605e5c; + transition-duration: 0.2s; +} + +.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-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; +} +.p-input-filled .p-inputtext:enabled:hover { + background-color: #faf9f8; +} +.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; + border: 1px solid #605e5c; + border-radius: 2px; +} +.p-listbox .p-listbox-header { + padding: 0.75rem 0.5rem; + border-bottom: 1px solid #edebe9; + color: #323130; + background: #ffffff; + margin: 0; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-listbox .p-listbox-header .p-listbox-filter { + padding-right: 1.5rem; +} +.p-listbox .p-listbox-header .p-listbox-filter-icon { + right: 0.5rem; + color: #605e5c; +} +.p-listbox .p-listbox-list { + padding: 0; +} +.p-listbox .p-listbox-list .p-listbox-item { + margin: 0; + padding: 0.75rem 0.5rem; + border: 1px solid transparent; + color: #323130; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-listbox .p-listbox-list .p-listbox-item.p-highlight { + color: #323130; + background: #edebe9; +} +.p-listbox .p-listbox-list .p-listbox-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-listbox .p-listbox-list .p-listbox-empty-message { + padding: 0.75rem 0.5rem; + color: #323130; + background: transparent; +} +.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { + color: #323130; + background: #f3f2f1; +} +.p-listbox.p-error, .p-listbox.p-invalid { + border-color: #a4252c; +} + +.p-multiselect { + background: #ffffff; + border: 1px solid #605e5c; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 2px; +} +.p-multiselect:not(.p-disabled):hover { + border-color: #323130; +} +.p-multiselect:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-multiselect .p-multiselect-label { + padding: 0.5rem 0.5rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-multiselect .p-multiselect-label.p-placeholder { + color: #605e5c; +} +.p-multiselect .p-multiselect-trigger { + background: transparent; + color: #605e5c; + width: 2.357rem; + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} +.p-multiselect.p-error, .p-multiselect.p-invalid { + border-color: #a4252c; +} + +.p-multiselect-panel { + background: #ffffff; + color: #323130; + border: 0 none; + border-radius: 2px; + 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-multiselect-panel .p-multiselect-header { + padding: 0.75rem 0.5rem; + border-bottom: 1px solid #edebe9; + color: #323130; + background: #ffffff; + margin: 0; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext { + padding-right: 1.5rem; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon { + right: 0.5rem; + color: #605e5c; +} +.p-multiselect-panel .p-multiselect-header .p-checkbox { + margin-right: 0.5rem; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-close { + margin-left: 0.5rem; + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-multiselect-panel .p-multiselect-items { + padding: 0; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item { + margin: 0; + padding: 0.75rem 0.5rem; + border: 1px solid transparent; + color: #323130; + background: transparent; + transition: box-shadow 0.2s; + border-radius: 0; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { + color: #323130; + background: #edebe9; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { + color: #323130; + background: #f3f2f1; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { + margin-right: 0.5rem; +} +.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message { + padding: 0.75rem 0.5rem; + color: #323130; + background: transparent; +} + +.p-input-filled .p-multiselect { + background: #faf9f8; +} +.p-input-filled .p-multiselect:not(.p-disabled):hover { + background-color: #faf9f8; +} +.p-input-filled .p-multiselect:not(.p-disabled).p-focus { + background-color: #faf9f8; +} + +.p-password-panel { + padding: 1rem; + background: #ffffff; + color: #323130; + border: 0 none; + 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; + border-radius: 2px; +} +.p-password-panel .p-password-meter { + margin-bottom: 0.5rem; +} + +.p-radiobutton { + width: 20px; + height: 20px; +} +.p-radiobutton .p-radiobutton-box { + border: 1px solid #605e5c; + background: #ffffff; + width: 20px; + height: 20px; + color: #323130; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover { + border-color: #323130; +} +.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + border-color: #0078d4; +} +.p-radiobutton .p-radiobutton-box .p-radiobutton-icon { + width: 12px; + height: 12px; + transition-duration: 0.2s; + background-color: #0078d4; +} +.p-radiobutton .p-radiobutton-box.p-highlight { + border-color: #0078d4; + background: #ffffff; +} +.p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { + border-color: #005a9e; + background: #ffffff; + color: #005a9e; +} +.p-radiobutton.p-error > .p-radiobutton-box, .p-radiobutton.p-invalid > .p-radiobutton-box { + border-color: #a4252c; +} + +.p-input-filled .p-radiobutton .p-radiobutton-box { + background-color: #faf9f8; +} +.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover { + background-color: #faf9f8; +} +.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight { + background: #ffffff; +} +.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover { + background: #ffffff; +} + +.p-rating .p-rating-icon { + color: #323130; + margin-left: 0.5rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + font-size: 1.143rem; +} +.p-rating .p-rating-icon.p-rating-cancel { + color: #a4252c; +} +.p-rating .p-rating-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-rating .p-rating-icon:first-child { + margin-left: 0; +} +.p-rating .p-rating-icon.pi-star { + color: #323130; +} +.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-icon:hover { + color: #0078d4; +} +.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-icon.p-rating-cancel:hover { + color: #a4252c; +} + +.p-selectbutton .p-button { + background: #ffffff; + border: 1px solid #605e5c; + color: #323130; + 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 { + color: #605e5c; +} +.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { + background: #f3f2f1; + border-color: #605e5c; + 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 { + color: #605e5c; +} +.p-selectbutton .p-button.p-highlight { + background: #edebe9; + border-color: #605e5c; + color: #323130; +} +.p-selectbutton .p-button.p-highlight .p-button-icon-left, +.p-selectbutton .p-button.p-highlight .p-button-icon-right { + color: #323130; +} +.p-selectbutton .p-button.p-highlight:hover { + background: #edebe9; + border-color: #605e5c; + color: #323130; +} +.p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, +.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { + color: #323130; +} +.p-selectbutton.p-error > .p-button, .p-selectbutton.p-invalid > .p-button { + border-color: #a4252c; +} + +.p-slider { + background: #c8c6c4; + border: 0 none; + border-radius: 2px; +} +.p-slider.p-slider-horizontal { + height: 4px; +} +.p-slider.p-slider-horizontal .p-slider-handle { + margin-top: -8px; + margin-left: -8px; +} +.p-slider.p-slider-vertical { + width: 4px; +} +.p-slider.p-slider-vertical .p-slider-handle { + margin-left: -8px; + margin-bottom: -8px; +} +.p-slider .p-slider-handle { + height: 16px; + width: 16px; + background: #ffffff; + border: 2px solid #605e5c; + border-radius: 50%; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-slider .p-slider-handle:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-slider .p-slider-range { + background: #605e5c; +} +.p-slider:not(.p-disabled) .p-slider-handle:hover { + background: #ffffff; + border-color: #005a9e; +} + +.p-togglebutton.p-button { + background: #ffffff; + border: 1px solid #605e5c; + color: #323130; + 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 { + color: #605e5c; +} +.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover { + background: #f3f2f1; + border-color: #605e5c; + 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 { + color: #605e5c; +} +.p-togglebutton.p-button.p-highlight { + background: #edebe9; + border-color: #605e5c; + color: #323130; +} +.p-togglebutton.p-button.p-highlight .p-button-icon-left, +.p-togglebutton.p-button.p-highlight .p-button-icon-right { + color: #323130; +} +.p-togglebutton.p-button.p-highlight:hover { + background: #edebe9; + border-color: #605e5c; + color: #323130; +} +.p-togglebutton.p-button.p-highlight:hover .p-button-icon-left, +.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right { + color: #323130; +} +.p-togglebutton.p-button.p-error > .p-button, .p-togglebutton.p-button.p-invalid > .p-button { + border-color: #a4252c; +} + +.p-button { + color: #ffffff; + background: #0078d4; + border: 1px solid #0078d4; + padding: 0.5rem 1rem; + font-size: 1rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 2px; +} +.p-button:enabled:hover { + background: #106ebe; + color: #ffffff; + border-color: #106ebe; +} +.p-button:enabled:active { + background: #005a9e; + color: #ffffff; + border-color: #005a9e; +} +.p-button.p-button-outlined { + background-color: transparent; + color: #0078d4; + border: 1px solid; +} +.p-button.p-button-outlined:enabled:hover { + background: rgba(0, 120, 212, 0.04); + color: #0078d4; + border: 1px solid; +} +.p-button.p-button-outlined:enabled:active { + background: rgba(0, 120, 212, 0.16); + color: #0078d4; + border: 1px solid; +} +.p-button.p-button-outlined.p-button-plain { + color: #605e5c; + border-color: #605e5c; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #f3f2f1; + color: #605e5c; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #edebe9; + color: #605e5c; +} +.p-button.p-button-text { + background-color: transparent; + color: #0078d4; + border-color: transparent; +} +.p-button.p-button-text:enabled:hover { + background: rgba(0, 120, 212, 0.04); + color: #0078d4; + border-color: transparent; +} +.p-button.p-button-text:enabled:active { + background: rgba(0, 120, 212, 0.16); + color: #0078d4; + border-color: transparent; +} +.p-button.p-button-text.p-button-plain { + color: #605e5c; +} +.p-button.p-button-text.p-button-plain:enabled:hover { + background: #f3f2f1; + color: #605e5c; +} +.p-button.p-button-text.p-button-plain:enabled:active { + background: #edebe9; + color: #605e5c; +} +.p-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-button .p-button-icon-left { + margin-right: 0.5rem; +} +.p-button .p-button-icon-right { + margin-left: 0.5rem; +} +.p-button .p-button-icon-bottom { + margin-top: 0.5rem; +} +.p-button .p-button-icon-top { + margin-bottom: 0.5rem; +} +.p-button .p-badge { + margin-left: 0.5rem; + min-width: 1rem; + height: 1rem; + line-height: 1rem; + color: #0078d4; + background-color: #ffffff; +} +.p-button.p-button-raised { + 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-rounded { + border-radius: 2rem; +} +.p-button.p-button-icon-only { + width: 2.357rem; + padding: 0.5rem 0; +} +.p-button.p-button-icon-only .p-button-icon-left, +.p-button.p-button-icon-only .p-button-icon-right { + margin: 0; +} +.p-button.p-button-icon-only.p-button-rounded { + border-radius: 50%; + height: 2.357rem; +} +.p-button.p-button-sm { + font-size: 0.875rem; + padding: 0.4375rem 0.875rem; +} +.p-button.p-button-sm .p-button-icon { + font-size: 0.875rem; +} +.p-button.p-button-lg { + font-size: 1.25rem; + padding: 0.625rem 1.25rem; +} +.p-button.p-button-lg .p-button-icon { + font-size: 1.25rem; +} + +.p-fluid .p-button { + width: 100%; +} +.p-fluid .p-button-icon-only { + width: 2.357rem; +} +.p-fluid .p-buttonset { + display: flex; +} +.p-fluid .p-buttonset .p-button { + flex: 1; +} + +.p-button.p-button-secondary, .p-buttonset.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:enabled:hover, .p-buttonset.p-button-secondary > .p-button:enabled:hover, .p-splitbutton.p-button-secondary > .p-button:enabled:hover { + background: #bf5300; + color: #ffffff; + border-color: #bf5300; +} +.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 { + box-shadow: 0 0 0 0.2rem #ffbc88; +} +.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 { + 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 { + background-color: transparent; + color: #d45c00; + border: 1px solid; +} +.p-button.p-button-secondary.p-button-outlined:enabled:hover, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:hover { + background: rgba(212, 92, 0, 0.04); + color: #d45c00; + border: 1px solid; +} +.p-button.p-button-secondary.p-button-outlined:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled: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 { + background-color: transparent; + color: #d45c00; + border-color: transparent; +} +.p-button.p-button-secondary.p-button-text:enabled:hover, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:hover { + background: rgba(212, 92, 0, 0.04); + border-color: transparent; + color: #d45c00; +} +.p-button.p-button-secondary.p-button-text:enabled:active, .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled: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 { + color: #ffffff; + background: #00b7c3; + border: 1px solid #00b7c3; +} +.p-button.p-button-info:enabled:hover, .p-buttonset.p-button-info > .p-button:enabled:hover, .p-splitbutton.p-button-info > .p-button:enabled:hover { + background: #00a5b0; + color: #ffffff; + border-color: #00a5b0; +} +.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 { + box-shadow: 0 0 0 0.2rem #81f7ff; +} +.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 { + 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 { + background-color: transparent; + color: #00b7c3; + border: 1px solid; +} +.p-button.p-button-info.p-button-outlined:enabled:hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:hover { + background: rgba(0, 183, 195, 0.04); + color: #00b7c3; + border: 1px solid; +} +.p-button.p-button-info.p-button-outlined:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled: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 { + background-color: transparent; + color: #00b7c3; + border-color: transparent; +} +.p-button.p-button-info.p-button-text:enabled:hover, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:hover { + background: rgba(0, 183, 195, 0.04); + border-color: transparent; + color: #00b7c3; +} +.p-button.p-button-info.p-button-text:enabled:active, .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-info > .p-button.p-button-text:enabled: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 { + color: #ffffff; + background: #498205; + border: 1px solid #498205; +} +.p-button.p-button-success:enabled:hover, .p-buttonset.p-button-success > .p-button:enabled:hover, .p-splitbutton.p-button-success > .p-button:enabled:hover { + background: #427505; + color: #ffffff; + border-color: #427505; +} +.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 { + box-shadow: 0 0 0 0.2rem #baf96f; +} +.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 { + 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 { + background-color: transparent; + color: #498205; + border: 1px solid; +} +.p-button.p-button-success.p-button-outlined:enabled:hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:hover { + background: rgba(73, 130, 5, 0.04); + color: #498205; + border: 1px solid; +} +.p-button.p-button-success.p-button-outlined:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled: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 { + background-color: transparent; + color: #498205; + border-color: transparent; +} +.p-button.p-button-success.p-button-text:enabled:hover, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:hover { + background: rgba(73, 130, 5, 0.04); + border-color: transparent; + color: #498205; +} +.p-button.p-button-success.p-button-text:enabled:active, .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-success > .p-button.p-button-text:enabled: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 { + color: #323130; + background: #ffaa44; + border: 1px solid #ffaa44; +} +.p-button.p-button-warning:enabled:hover, .p-buttonset.p-button-warning > .p-button:enabled:hover, .p-splitbutton.p-button-warning > .p-button:enabled:hover { + background: #ff9b24; + color: #323130; + border-color: #ff9b24; +} +.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 { + box-shadow: 0 0 0 0.2rem #ffddb4; +} +.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 { + 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 { + background-color: transparent; + color: #ffaa44; + border: 1px solid; +} +.p-button.p-button-warning.p-button-outlined:enabled:hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:hover { + background: rgba(255, 170, 68, 0.04); + color: #ffaa44; + border: 1px solid; +} +.p-button.p-button-warning.p-button-outlined:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled: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 { + background-color: transparent; + color: #ffaa44; + border-color: transparent; +} +.p-button.p-button-warning.p-button-text:enabled:hover, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:hover { + background: rgba(255, 170, 68, 0.04); + border-color: transparent; + color: #ffaa44; +} +.p-button.p-button-warning.p-button-text:enabled:active, .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled: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 { + color: #ffffff; + background: #8378de; + border: 1px solid #8378de; +} +.p-button.p-button-help:enabled:hover, .p-buttonset.p-button-help > .p-button:enabled:hover, .p-splitbutton.p-button-help > .p-button:enabled:hover { + background: #6a5dd7; + color: #ffffff; + border-color: #6a5dd7; +} +.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 { + box-shadow: 0 0 0 0.2rem #cdc9f2; +} +.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 { + 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 { + background-color: transparent; + color: #8378de; + border: 1px solid; +} +.p-button.p-button-help.p-button-outlined:enabled:hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:hover { + background: rgba(131, 120, 222, 0.04); + color: #8378de; + border: 1px solid; +} +.p-button.p-button-help.p-button-outlined:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled: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 { + background-color: transparent; + color: #8378de; + border-color: transparent; +} +.p-button.p-button-help.p-button-text:enabled:hover, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:hover { + background: rgba(131, 120, 222, 0.04); + border-color: transparent; + color: #8378de; +} +.p-button.p-button-help.p-button-text:enabled:active, .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-help > .p-button.p-button-text:enabled: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 { + color: #ffffff; + background: #d13438; + border: 1px solid #d13438; +} +.p-button.p-button-danger:enabled:hover, .p-buttonset.p-button-danger > .p-button:enabled:hover, .p-splitbutton.p-button-danger > .p-button:enabled:hover { + background: #c02b2f; + color: #ffffff; + border-color: #c02b2f; +} +.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 { + box-shadow: 0 0 0 0.2rem #edaeaf; +} +.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 { + 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 { + background-color: transparent; + color: #d13438; + border: 1px solid; +} +.p-button.p-button-danger.p-button-outlined:enabled:hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:hover { + background: rgba(209, 52, 56, 0.04); + color: #d13438; + border: 1px solid; +} +.p-button.p-button-danger.p-button-outlined:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled: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 { + background-color: transparent; + color: #d13438; + border-color: transparent; +} +.p-button.p-button-danger.p-button-text:enabled:hover, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:hover { + background: rgba(209, 52, 56, 0.04); + border-color: transparent; + color: #d13438; +} +.p-button.p-button-danger.p-button-text:enabled:active, .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active { + background: rgba(209, 52, 56, 0.16); + border-color: transparent; + color: #d13438; +} + +.p-button.p-button-link { + color: #0078d4; + background: transparent; + border: transparent; +} +.p-button.p-button-link:enabled:hover { + background: transparent; + color: #005a9e; + border-color: transparent; +} +.p-button.p-button-link:enabled:hover .p-button-label { + text-decoration: underline; +} +.p-button.p-button-link:enabled:focus { + background: transparent; + box-shadow: 0 0 0 1px #605e5c; + border-color: transparent; +} +.p-button.p-button-link:enabled:active { + background: transparent; + color: #0078d4; + border-color: transparent; +} + +.p-carousel .p-carousel-content .p-carousel-prev, +.p-carousel .p-carousel-content .p-carousel-next { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + margin: 0.5rem; +} +.p-carousel .p-carousel-content .p-carousel-prev: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, +.p-carousel .p-carousel-content .p-carousel-next:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-carousel .p-carousel-indicators { + padding: 1rem; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator { + margin-right: 0.5rem; + margin-bottom: 0.5rem; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator button { + background-color: #c8c6c4; + width: 2rem; + height: 0.5rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 0; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover { + background: #e1dfdd; +} +.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { + background: #edebe9; + color: #323130; +} + +.p-datatable .p-paginator-top { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-datatable .p-paginator-bottom { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-datatable .p-datatable-header { + background: #ffffff; + color: #323130; + border: 1px solid #f3f2f1; + border-width: 1px 0 1px 0; + padding: 0.75rem 0.75rem; + font-weight: 600; +} +.p-datatable .p-datatable-footer { + background: #ffffff; + color: #323130; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + padding: 0.75rem 0.75rem; + font-weight: 600; +} +.p-datatable .p-datatable-thead > tr > th { + text-align: left; + padding: 0.75rem 0.75rem; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + font-weight: 600; + color: #323130; + background: #ffffff; + transition: box-shadow 0.2s; +} +.p-datatable .p-datatable-tfoot > tr > td { + text-align: left; + padding: 0.75rem 0.75rem; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + font-weight: 600; + color: #323130; + background: #ffffff; +} +.p-datatable .p-sortable-column .p-sortable-column-icon { + color: #605e5c; + margin-left: 0.5rem; +} +.p-datatable .p-sortable-column .p-sortable-column-badge { + border-radius: 50%; + height: 1.143rem; + min-width: 1.143rem; + line-height: 1.143rem; + color: #323130; + background: #edebe9; + margin-left: 0.5rem; +} +.p-datatable .p-sortable-column:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon { + color: #605e5c; +} +.p-datatable .p-sortable-column.p-highlight { + background: #edebe9; + color: #323130; +} +.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { + color: #323130; +} +.p-datatable .p-sortable-column.p-highlight:hover { + background: #f3f2f1; + color: #323130; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #323130; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #605e5c; + outline: 0 none; +} +.p-datatable .p-datatable-tbody > tr { + background: #ffffff; + color: #323130; + transition: box-shadow 0.2s; + outline-color: #605e5c; +} +.p-datatable .p-datatable-tbody > tr > td { + text-align: left; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + 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 { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + 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 { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus, +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-datatable .p-datatable-tbody > tr > td .p-row-editor-save { + margin-right: 0.5rem; +} +.p-datatable .p-datatable-tbody > tr.p-highlight { + background: #edebe9; + color: #323130; +} +.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { + box-shadow: inset 0 2px 0 0 #edebe9; +} +.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { + box-shadow: inset 0 -2px 0 0 #edebe9; +} +.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-datatable .p-column-resizer-helper { + background: #0078d4; +} +.p-datatable .p-datatable-scrollable-header, +.p-datatable .p-datatable-scrollable-footer { + background: #faf9f8; +} +.p-datatable .p-datatable-loading-icon { + font-size: 2rem; +} +.p-datatable.p-datatable-gridlines .p-datatable-header { + border-width: 1px 1px 0 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-footer { + border-width: 0 1px 1px 1px; +} +.p-datatable.p-datatable-gridlines .p-paginator-top { + border-width: 0 1px 0 1px; +} +.p-datatable.p-datatable-gridlines .p-paginator-bottom { + border-width: 0 1px 1px 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th { + border-width: 1px 1px 1px 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td { + border-width: 1px; +} +.p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td { + border-width: 1px; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even) { + background: #faf9f8; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { + background: #edebe9; + color: #323130; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { + color: #323130; +} +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { + color: #323130; +} +.p-datatable.p-datatable-sm .p-datatable-header { + padding: 0.375rem 0.375rem; +} +.p-datatable.p-datatable-sm .p-datatable-thead > tr > th { + padding: 0.375rem 0.375rem; +} +.p-datatable.p-datatable-sm .p-datatable-tbody > tr > td { + padding: 0.375rem 0.375rem; +} +.p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td { + padding: 0.375rem 0.375rem; +} +.p-datatable.p-datatable-sm .p-datatable-footer { + padding: 0.375rem 0.375rem; +} +.p-datatable.p-datatable-lg .p-datatable-header { + padding: 0.9375rem 0.9375rem; +} +.p-datatable.p-datatable-lg .p-datatable-thead > tr > th { + padding: 0.9375rem 0.9375rem; +} +.p-datatable.p-datatable-lg .p-datatable-tbody > tr > td { + padding: 0.9375rem 0.9375rem; +} +.p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td { + padding: 0.9375rem 0.9375rem; +} +.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; +} +.p-dataview .p-paginator-bottom { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-dataview .p-dataview-header { + background: #ffffff; + color: #323130; + border: 1px solid #f3f2f1; + border-width: 1px 0 1px 0; + padding: 0.75rem 0.75rem; + font-weight: 600; +} +.p-dataview .p-dataview-content { + background: #ffffff; + color: #323130; + border: 0 none; + padding: 0; +} +.p-dataview.p-dataview-list .p-dataview-content > .p-grid > div { + border: solid #f3f2f1; + border-width: 0 0 1px 0; +} +.p-dataview .p-dataview-footer { + background: #ffffff; + color: #323130; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + padding: 0.75rem 0.75rem; + font-weight: 600; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.fc .fc-view-container th { + background: #faf9f8; + border: 1px solid #a19f9d; + color: #323130; +} +.fc .fc-view-container td.fc-widget-content { + background: #ffffff; + border: 1px solid #a19f9d; + color: #323130; +} +.fc .fc-view-container td.fc-head-container { + border: 1px solid #a19f9d; +} +.fc .fc-view-container .fc-row { + border-right: 1px solid #a19f9d; +} +.fc .fc-view-container .fc-event { + background: #0078d4; + border: 1px solid #0078d4; + color: #ffffff; +} +.fc .fc-view-container .fc-divider { + background: #faf9f8; + border: 1px solid #a19f9d; +} +.fc .fc-toolbar .fc-button { + color: #ffffff; + background: #0078d4; + border: 1px solid #0078d4; + font-size: 1rem; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; + border-radius: 2px; + display: flex; + align-items: center; +} +.fc .fc-toolbar .fc-button:enabled:hover { + background: #106ebe; + color: #ffffff; + border-color: #106ebe; +} +.fc .fc-toolbar .fc-button:enabled:active { + background: #005a9e; + color: #ffffff; + border-color: #005a9e; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-left { + font-family: "PrimeIcons" !important; + text-indent: 0; + font-size: 1rem; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-left:before { + content: ""; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-right { + font-family: "PrimeIcons" !important; + text-indent: 0; + font-size: 1rem; +} +.fc .fc-toolbar .fc-button .fc-icon-chevron-right:before { + content: ""; +} +.fc .fc-toolbar .fc-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button, .fc .fc-toolbar .fc-button.fc-timeGridDay-button { + background: #ffffff; + border: 1px solid #605e5c; + color: #323130; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button:hover, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button:hover, .fc .fc-toolbar .fc-button.fc-timeGridDay-button:hover { + background: #f3f2f1; + border-color: #605e5c; + color: #323130; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active, .fc .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active { + background: #edebe9; + border-color: #605e5c; + color: #323130; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active:hover, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active:hover, .fc .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active:hover { + background: #edebe9; + border-color: #605e5c; + color: #323130; +} +.fc .fc-toolbar .fc-button.fc-dayGridMonth-button:focus, .fc .fc-toolbar .fc-button.fc-timeGridWeek-button:focus, .fc .fc-toolbar .fc-button.fc-timeGridDay-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + z-index: 1; +} +.fc .fc-toolbar .fc-button-group .fc-button { + border-radius: 0; +} +.fc .fc-toolbar .fc-button-group .fc-button:first-child { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} +.fc .fc-toolbar .fc-button-group .fc-button:last-child { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +.p-orderlist .p-orderlist-controls { + padding: 1rem; +} +.p-orderlist .p-orderlist-controls .p-button { + margin-bottom: 0.5rem; +} +.p-orderlist .p-orderlist-header { + background: #faf9f8; + color: #323130; + border: 1px solid #a19f9d; + padding: 1rem; + font-weight: 600; + border-bottom: 0 none; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-orderlist .p-orderlist-list { + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + padding: 0; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-orderlist .p-orderlist-list .p-orderlist-item { + padding: 0.75rem 0.5rem; + margin: 0; + border: 1px solid transparent; + color: #323130; + background: transparent; + transition: transform 0.2s, box-shadow 0.2s; +} +.p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-orderlist .p-orderlist-list .p-orderlist-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { + color: #323130; + background: #edebe9; +} + +@media screen and (max-width: 769px) { + .p-orderlist { + flex-direction: column; + } + .p-orderlist .p-orderlist-controls { + padding: 1rem; + flex-direction: row; + } + .p-orderlist .p-orderlist-controls .p-button { + margin-right: 0.5rem; + margin-bottom: 0; + } + .p-orderlist .p-orderlist-controls .p-button:last-child { + margin-right: 0; + } +} +.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-organizationchart .p-organizationchart-node-content.p-highlight { + background: #edebe9; + color: #323130; +} +.p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { + color: #b4aba3; +} +.p-organizationchart .p-organizationchart-line-down { + background: #a19f9d; +} +.p-organizationchart .p-organizationchart-line-left { + border-right: 1px solid #a19f9d; + border-color: #a19f9d; +} +.p-organizationchart .p-organizationchart-line-top { + border-top: 1px solid #a19f9d; + border-color: #a19f9d; +} +.p-organizationchart .p-organizationchart-node-content { + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + padding: 1rem; +} +.p-organizationchart .p-organizationchart-node-content .p-node-toggler { + background: inherit; + color: inherit; + border-radius: 50%; +} +.p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} + +.p-paginator { + background: #ffffff; + color: #605e5c; + border: solid #f3f2f1; + border-width: 0; + padding: 0.5rem 1rem; + border-radius: 2px; +} +.p-paginator .p-paginator-first, +.p-paginator .p-paginator-prev, +.p-paginator .p-paginator-next, +.p-paginator .p-paginator-last { + background-color: transparent; + border: 0 none; + color: #605e5c; + min-width: 2.357rem; + height: 2.357rem; + margin: 0.143rem; + transition: box-shadow 0.2s; + 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 { + background: #f3f2f1; + border-color: transparent; + color: #323130; +} +.p-paginator .p-paginator-first { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-paginator .p-paginator-last { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} +.p-paginator .p-dropdown { + margin-left: 0.5rem; + height: 2.357rem; +} +.p-paginator .p-dropdown .p-dropdown-label { + padding-right: 0; +} +.p-paginator .p-paginator-current { + background-color: transparent; + border: 0 none; + color: #605e5c; + min-width: 2.357rem; + height: 2.357rem; + margin: 0.143rem; + padding: 0 0.5rem; +} +.p-paginator .p-paginator-pages .p-paginator-page { + background-color: transparent; + border: 0 none; + color: #605e5c; + min-width: 2.357rem; + height: 2.357rem; + margin: 0.143rem; + transition: box-shadow 0.2s; + border-radius: 2px; +} +.p-paginator .p-paginator-pages .p-paginator-page.p-highlight { + background: #edebe9; + border-color: #edebe9; + color: #323130; +} +.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { + background: #f3f2f1; + border-color: transparent; + color: #323130; +} + +.p-picklist .p-picklist-buttons { + padding: 1rem; +} +.p-picklist .p-picklist-buttons .p-button { + margin-bottom: 0.5rem; +} +.p-picklist .p-picklist-header { + background: #faf9f8; + color: #323130; + border: 1px solid #a19f9d; + padding: 1rem; + font-weight: 600; + border-bottom: 0 none; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-picklist .p-picklist-list { + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + padding: 0; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-picklist .p-picklist-list .p-picklist-item { + padding: 0.75rem 0.5rem; + margin: 0; + border: 1px solid transparent; + color: #323130; + background: transparent; + transition: transform 0.2s, box-shadow 0.2s; +} +.p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-picklist .p-picklist-list .p-picklist-item:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-picklist .p-picklist-list .p-picklist-item.p-highlight { + color: #323130; + background: #edebe9; +} + +@media screen and (max-width: 769px) { + .p-picklist { + flex-direction: column; + } + .p-picklist .p-picklist-buttons { + padding: 1rem; + flex-direction: row; + } + .p-picklist .p-picklist-buttons .p-button { + margin-right: 0.5rem; + margin-bottom: 0; + } + .p-picklist .p-picklist-buttons .p-button:last-child { + margin-right: 0; + } + .p-picklist .p-picklist-transfer-buttons .pi-angle-right:before { + content: ""; + } + .p-picklist .p-picklist-transfer-buttons .pi-angle-double-right:before { + content: ""; + } + .p-picklist .p-picklist-transfer-buttons .pi-angle-left:before { + content: ""; + } + .p-picklist .p-picklist-transfer-buttons .pi-angle-double-left:before { + content: ""; + } +} +.p-tree { + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + padding: 1rem; + border-radius: 2px; +} +.p-tree .p-tree-container .p-treenode { + padding: 0.143rem; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content { + border-radius: 2px; + transition: box-shadow 0.2s; + padding: 0.5rem; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler { + margin-right: 0.5rem; + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon { + margin-right: 0.5rem; + color: #605e5c; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox { + margin-right: 0.5rem; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox .p-indeterminate .p-checkbox-icon { + color: #323130; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { + background: #edebe9; + 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 { + color: #323130; +} +.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-tree .p-tree-filter-container { + margin-bottom: 0.5rem; +} +.p-tree .p-tree-filter-container .p-tree-filter { + width: 100%; + padding-right: 1.5rem; +} +.p-tree .p-tree-filter-container .p-tree-filter-icon { + right: 0.5rem; + color: #605e5c; +} +.p-tree .p-treenode-children { + padding: 0 0 0 1rem; +} +.p-tree .p-tree-loading-icon { + font-size: 2rem; +} + +.p-treetable .p-paginator-top { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-treetable .p-paginator-bottom { + border-width: 0 0 1px 0; + border-radius: 0; +} +.p-treetable .p-treetable-header { + background: #ffffff; + color: #323130; + border: 1px solid #f3f2f1; + border-width: 1px 0 1px 0; + padding: 0.75rem 0.75rem; + font-weight: 600; +} +.p-treetable .p-treetable-footer { + background: #ffffff; + color: #323130; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + padding: 0.75rem 0.75rem; + font-weight: 600; +} +.p-treetable .p-treetable-thead > tr > th { + text-align: left; + padding: 0.75rem 0.75rem; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + font-weight: 600; + color: #323130; + background: #ffffff; + transition: box-shadow 0.2s; +} +.p-treetable .p-treetable-tfoot > tr > td { + text-align: left; + padding: 0.75rem 0.75rem; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + font-weight: 600; + color: #323130; + background: #ffffff; +} +.p-treetable .p-sortable-column { + outline-color: #605e5c; +} +.p-treetable .p-sortable-column .p-sortable-column-icon { + color: #605e5c; + margin-left: 0.5rem; +} +.p-treetable .p-sortable-column .p-sortable-column-badge { + border-radius: 50%; + height: 1.143rem; + min-width: 1.143rem; + line-height: 1.143rem; + color: #323130; + background: #edebe9; + margin-left: 0.5rem; +} +.p-treetable .p-sortable-column:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon { + color: #605e5c; +} +.p-treetable .p-sortable-column.p-highlight { + background: #edebe9; + color: #323130; +} +.p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon { + color: #323130; +} +.p-treetable .p-treetable-tbody > tr { + background: #ffffff; + color: #323130; + transition: box-shadow 0.2s; + outline-color: #605e5c; +} +.p-treetable .p-treetable-tbody > tr > td { + text-align: left; + border: 1px solid #f3f2f1; + border-width: 0 0 1px 0; + padding: 0.75rem 0.75rem; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + margin-right: 0.5rem; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox { + margin-right: 0.5rem; +} +.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { + color: #323130; +} +.p-treetable .p-treetable-tbody > tr.p-highlight { + background: #edebe9; + color: #323130; +} +.p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { + color: #323130; +} +.p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { + color: #323130; +} +.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { + background: #f3f2f1; + color: #323130; +} +.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler { + color: #323130; +} +.p-treetable .p-column-resizer-helper { + background: #0078d4; +} +.p-treetable .p-treetable-scrollable-header, +.p-treetable .p-treetable-scrollable-footer { + background: #faf9f8; +} +.p-treetable .p-treetable-loading-icon { + font-size: 2rem; +} +.p-treetable.p-treetable-gridlines .p-datatable-header { + border-width: 1px 1px 0 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-footer { + border-width: 0 1px 1px 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-top { + border-width: 0 1px 0 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-bottom { + border-width: 0 1px 1px 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-thead > tr > th { + border-width: 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-tbody > tr > td { + border-width: 1px; +} +.p-treetable.p-treetable-gridlines .p-treetable-tfoot > tr > td { + border-width: 1px; +} +.p-treetable.p-treetable-sm .p-treetable-header { + padding: 0.65625rem 0.65625rem; +} +.p-treetable.p-treetable-sm .p-treetable-thead > tr > th { + padding: 0.375rem 0.375rem; +} +.p-treetable.p-treetable-sm .p-treetable-tbody > tr > td { + padding: 0.375rem 0.375rem; +} +.p-treetable.p-treetable-sm .p-treetable-tfoot > tr > td { + padding: 0.375rem 0.375rem; +} +.p-treetable.p-treetable-sm .p-treetable-footer { + padding: 0.375rem 0.375rem; +} +.p-treetable.p-treetable-lg .p-treetable-header { + padding: 0.9375rem 0.9375rem; +} +.p-treetable.p-treetable-lg .p-treetable-thead > tr > th { + padding: 0.9375rem 0.9375rem; +} +.p-treetable.p-treetable-lg .p-treetable-tbody > tr > td { + padding: 0.9375rem 0.9375rem; +} +.p-treetable.p-treetable-lg .p-treetable-tfoot > tr > td { + padding: 0.9375rem 0.9375rem; +} +.p-treetable.p-treetable-lg .p-treetable-footer { + padding: 0.9375rem 0.9375rem; +} + +.p-accordion .p-accordion-header .p-accordion-header-link { + padding: 1rem; + border: 1px solid #a19f9d; + color: #323130; + background: #faf9f8; + font-weight: 600; + border-radius: 2px; + transition: box-shadow 0.2s; +} +.p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon { + margin-right: 0.5rem; +} +.p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link { + background: #f3f2f1; + border-color: #a19f9d; + color: #323130; +} +.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link { + background: #faf9f8; + border-color: #a19f9d; + color: #323130; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { + border-color: #a19f9d; + background: #f3f2f1; + color: #323130; +} +.p-accordion .p-accordion-content { + padding: 1rem; + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + border-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-accordion .p-accordion-tab { + margin-bottom: 4px; +} + +.p-card { + background: #ffffff; + color: #323130; + box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px; + border-radius: 2px; +} +.p-card .p-card-body { + padding: 1rem; +} +.p-card .p-card-title { + font-size: 1.5rem; + font-weight: 700; + margin-bottom: 0.5rem; +} +.p-card .p-card-subtitle { + font-weight: 400; + margin-bottom: 0.5rem; + color: #605e5c; +} +.p-card .p-card-content { + padding: 1rem 0; +} +.p-card .p-card-footer { + padding: 1rem 0 0 0; +} + +.p-fieldset { + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + border-radius: 2px; +} +.p-fieldset .p-fieldset-legend { + padding: 1rem; + border: 1px solid #a19f9d; + color: #323130; + background: #faf9f8; + font-weight: 600; + border-radius: 2px; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend { + padding: 0; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a { + padding: 1rem; + color: #323130; + border-radius: 2px; + transition: box-shadow 0.2s; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler { + margin-right: 0.5rem; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover { + background: #f3f2f1; + border-color: #a19f9d; + color: #323130; +} +.p-fieldset .p-fieldset-content { + padding: 1rem; +} + +.p-panel .p-panel-header { + border: 1px solid #a19f9d; + padding: 1rem; + background: #faf9f8; + color: #323130; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-panel .p-panel-header .p-panel-title { + font-weight: 600; +} +.p-panel .p-panel-header .p-panel-header-icon { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-panel .p-panel-header .p-panel-header-icon:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-panel .p-panel-header .p-panel-header-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-panel.p-panel-toggleable .p-panel-header { + padding: 0.5rem 1rem; +} +.p-panel .p-panel-content { + padding: 1rem; + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; + border-top: 0 none; +} +.p-panel .p-panel-footer { + padding: 0.5rem 1rem; + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + border-top: 0 none; +} + +.p-scrollpanel .p-scrollpanel-bar { + background: #f3f2f1; + border: 0 none; +} + +.p-tabview .p-tabview-nav { + background: #ffffff; + border: 0 none; + border-width: 0 0 2px 0; +} +.p-tabview .p-tabview-nav li { + margin-right: 0; +} +.p-tabview .p-tabview-nav li .p-tabview-nav-link { + border: solid #a19f9d; + border-width: 0 0 2px 0; + border-color: transparent transparent transparent transparent; + background: #ffffff; + color: #605e5c; + padding: 1rem; + font-weight: 600; + border-top-right-radius: 2px; + border-top-left-radius: 2px; + transition: box-shadow 0.2s; + margin: 0 0.5rem -2px 0; +} +.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link { + background: #f3f2f1; + border-color: transparent; + color: #605e5c; +} +.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link { + background: #ffffff; + border-color: #0078d4; + color: #323130; +} +.p-tabview .p-tabview-panels { + background: #ffffff; + padding: 1rem; + border: 0 none; + color: #323130; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} + +.p-toolbar { + background: #faf9f8; + border: 1px solid #a19f9d; + padding: 1rem; + border-radius: 2px; +} +.p-toolbar .p-toolbar-separator { + margin: 0 0.5rem; +} + +.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; + border: 0 none; +} +.p-dialog .p-dialog-header { + border-bottom: 0 none; + background: #ffffff; + color: #323130; + padding: 1.5rem; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-dialog .p-dialog-header .p-dialog-title { + font-weight: 600; + font-size: 1.5rem; +} +.p-dialog .p-dialog-header .p-dialog-header-icon { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + margin-right: 0.5rem; +} +.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-dialog .p-dialog-header .p-dialog-header-icon:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-dialog .p-dialog-header .p-dialog-header-icon:last-child { + margin-right: 0; +} +.p-dialog .p-dialog-content { + background: #ffffff; + color: #323130; + padding: 0 1.5rem 2rem 1.5rem; +} +.p-dialog .p-dialog-footer { + border-top: 0 none; + background: #ffffff; + color: #323130; + padding: 0 1.5rem 1.5rem 1.5rem; + text-align: right; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-dialog .p-dialog-footer button { + margin: 0 0.5rem 0 0; + width: auto; +} + +.p-dialog-mask.p-component-overlay { + background-color: rgba(0, 0, 0, 0.4); +} + +.p-overlaypanel { + background: #ffffff; + color: #323130; + border: 0 none; + 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; +} +.p-overlaypanel .p-overlaypanel-content { + padding: 1rem; +} +.p-overlaypanel .p-overlaypanel-close { + background: #0078d4; + color: #ffffff; + width: 2rem; + height: 2rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 2px; + position: absolute; + top: -1rem; + right: -1rem; +} +.p-overlaypanel .p-overlaypanel-close:enabled:hover { + background: #106ebe; + color: #ffffff; +} +.p-overlaypanel:after { + border: solid transparent; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; +} +.p-overlaypanel:before { + border: solid transparent; + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #ffffff; +} +.p-overlaypanel.p-overlaypanel-flipped:after { + border-top-color: #ffffff; +} +.p-overlaypanel.p-overlaypanel-flipped:before { + border-top-color: #ffffff; +} + +.p-sidebar { + background: #ffffff; + color: #323130; + padding: 1rem; + border: 0 none; + 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; +} +.p-sidebar .p-sidebar-close { + width: 2rem; + height: 2rem; + color: #605e5c; + border: 0 none; + background: transparent; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-sidebar .p-sidebar-close:enabled:hover { + color: #605e5c; + border-color: transparent; + background: #f3f2f1; +} +.p-sidebar .p-sidebar-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} + +.p-sidebar-mask.p-component-overlay { + background: rgba(0, 0, 0, 0.4); +} + +.p-tooltip .p-tooltip-text { + background: #ffffff; + color: #323130; + padding: 0.5rem 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; + border-radius: 2px; +} +.p-tooltip.p-tooltip-right .p-tooltip-arrow { + border-right-color: #ffffff; +} +.p-tooltip.p-tooltip-left .p-tooltip-arrow { + border-left-color: #ffffff; +} +.p-tooltip.p-tooltip-top .p-tooltip-arrow { + border-top-color: #ffffff; +} +.p-tooltip.p-tooltip-bottom .p-tooltip-arrow { + border-bottom-color: #ffffff; +} + +.p-fileupload .p-fileupload-buttonbar { + background: #faf9f8; + padding: 1rem; + border: 1px solid #a19f9d; + color: #323130; + border-bottom: 0 none; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-fileupload .p-fileupload-buttonbar .p-button { + margin-right: 0.5rem; +} +.p-fileupload .p-fileupload-buttonbar .p-button.p-fileupload-choose.p-focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-fileupload .p-fileupload-content { + background: #ffffff; + padding: 2rem 1rem; + border: 1px solid #a19f9d; + color: #323130; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-fileupload .p-progressbar { + height: 2px; +} +.p-fileupload .p-fileupload-row > div { + padding: 0.75rem 0.75rem; +} +.p-fileupload.p-fileupload-advanced .p-message { + margin-top: 0; +} + +.p-fileupload-choose:not(.p-disabled):hover { + background: #106ebe; + color: #ffffff; + border-color: #106ebe; +} +.p-fileupload-choose:not(.p-disabled):active { + background: #005a9e; + color: #ffffff; + border-color: #005a9e; +} + +.p-breadcrumb { + background: #ffffff; + border: 1px solid #eeeeee; + border-radius: 2px; + padding: 1rem; +} +.p-breadcrumb ul li .p-menuitem-link { + transition: box-shadow 0.2s; + border-radius: 2px; +} +.p-breadcrumb ul li .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-breadcrumb ul li .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-breadcrumb ul li .p-menuitem-link .p-menuitem-icon { + color: #0078d4; +} +.p-breadcrumb ul li.p-breadcrumb-chevron { + margin: 0 0.5rem 0 0.5rem; + color: #323130; +} +.p-breadcrumb ul li:last-child .p-menuitem-text { + color: #323130; +} +.p-breadcrumb ul li:last-child .p-menuitem-icon { + color: #0078d4; +} + +.p-contextmenu { + padding: 0; + background: #ffffff; + color: #323130; + border: 0 none; + 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); + width: 12.5rem; +} +.p-contextmenu .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-contextmenu .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-contextmenu .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-contextmenu .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-contextmenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-contextmenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-contextmenu .p-submenu-list { + padding: 0; + background: #ffffff; + border: 0 none; + 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-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #edebe9; +} +.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-contextmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-contextmenu .p-menu-separator { + border-top: 1px solid #edebe9; + margin: 0.25rem 0; +} +.p-contextmenu .p-submenu-icon { + font-size: 0.875rem; +} + +.p-megamenu { + padding: 0.5rem; + background: #ffffff; + color: #323130; + border: 1px solid #eeeeee; + border-radius: 2px; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 2px; + transition: box-shadow 0.2s; + user-select: none; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon { + color: #0078d4; + margin-left: 0.5rem; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover { + background: #edebe9; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon, +.p-megamenu .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-megamenu .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-megamenu .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-megamenu .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-megamenu .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-megamenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-megamenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-megamenu .p-megamenu-panel { + background: #ffffff; + color: #323130; + border: 0 none; + 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-megamenu .p-megamenu-submenu-header { + margin: 0; + padding: 0.75rem 0.5rem; + color: #0078d4; + background: #ffffff; + font-weight: 600; + border-top-right-radius: 2px; + border-top-left-radius: 2px; +} +.p-megamenu .p-megamenu-submenu { + padding: 0; + width: 12.5rem; +} +.p-megamenu .p-megamenu-submenu .p-menu-separator { + border-top: 1px solid #edebe9; + margin: 0.25rem 0; +} +.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #edebe9; +} +.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-megamenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-megamenu.p-megamenu-vertical { + width: 12.5rem; + padding: 0; +} + +.p-menu { + padding: 0; + background: #ffffff; + color: #323130; + border: 1px solid #eeeeee; + border-radius: 2px; + width: 12.5rem; +} +.p-menu .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-menu .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-menu .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-menu .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-menu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-menu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-menu.p-menu-overlay { + background: #ffffff; + border: 0 none; + 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-menu .p-submenu-header { + margin: 0; + padding: 0.75rem 0.5rem; + color: #0078d4; + background: #ffffff; + font-weight: 600; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.p-menu .p-menu-separator { + border-top: 1px solid #edebe9; + margin: 0.25rem 0; +} + +.p-menubar { + padding: 0.5rem; + background: #ffffff; + color: #323130; + border: 1px solid #eeeeee; + border-radius: 2px; +} +.p-menubar .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-menubar .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-menubar .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-menubar .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-menubar .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-menubar .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 2px; + transition: box-shadow 0.2s; + user-select: none; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon { + color: #0078d4; + margin-left: 0.5rem; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover { + background: #edebe9; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon, +.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-menubar .p-submenu-list { + padding: 0; + background: #ffffff; + border: 0 none; + 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); + width: 12.5rem; +} +.p-menubar .p-submenu-list .p-menu-separator { + border-top: 1px solid #edebe9; + margin: 0.25rem 0; +} +.p-menubar .p-submenu-list .p-submenu-icon { + font-size: 0.875rem; +} +.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #edebe9; +} +.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} + +@media screen and (max-width: 960px) { + .p-menubar { + position: relative; + } + .p-menubar .p-menubar-button { + display: flex; + width: 2rem; + height: 2rem; + color: #0078d4; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + } + .p-menubar .p-menubar-button:hover { + color: #0078d4; + background: #f3f2f1; + } + .p-menubar .p-menubar-button:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + } + .p-menubar .p-menubar-root-list { + position: absolute; + display: none; + padding: 0; + background: #ffffff; + border: 0 none; + 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); + width: 100%; + } + .p-menubar .p-menubar-root-list .p-menu-separator { + border-top: 1px solid #edebe9; + margin: 0.25rem 0; + } + .p-menubar .p-menubar-root-list .p-submenu-icon { + font-size: 0.875rem; + } + .p-menubar .p-menubar-root-list > .p-menuitem { + width: 100%; + position: static; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text { + color: #323130; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon { + color: #0078d4; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; + } + .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon { + margin-left: auto; + transition: transform 0.2s; + } + .p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon { + transform: rotate(-180deg); + } + .p-menubar .p-menubar-root-list .p-submenu-list { + width: 100%; + position: static; + box-shadow: none; + border: 0 none; + } + .p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon { + transition: transform 0.2s; + transform: rotate(90deg); + } + .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon { + transform: rotate(-90deg); + } + .p-menubar .p-menubar-root-list .p-menuitem { + width: 100%; + position: static; + } + .p-menubar .p-menubar-root-list ul li a { + padding-left: 2.25rem; + } + .p-menubar .p-menubar-root-list ul li ul li a { + padding-left: 3.75rem; + } + .p-menubar .p-menubar-root-list ul li ul li ul li a { + padding-left: 5.25rem; + } + .p-menubar .p-menubar-root-list ul li ul li ul li ul li a { + padding-left: 6.75rem; + } + .p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a { + padding-left: 8.25rem; + } + .p-menubar.p-menubar-mobile-active .p-menubar-root-list { + display: flex; + flex-direction: column; + top: 100%; + left: 0; + z-index: 1; + } +} +.p-panelmenu .p-panelmenu-header > a { + padding: 1rem; + border: 1px solid #a19f9d; + color: #323130; + background: #faf9f8; + font-weight: 600; + border-radius: 2px; + transition: box-shadow 0.2s; +} +.p-panelmenu .p-panelmenu-header > a .p-panelmenu-icon { + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-header > a .p-menuitem-icon { + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-header > a:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled) > a:hover { + background: #f3f2f1; + border-color: #a19f9d; + color: #323130; +} +.p-panelmenu .p-panelmenu-header.p-highlight { + margin-bottom: 0; +} +.p-panelmenu .p-panelmenu-header.p-highlight > a { + background: #faf9f8; + border-color: #a19f9d; + color: #323130; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.p-panelmenu .p-panelmenu-header.p-highlight:not(.p-disabled) > a:hover { + border-color: #a19f9d; + background: #f3f2f1; + color: #323130; +} +.p-panelmenu .p-panelmenu-content { + padding: 0; + border: 1px solid #a19f9d; + background: #ffffff; + color: #323130; + margin-bottom: 4px; + border-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-panelmenu-icon { + margin-right: 0.5rem; +} +.p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-submenu) { + padding: 0 0 0 1rem; +} +.p-panelmenu .p-panelmenu-panel { + margin-bottom: 4px; +} + +.p-steps .p-steps-item .p-menuitem-link { + background: transparent; + transition: box-shadow 0.2s; + border-radius: 2px; + background: #ffffff; +} +.p-steps .p-steps-item .p-menuitem-link .p-steps-number { + color: #323130; + border: 1px solid #f3f2f1; + background: #ffffff; + min-width: 2rem; + height: 2rem; + line-height: 2rem; + font-size: 1.143rem; + z-index: 1; + border-radius: 50%; +} +.p-steps .p-steps-item .p-menuitem-link .p-steps-title { + margin-top: 0.5rem; + color: #605e5c; +} +.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-steps .p-steps-item.p-highlight .p-steps-number { + background: #edebe9; + color: #323130; +} +.p-steps .p-steps-item.p-highlight .p-steps-title { + font-weight: 600; + color: #323130; +} +.p-steps .p-steps-item:before { + content: " "; + border-top: 1px solid #edebe9; + width: 100%; + top: 50%; + left: 0; + display: block; + position: absolute; + margin-top: -1rem; +} + +.p-tabmenu .p-tabmenu-nav { + background: #ffffff; + border: 0 none; + border-width: 0 0 2px 0; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem { + margin-right: 0; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { + border: solid #a19f9d; + border-width: 0 0 2px 0; + border-color: transparent transparent transparent transparent; + background: #ffffff; + color: #605e5c; + padding: 1rem; + font-weight: 600; + border-top-right-radius: 2px; + border-top-left-radius: 2px; + transition: box-shadow 0.2s; + margin: 0 0.5rem -2px 0; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon { + margin-right: 0.5rem; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link { + background: #f3f2f1; + border-color: transparent; + color: #605e5c; +} +.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link { + background: #ffffff; + border-color: #0078d4; + color: #323130; +} + +.p-tieredmenu { + padding: 0; + background: #ffffff; + color: #323130; + border: 1px solid #eeeeee; + border-radius: 2px; + width: 12.5rem; +} +.p-tieredmenu .p-menuitem-link { + padding: 0.75rem 0.5rem; + color: #323130; + border-radius: 0; + transition: box-shadow 0.2s; + user-select: none; +} +.p-tieredmenu .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-tieredmenu .p-menuitem-link .p-menuitem-icon { + color: #0078d4; + margin-right: 0.5rem; +} +.p-tieredmenu .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover { + background: #f3f2f1; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text { + color: #323130; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon { + color: #0078d4; +} +.p-tieredmenu .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon { + color: #0078d4; +} +.p-tieredmenu .p-menuitem-link:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-tieredmenu.p-tieredmenu-overlay { + background: #ffffff; + border: 0 none; + 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-tieredmenu .p-submenu-list { + padding: 0; + background: #ffffff; + border: 0 none; + 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-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link { + background: #edebe9; +} +.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-text { + color: #323130; +} +.p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-menuitem-icon, .p-tieredmenu .p-menuitem.p-menuitem-active > .p-menuitem-link .p-submenu-icon { + color: #0078d4; +} +.p-tieredmenu .p-menu-separator { + border-top: 1px solid #edebe9; + margin: 0.25rem 0; +} +.p-tieredmenu .p-submenu-icon { + font-size: 0.875rem; +} + +.p-inline-message { + padding: 0.5rem 0.5rem; + margin: 0; + border-radius: 2px; +} +.p-inline-message.p-inline-message-info { + background: #f3f2f1; + border: 0 none; + border-width: 0px; + color: #323130; +} +.p-inline-message.p-inline-message-info .p-inline-message-icon { + color: #605e5c; +} +.p-inline-message.p-inline-message-success { + background: #dff6dd; + border: 0 none; + border-width: 0px; + color: #323130; +} +.p-inline-message.p-inline-message-success .p-inline-message-icon { + color: #107c10; +} +.p-inline-message.p-inline-message-warn { + background: #fff4ce; + border: 0 none; + border-width: 0px; + color: #323130; +} +.p-inline-message.p-inline-message-warn .p-inline-message-icon { + color: #797775; +} +.p-inline-message.p-inline-message-error { + background: #fde7e9; + border: 0 none; + border-width: 0px; + color: #323130; +} +.p-inline-message.p-inline-message-error .p-inline-message-icon { + color: #a80000; +} +.p-inline-message .p-inline-message-icon { + font-size: 1rem; + margin-right: 0.5rem; +} +.p-inline-message .p-inline-message-text { + font-size: 90%; +} +.p-inline-message.p-inline-message-icon-only .p-inline-message-icon { + margin-right: 0; +} + +.p-message { + margin: 1rem 0; + border-radius: 2px; +} +.p-message .p-message-wrapper { + padding: 0.5rem; +} +.p-message .p-message-close { + width: 2rem; + height: 2rem; + border-radius: 2px; + background: transparent; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-message .p-message-close:hover { + background: rgba(255, 255, 255, 0.3); +} +.p-message .p-message-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-message.p-message-info { + background: #f3f2f1; + border: 0 none; + border-width: 0 0 0 6px; + color: #323130; +} +.p-message.p-message-info .p-message-icon { + color: #605e5c; +} +.p-message.p-message-info .p-message-close { + color: #605e5c; +} +.p-message.p-message-success { + background: #dff6dd; + border: 0 none; + border-width: 0 0 0 6px; + color: #323130; +} +.p-message.p-message-success .p-message-icon { + color: #107c10; +} +.p-message.p-message-success .p-message-close { + color: #107c10; +} +.p-message.p-message-warn { + background: #fff4ce; + border: 0 none; + border-width: 0 0 0 6px; + color: #323130; +} +.p-message.p-message-warn .p-message-icon { + color: #797775; +} +.p-message.p-message-warn .p-message-close { + color: #797775; +} +.p-message.p-message-error { + background: #fde7e9; + border: 0 none; + border-width: 0 0 0 6px; + color: #323130; +} +.p-message.p-message-error .p-message-icon { + color: #a80000; +} +.p-message.p-message-error .p-message-close { + color: #a80000; +} +.p-message .p-message-text { + font-size: 90%; + font-weight: 500; +} +.p-message .p-message-icon { + font-size: 1rem; + margin-right: 0.5rem; +} + +.p-toast { + opacity: 0.9; +} +.p-toast .p-toast-message { + margin: 0 0 1rem 0; + 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); + border-radius: 2px; +} +.p-toast .p-toast-message .p-toast-message-content { + padding: 0.5rem; + border-width: 0; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-message-text { + margin: 0 0 0 1rem; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon { + font-size: 1.25rem; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-summary { + font-weight: 600; +} +.p-toast .p-toast-message .p-toast-message-content .p-toast-detail { + margin: 0.5rem 0 0 0; +} +.p-toast .p-toast-message .p-toast-icon-close { + width: 1.25rem; + height: 1.25rem; + border-radius: 2px; + background: transparent; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; +} +.p-toast .p-toast-message .p-toast-icon-close:hover { + background: rgba(255, 255, 255, 0.3); +} +.p-toast .p-toast-message .p-toast-icon-close:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} +.p-toast .p-toast-message.p-toast-message-info { + background: #f3f2f1; + border: 0 none; + border-width: 0 0 0 6px; + 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 { + color: #605e5c; +} +.p-toast .p-toast-message.p-toast-message-success { + background: #dff6dd; + border: 0 none; + border-width: 0 0 0 6px; + 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 { + color: #107c10; +} +.p-toast .p-toast-message.p-toast-message-warn { + background: #fff4ce; + border: 0 none; + border-width: 0 0 0 6px; + 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 { + color: #797775; +} +.p-toast .p-toast-message.p-toast-message-error { + background: #fde7e9; + border: 0 none; + border-width: 0 0 0 6px; + 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 { + color: #a80000; +} + +.p-galleria .p-galleria-close { + margin: 0.5rem; + background: transparent; + color: #faf9f8; + width: 4rem; + height: 4rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 50%; +} +.p-galleria .p-galleria-close .p-galleria-close-icon { + font-size: 2rem; +} +.p-galleria .p-galleria-close:hover { + background: rgba(255, 255, 255, 0.1); + color: #faf9f8; +} +.p-galleria .p-galleria-item-nav { + background: transparent; + color: #faf9f8; + width: 4rem; + height: 4rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 2px; + 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 { + font-size: 2rem; +} +.p-galleria .p-galleria-item-nav:not(.p-disabled):hover { + background: rgba(255, 255, 255, 0.1); + color: #faf9f8; +} +.p-galleria .p-galleria-caption { + background: rgba(0, 0, 0, 0.5); + color: #faf9f8; + padding: 1rem; +} +.p-galleria .p-galleria-indicators { + padding: 1rem; +} +.p-galleria .p-galleria-indicators .p-galleria-indicator button { + background-color: #c8c6c4; + width: 1rem; + height: 1rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + border-radius: 50%; +} +.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover { + background: #e1dfdd; +} +.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { + background: #edebe9; + color: #323130; +} +.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { + margin-right: 0.5rem; +} +.p-galleria.p-galleria-indicators-left .p-galleria-indicator, .p-galleria.p-galleria-indicators-right .p-galleria-indicator { + margin-bottom: 0.5rem; +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators { + background: rgba(0, 0, 0, 0.5); +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button { + background: rgba(255, 255, 255, 0.4); +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover { + background: rgba(255, 255, 255, 0.6); +} +.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { + background: #edebe9; + color: #323130; +} +.p-galleria .p-galleria-thumbnail-container { + background: rgba(0, 0, 0, 0.9); + padding: 1rem 0.25rem; +} +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { + margin: 0.5rem; + background-color: transparent; + color: #faf9f8; + width: 2rem; + height: 2rem; + transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; + 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 { + background: rgba(255, 255, 255, 0.1); + color: #faf9f8; +} +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content { + transition: box-shadow 0.2s; +} +.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} + +.p-galleria-mask.p-component-overlay { + background-color: rgba(0, 0, 0, 0.9); +} + +.p-inplace .p-inplace-display { + padding: 0.5rem 0.5rem; + border-radius: 2px; + transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; +} +.p-inplace .p-inplace-display:not(.p-disabled):hover { + background: #f3f2f1; + color: #323130; +} +.p-inplace .p-inplace-display:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: inset 0 0 0 1px #605e5c; +} + +.p-progressbar { + border: 0 none; + height: 2px; + background: #edebe9; + border-radius: 2px; +} +.p-progressbar .p-progressbar-value { + border: 0 none; + margin: 0; + background: #0078d4; +} +.p-progressbar .p-progressbar-label { + color: #323130; + line-height: 2px; +} + +.p-terminal { + background: #ffffff; + color: #323130; + border: 1px solid #a19f9d; + padding: 1rem; +} +.p-terminal .p-terminal-input { + font-size: 1rem; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +.p-blockui.p-component-overlay { + background: rgba(0, 0, 0, 0.4); +} + +.p-badge { + background: #0078d4; + color: #ffffff; + font-size: 0.75rem; + font-weight: 700; + min-width: 1.5rem; + height: 1.5rem; + line-height: 1.5rem; +} +.p-badge.p-badge-secondary { + background-color: #d45c00; + color: #ffffff; +} +.p-badge.p-badge-success { + background-color: #498205; + color: #ffffff; +} +.p-badge.p-badge-info { + background-color: #00b7c3; + color: #ffffff; +} +.p-badge.p-badge-warning { + background-color: #ffaa44; + color: #323130; +} +.p-badge.p-badge-danger { + background-color: #d13438; + color: #ffffff; +} +.p-badge.p-badge-lg { + font-size: 1.125rem; + min-width: 2.25rem; + height: 2.25rem; + line-height: 2.25rem; +} +.p-badge.p-badge-xl { + font-size: 1.5rem; + min-width: 3rem; + height: 3rem; + line-height: 3rem; +} + +.p-tag { + background: #0078d4; + color: #ffffff; + font-size: 0.75rem; + font-weight: 700; + padding: 0.25rem 0.4rem; + border-radius: 2px; +} +.p-tag.p-tag-success { + background-color: #498205; + color: #ffffff; +} +.p-tag.p-tag-info { + background-color: #00b7c3; + color: #ffffff; +} +.p-tag.p-tag-warning { + background-color: #ffaa44; + color: #323130; +} +.p-tag.p-tag-danger { + background-color: #d13438; + color: #ffffff; +} + +/* Customizations to the designer theme should be defined here */ +.p-button-label { + font-weight: 600; +} + +.p-slider:not(.p-disabled):hover { + background-color: #deecf9; +} +.p-slider:not(.p-disabled):hover .p-slider-range { + background-color: #0078d4; +} +.p-slider:not(.p-disabled):hover .p-slider-handle { + border-color: #005a9e; +} + +.p-inputswitch { + width: 40px; + height: 20px; +} +.p-inputswitch .p-inputswitch-slider { + border: 1px solid #605e5c; +} +.p-inputswitch .p-inputswitch-slider:before { + width: 12px; + height: 12px; + margin-top: -6px; +} +.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider { + border-color: #323130; +} +.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider:before { + background-color: #323130; +} +.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider { + border-color: #0078d4; +} +.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider:before { + background-color: #ffffff; +} +.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; +} +.p-datepicker .p-datepicker-prev { + order: 2; +} +.p-datepicker .p-datepicker-prev .p-datepicker-prev-icon:before { + content: ""; +} +.p-datepicker .p-datepicker-next { + order: 3; + font-size: 90%; +} +.p-datepicker .p-datepicker-next .p-datepicker-next-icon:before { + content: ""; +} +.p-datepicker .p-datepicker-buttonbar { + border-top: 0 none; +} +.p-datepicker .p-timepicker { + border-top: 0 none; +} +.p-datepicker .p-timepicker span { + font-size: 90%; +} +.p-datepicker .p-timepicker .pi-chevron-up:before { + content: ""; +} +.p-datepicker .p-timepicker .pi-chevron-down:before { + content: ""; +} +.p-datepicker table { + font-size: 90%; +} +.p-datepicker table td.p-datepicker-today > span { + border-radius: 50%; +} +.p-datepicker .p-datepicker-buttonbar .p-button { + font-size: 90%; + color: #323130; +} +.p-datepicker .p-datepicker-buttonbar .p-button .p-button-label { + font-weight: 400; +} +.p-datepicker .p-datepicker-buttonbar .p-button:enabled:hover { + color: #323130; + background-color: #f3f2f1; +} +.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; + color: #a19f9d; + opacity: 1; + user-select: none; +} +.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 { + background-color: #f3f2f1; + border-color: #f3f2f1; + color: #a19f9d; + opacity: 1; + 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 { + box-shadow: inset 0 0 0 1px #0078d4; +} + +.p-dropdown.p-disabled, +.p-multiselect.p-disabled { + background-color: #f3f2f1; + border-color: #f3f2f1; + color: #a19f9d; + opacity: 1; + 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 { + color: #a19f9d; +} +.p-dropdown: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; +} diff --git a/public/themes/luna-amber/theme.css b/public/themes/luna-amber/theme.css index 3391f429c..1cdc293fb 100644 --- a/public/themes/luna-amber/theme.css +++ b/public/themes/luna-amber/theme.css @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #FFE082; + background: #FFE082; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #FFE082; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #FFE082; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #FFE082; - background: #FFE082; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #FFCA28; background: #FFCA28; color: #212529; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #4b4b4b; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #FFE082; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #4b4b4b; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #FFCA28; } @@ -1278,6 +1278,18 @@ color: #FFE082; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #888888; + border-color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #4c4c4c; + color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #3c3c3c; + color: #888888; +} .p-button.p-button-text { background-color: transparent; color: #FFE082; @@ -1781,9 +1793,6 @@ color: #dedede; background: #252525; } -.p-datatable .p-sortable-column { - outline-color: white; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #888888; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #212529; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #FFE082; + color: #212529; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #212529; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem white; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #323232; color: #dedede; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #FFD54F; color: #212529; border-color: #FFD54F; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #FFCA28; + color: #212529; + border-color: #FFCA28; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.1rem white; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/luna-blue/theme.css b/public/themes/luna-blue/theme.css index 6ecc983c3..33b65da41 100644 --- a/public/themes/luna-blue/theme.css +++ b/public/themes/luna-blue/theme.css @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #81D4FA; + background: #81D4FA; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #81D4FA; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #81D4FA; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #81D4FA; - background: #81D4FA; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #29B6F6; background: #29B6F6; color: #212529; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #4b4b4b; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #81D4FA; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #4b4b4b; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #29B6F6; } @@ -1278,6 +1278,18 @@ color: #81D4FA; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #888888; + border-color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #4c4c4c; + color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #3c3c3c; + color: #888888; +} .p-button.p-button-text { background-color: transparent; color: #81D4FA; @@ -1781,9 +1793,6 @@ color: #dedede; background: #252525; } -.p-datatable .p-sortable-column { - outline-color: white; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #888888; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #212529; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #81D4FA; + color: #212529; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #212529; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem white; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #323232; color: #dedede; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #4FC3F7; color: #212529; border-color: #4FC3F7; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #29B6F6; + color: #212529; + border-color: #29B6F6; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.1rem white; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/luna-green/theme.css b/public/themes/luna-green/theme.css index f2fbf2776..6fdba4ba9 100644 --- a/public/themes/luna-green/theme.css +++ b/public/themes/luna-green/theme.css @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #C5E1A5; + background: #C5E1A5; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #C5E1A5; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #C5E1A5; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #C5E1A5; - background: #C5E1A5; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #9CCC65; background: #9CCC65; color: #212529; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #4b4b4b; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #C5E1A5; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #4b4b4b; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9CCC65; } @@ -1278,6 +1278,18 @@ color: #C5E1A5; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #888888; + border-color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #4c4c4c; + color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #3c3c3c; + color: #888888; +} .p-button.p-button-text { background-color: transparent; color: #C5E1A5; @@ -1781,9 +1793,6 @@ color: #dedede; background: #252525; } -.p-datatable .p-sortable-column { - outline-color: white; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #888888; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #212529; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #C5E1A5; + color: #212529; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #212529; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem white; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #323232; color: #dedede; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #AED581; color: #212529; border-color: #AED581; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #9CCC65; + color: #212529; + border-color: #9CCC65; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.1rem white; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/luna-pink/theme.css b/public/themes/luna-pink/theme.css index 7cd446487..5e569a68b 100644 --- a/public/themes/luna-pink/theme.css +++ b/public/themes/luna-pink/theme.css @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #F48FB1; + background: #F48FB1; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #F48FB1; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.1rem white; border-color: #F48FB1; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #F48FB1; - background: #F48FB1; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #EC407A; background: #EC407A; color: #212529; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #4b4b4b; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #4b4b4b; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #F48FB1; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #4b4b4b; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #EC407A; } @@ -1278,6 +1278,18 @@ color: #F48FB1; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #888888; + border-color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #4c4c4c; + color: #888888; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #3c3c3c; + color: #888888; +} .p-button.p-button-text { background-color: transparent; color: #F48FB1; @@ -1781,9 +1793,6 @@ color: #dedede; background: #252525; } -.p-datatable .p-sortable-column { - outline-color: white; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #888888; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #212529; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #F48FB1; + color: #212529; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #212529; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem white; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #323232; color: #dedede; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #F06292; color: #212529; border-color: #F06292; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #EC407A; + color: #212529; + border-color: #EC407A; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.1rem white; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/md-dark-deeppurple/theme.css b/public/themes/md-dark-deeppurple/theme.css index 4f833a9e0..b6583914a 100644 --- a/public/themes/md-dark-deeppurple/theme.css +++ b/public/themes/md-dark-deeppurple/theme.css @@ -366,20 +366,20 @@ color: #121212; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #CE93D8; + background: #CE93D8; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: rgba(255, 255, 255, 0.6); } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #CE93D8; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #CE93D8; - background: #CE93D8; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #CE93D8; background: #CE93D8; color: #121212; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: rgba(255, 255, 255, 0.06); } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #CE93D8; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: rgba(255, 255, 255, 0.08); +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #CE93D8; } @@ -1290,6 +1290,18 @@ color: #CE93D8; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #CE93D8; @@ -1793,9 +1805,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: rgba(255, 255, 255, 0.87); } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(206, 147, 216, 0.92); color: #121212; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(206, 147, 216, 0.68); + color: #121212; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/md-dark-indigo/theme.css b/public/themes/md-dark-indigo/theme.css index 90a300d0c..b2cc49786 100644 --- a/public/themes/md-dark-indigo/theme.css +++ b/public/themes/md-dark-indigo/theme.css @@ -366,20 +366,20 @@ color: #121212; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #9FA8DA; + background: #9FA8DA; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: rgba(255, 255, 255, 0.6); } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #9FA8DA; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #9FA8DA; - background: #9FA8DA; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #9FA8DA; background: #9FA8DA; color: #121212; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: rgba(255, 255, 255, 0.06); } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #9FA8DA; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: rgba(255, 255, 255, 0.08); +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #9FA8DA; } @@ -1290,6 +1290,18 @@ color: #9FA8DA; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #9FA8DA; @@ -1793,9 +1805,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: rgba(255, 255, 255, 0.87); } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(159, 168, 218, 0.92); color: #121212; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(159, 168, 218, 0.68); + color: #121212; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/md-light-deeppurple/theme.css b/public/themes/md-light-deeppurple/theme.css index d7797ca88..4714d7ec1 100644 --- a/public/themes/md-light-deeppurple/theme.css +++ b/public/themes/md-light-deeppurple/theme.css @@ -366,20 +366,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #673AB7; + background: #673AB7; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #000001; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #673AB7; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #673AB7; - background: #673AB7; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #673AB7; background: #673AB7; color: #ffffff; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #ececec; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #673AB7; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #ececec; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #673AB7; } @@ -1290,6 +1290,18 @@ color: #673AB7; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(0, 0, 0, 0.6); + border-color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(0, 0, 0, 0.16); + color: rgba(0, 0, 0, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #673AB7; @@ -1793,9 +1805,6 @@ color: #000001; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(0, 0, 0, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #000001; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(0, 0, 0, 0.04); + color: #000001; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #000001; +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #000001; @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(103, 58, 183, 0.92); color: #ffffff; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(103, 58, 183, 0.68); + color: #ffffff; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/md-light-indigo/theme.css b/public/themes/md-light-indigo/theme.css index a8a952379..609ac88e7 100644 --- a/public/themes/md-light-indigo/theme.css +++ b/public/themes/md-light-indigo/theme.css @@ -366,20 +366,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #3F51B5; + background: #3F51B5; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #000001; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #3F51B5; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #3F51B5; - background: #3F51B5; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #3F51B5; background: #3F51B5; color: #ffffff; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #ececec; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #3F51B5; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #ececec; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3F51B5; } @@ -1290,6 +1290,18 @@ color: #3F51B5; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(0, 0, 0, 0.6); + border-color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(0, 0, 0, 0.16); + color: rgba(0, 0, 0, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #3F51B5; @@ -1793,9 +1805,6 @@ color: #000001; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(0, 0, 0, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #000001; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(0, 0, 0, 0.04); + color: #000001; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #000001; +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #000001; @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(63, 81, 181, 0.92); color: #ffffff; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(63, 81, 181, 0.68); + color: #ffffff; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/mdc-dark-deeppurple/theme.css b/public/themes/mdc-dark-deeppurple/theme.css index 37f97e67a..45a089ab0 100644 --- a/public/themes/mdc-dark-deeppurple/theme.css +++ b/public/themes/mdc-dark-deeppurple/theme.css @@ -366,20 +366,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #673AB7; + background: #673AB7; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: rgba(255, 255, 255, 0.6); } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #673AB7; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #673AB7; - background: #673AB7; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #673AB7; background: #673AB7; color: #ffffff; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: rgba(255, 255, 255, 0.06); } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #673AB7; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: rgba(255, 255, 255, 0.08); +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #673AB7; } @@ -1290,6 +1290,18 @@ color: #673AB7; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #673AB7; @@ -1793,9 +1805,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: rgba(255, 255, 255, 0.87); } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(103, 58, 183, 0.92); color: #ffffff; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(103, 58, 183, 0.68); + color: #ffffff; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -3857,7 +3887,7 @@ } .p-inline-message { - padding: 1rem 1rem; + padding: 0.75rem 0.75rem; margin: 0; border-radius: 4px; } diff --git a/public/themes/mdc-dark-indigo/theme.css b/public/themes/mdc-dark-indigo/theme.css index 45cbd0243..1fcda49a5 100644 --- a/public/themes/mdc-dark-indigo/theme.css +++ b/public/themes/mdc-dark-indigo/theme.css @@ -366,20 +366,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #3F51B5; + background: #3F51B5; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: rgba(255, 255, 255, 0.6); } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #3F51B5; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #3F51B5; - background: #3F51B5; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #3F51B5; background: #3F51B5; color: #ffffff; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: rgba(255, 255, 255, 0.06); } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: rgba(255, 255, 255, 0.08); -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #3F51B5; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: rgba(255, 255, 255, 0.08); +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3F51B5; } @@ -1290,6 +1290,18 @@ color: #3F51B5; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #3F51B5; @@ -1793,9 +1805,6 @@ color: rgba(255, 255, 255, 0.87); background: #1e1e1e; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: rgba(255, 255, 255, 0.87); } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: rgba(255, 255, 255, 0.87); +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1e1e1e; color: rgba(255, 255, 255, 0.87); @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(63, 81, 181, 0.92); color: #ffffff; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(63, 81, 181, 0.68); + color: #ffffff; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -3857,7 +3887,7 @@ } .p-inline-message { - padding: 1rem 1rem; + padding: 0.75rem 0.75rem; margin: 0; border-radius: 4px; } diff --git a/public/themes/mdc-light-deeppurple/theme.css b/public/themes/mdc-light-deeppurple/theme.css index 35093ffbf..479ef9136 100644 --- a/public/themes/mdc-light-deeppurple/theme.css +++ b/public/themes/mdc-light-deeppurple/theme.css @@ -366,20 +366,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #673AB7; + background: #673AB7; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #000001; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #673AB7; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #673AB7; - background: #673AB7; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #673AB7; background: #673AB7; color: #ffffff; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #ececec; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #673AB7; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #ececec; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #673AB7; } @@ -1290,6 +1290,18 @@ color: #673AB7; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(0, 0, 0, 0.6); + border-color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(0, 0, 0, 0.16); + color: rgba(0, 0, 0, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #673AB7; @@ -1793,9 +1805,6 @@ color: #000001; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(0, 0, 0, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #000001; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(0, 0, 0, 0.04); + color: #000001; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #000001; +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #000001; @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(103, 58, 183, 0.92); color: #ffffff; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(103, 58, 183, 0.68); + color: #ffffff; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -3857,7 +3887,7 @@ } .p-inline-message { - padding: 1rem 1rem; + padding: 0.75rem 0.75rem; margin: 0; border-radius: 4px; } diff --git a/public/themes/mdc-light-indigo/theme.css b/public/themes/mdc-light-indigo/theme.css index c79dd6675..6f667d6b4 100644 --- a/public/themes/mdc-light-indigo/theme.css +++ b/public/themes/mdc-light-indigo/theme.css @@ -366,20 +366,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #3F51B5; + background: #3F51B5; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #000001; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: none; border-color: #3F51B5; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #3F51B5; - background: #3F51B5; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #3F51B5; background: #3F51B5; color: #ffffff; @@ -391,13 +391,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f5f5f5; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #ececec; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #3F51B5; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #ececec; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #3F51B5; } @@ -1290,6 +1290,18 @@ color: #3F51B5; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(0, 0, 0, 0.6); + border-color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(0, 0, 0, 0.16); + color: rgba(0, 0, 0, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #3F51B5; @@ -1793,9 +1805,6 @@ color: #000001; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: transparent; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(0, 0, 0, 0.6); margin-left: 0.5rem; @@ -1823,6 +1832,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #000001; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(0, 0, 0, 0.04); + color: #000001; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #000001; +} +.p-datatable .p-sortable-column:focus { + box-shadow: none; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #000001; @@ -2027,11 +2047,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: rgba(63, 81, 181, 0.92); color: #ffffff; border-color: transparent; } +.fc .fc-toolbar .fc-button:enabled:active { + background: rgba(63, 81, 181, 0.68); + color: #ffffff; + border-color: transparent; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: none; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -3857,7 +3887,7 @@ } .p-inline-message { - padding: 1rem 1rem; + padding: 0.75rem 0.75rem; margin: 0; border-radius: 4px; } diff --git a/public/themes/nova-accent/theme.css b/public/themes/nova-accent/theme.css index e7e32e1aa..6b7034d8a 100644 --- a/public/themes/nova-accent/theme.css +++ b/public/themes/nova-accent/theme.css @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #007ad9; + background: #007ad9; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #212121; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #007ad9; - background: #007ad9; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #005b9f; background: #005b9f; color: #ffffff; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f4f4f4; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #007ad9; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f4f4f4; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005b9f; } @@ -1266,6 +1266,18 @@ color: #007ad9; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #848484; + border-color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #eaeaea; + color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #d2d2d2; + color: #848484; +} .p-button.p-button-text { background-color: transparent; color: #007ad9; @@ -1769,9 +1781,6 @@ color: #333333; background: #f4f4f4; } -.p-datatable .p-sortable-column { - outline-color: #8dcdff; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #848484; margin-left: 0.5rem; @@ -1799,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #ffffff; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e02365; + color: #ffffff; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #ffffff; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem #8dcdff; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #333333; @@ -2003,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #116fbf; color: #ffffff; border-color: #116fbf; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #005b9f; + color: #ffffff; + border-color: #005b9f; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #8dcdff; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/nova-alt/theme.css b/public/themes/nova-alt/theme.css index 23934d7be..04c441031 100644 --- a/public/themes/nova-alt/theme.css +++ b/public/themes/nova-alt/theme.css @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #007ad9; + background: #007ad9; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #212121; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #007ad9; - background: #007ad9; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #005b9f; background: #005b9f; color: #ffffff; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f4f4f4; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #007ad9; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f4f4f4; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005b9f; } @@ -1278,6 +1278,18 @@ color: #007ad9; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #848484; + border-color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #eaeaea; + color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #d2d2d2; + color: #848484; +} .p-button.p-button-text { background-color: transparent; color: #007ad9; @@ -1781,9 +1793,6 @@ color: #333333; background: #f4f4f4; } -.p-datatable .p-sortable-column { - outline-color: #8dcdff; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #848484; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #ffffff; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #007ad9; + color: #ffffff; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #ffffff; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem #8dcdff; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #333333; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #116fbf; color: #ffffff; border-color: #116fbf; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #005b9f; + color: #ffffff; + border-color: #005b9f; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #8dcdff; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/nova-vue/theme.css b/public/themes/nova-vue/theme.css index 5d7da47ca..73a0260b5 100644 --- a/public/themes/nova-vue/theme.css +++ b/public/themes/nova-vue/theme.css @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #41b883; + background: #41b883; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #212121; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #c2e9d8; border-color: #41b883; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #41b883; - background: #41b883; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #246749; background: #246749; color: #ffffff; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f4f4f4; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #41b883; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f4f4f4; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #246749; } @@ -1278,6 +1278,18 @@ color: #41b883; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #848484; + border-color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #eaeaea; + color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #d2d2d2; + color: #848484; +} .p-button.p-button-text { background-color: transparent; color: #41b883; @@ -1781,9 +1793,6 @@ color: #333333; background: #f4f4f4; } -.p-datatable .p-sortable-column { - outline-color: #c2e9d8; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #848484; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #ffffff; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #41b883; + color: #ffffff; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #ffffff; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem #c2e9d8; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #333333; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #318c63; color: #ffffff; border-color: #318c63; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #246749; + color: #ffffff; + border-color: #246749; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #c2e9d8; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/nova/theme.css b/public/themes/nova/theme.css index 3504ea572..b6b92a830 100644 --- a/public/themes/nova/theme.css +++ b/public/themes/nova/theme.css @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #007ad9; + background: #007ad9; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #212121; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #8dcdff; border-color: #007ad9; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #007ad9; - background: #007ad9; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #005b9f; background: #005b9f; color: #ffffff; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f4f4f4; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #007ad9; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f4f4f4; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #005b9f; } @@ -1278,6 +1278,18 @@ color: #007ad9; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #848484; + border-color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #eaeaea; + color: #848484; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #d2d2d2; + color: #848484; +} .p-button.p-button-text { background-color: transparent; color: #007ad9; @@ -1781,9 +1793,6 @@ color: #333333; background: #f4f4f4; } -.p-datatable .p-sortable-column { - outline-color: #8dcdff; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #848484; margin-left: 0.5rem; @@ -1811,6 +1820,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #ffffff; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #007ad9; + color: #ffffff; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #ffffff; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem #8dcdff; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #333333; @@ -2015,11 +2035,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #116fbf; color: #ffffff; border-color: #116fbf; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #005b9f; + color: #ffffff; + border-color: #005b9f; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #8dcdff; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/rhea/theme.css b/public/themes/rhea/theme.css index b0828d8db..30c4dd77a 100644 --- a/public/themes/rhea/theme.css +++ b/public/themes/rhea/theme.css @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #7B95A3; + background: #7B95A3; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #a6a6a6; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #e4e9ec; border-color: #7B95A3; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #7B95A3; - background: #7B95A3; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #617c8a; background: #617c8a; color: #ffffff; @@ -367,13 +367,13 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f4f4f4; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f4f4f4; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #7B95A3; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f4f4f4; +} +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { background: #617c8a; } @@ -1266,6 +1266,18 @@ color: #7B95A3; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #a6a6a6; + border-color: #a6a6a6; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #f4f4f4; + color: #a6a6a6; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dbdbdb; + color: #a6a6a6; +} .p-button.p-button-text { background-color: transparent; color: #7B95A3; @@ -1769,9 +1781,6 @@ color: #666666; background: #ffffff; } -.p-datatable .p-sortable-column { - outline-color: #e4e9ec; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #666666; margin-left: 0.5rem; @@ -1799,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #385048; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #AFD3C8; + color: #385048; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #385048; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.2rem #e4e9ec; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #666666; @@ -2003,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #6c8999; color: #ffffff; border-color: #6c8999; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #617c8a; + color: #ffffff; + border-color: #617c8a; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #e4e9ec; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index ec4827bb3..b93d2a55e 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: #e9ecef; } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #dee2e6; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #2196F3; + background: #2196F3; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #2196F3; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #a6d5fa; border-color: #2196F3; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #2196F3; - background: #2196F3; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #0b7ad1; background: #0b7ad1; color: #ffffff; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f8f9fa; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #2196F3; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #0b7ad1; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f8f9fa; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #ffffff; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #0b7ad1; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -1087,10 +1083,6 @@ background: #0b7ad1; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #ffffff; -} - .p-rating .p-rating-icon { color: #495057; margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #c0392b; } -.p-highlight .p-rating .p-rating-icon { - color: #ffffff; -} - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1278,6 +1266,18 @@ color: #2196F3; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} .p-button.p-button-text { background-color: transparent; color: #2196F3; @@ -1734,8 +1734,8 @@ background: #dee2e6; } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: #495057; background: #f8f9fa; } -.p-datatable .p-sortable-column { - outline-color: #a6d5fa; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #6c757d; margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #2196F3; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #2196F3; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #2196F3; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #a6d5fa; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #495057; @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #2196F3; + box-shadow: inset 0 2px 0 0 #E3F2FD; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #2196F3; + box-shadow: inset 0 -2px 0 0 #E3F2FD; } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -1903,14 +1911,14 @@ background: #fcfcfc; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #ffffff; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #ffffff; + color: #495057; } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #0d89ec; color: #ffffff; border-color: #0d89ec; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #0b7ad1; + color: #ffffff; + border-color: #0b7ad1; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #a6d5fa; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 0.15rem #a6d5fa; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } @media screen and (max-width: 769px) { @@ -2147,11 +2165,11 @@ color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #08528d; + color: #6cbbf5; } .p-organizationchart .p-organizationchart-line-down { background: #dee2e6; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #2196F3; - border-color: #2196F3; - color: #ffffff; + background: #E3F2FD; + border-color: #E3F2FD; + color: #495057; } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: #e9ecef; @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 0.15rem #a6d5fa; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; } @media screen and (max-width: 769px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 0.2rem #a6d5fa; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + 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 { - color: #ffffff; + color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: #e9ecef; @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #2196F3; + color: #495057; + background: #E3F2FD; margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #ffffff; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #ffffff; + color: #495057; } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 0.2rem #a6d5fa; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: #dee2e6; } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #2196F3; - color: #ffffff; + background: #E3F2FD; + color: #495057; } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index 028af1e33..582032307 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: #e9ecef; } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #dee2e6; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #4CAF50; + background: #4CAF50; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #4CAF50; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #b7e0b8; border-color: #4CAF50; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #4CAF50; - background: #4CAF50; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #3d8c40; background: #3d8c40; color: #ffffff; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f8f9fa; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #4CAF50; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #3d8c40; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f8f9fa; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #ffffff; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #3d8c40; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -1087,10 +1083,6 @@ background: #3d8c40; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #ffffff; -} - .p-rating .p-rating-icon { color: #495057; margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #c0392b; } -.p-highlight .p-rating .p-rating-icon { - color: #ffffff; -} - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1278,6 +1266,18 @@ color: #4CAF50; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} .p-button.p-button-text { background-color: transparent; color: #4CAF50; @@ -1734,8 +1734,8 @@ background: #dee2e6; } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: #495057; background: #f8f9fa; } -.p-datatable .p-sortable-column { - outline-color: #b7e0b8; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #6c757d; margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #4CAF50; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #4CAF50; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #4CAF50; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #b7e0b8; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #495057; @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #4CAF50; + box-shadow: inset 0 2px 0 0 #E8F5E9; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #4CAF50; + box-shadow: inset 0 -2px 0 0 #E8F5E9; } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -1903,14 +1911,14 @@ background: #fcfcfc; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #ffffff; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #ffffff; + color: #495057; } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #449e48; color: #ffffff; border-color: #449e48; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #3d8c40; + color: #ffffff; + border-color: #3d8c40; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #b7e0b8; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 0.15rem #b7e0b8; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } @media screen and (max-width: 769px) { @@ -2147,11 +2165,11 @@ color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #255627; + color: #8fce94; } .p-organizationchart .p-organizationchart-line-down { background: #dee2e6; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #4CAF50; - border-color: #4CAF50; - color: #ffffff; + background: #E8F5E9; + border-color: #E8F5E9; + color: #495057; } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: #e9ecef; @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 0.15rem #b7e0b8; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; } @media screen and (max-width: 769px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 0.2rem #b7e0b8; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + 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 { - color: #ffffff; + color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: #e9ecef; @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #4CAF50; + color: #495057; + background: #E8F5E9; margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #ffffff; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #ffffff; + color: #495057; } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 0.2rem #b7e0b8; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: #dee2e6; } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #4CAF50; - color: #ffffff; + background: #E8F5E9; + color: #495057; } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index 2fcaf56e2..b151d369b 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: #e9ecef; } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #dee2e6; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #FFC107; + background: #FFC107; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #FFC107; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #ffe69c; border-color: #FFC107; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #FFC107; - background: #FFC107; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #d29d00; background: #d29d00; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f8f9fa; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #FFC107; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #d29d00; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f8f9fa; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #d29d00; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -1087,10 +1083,6 @@ background: #d29d00; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: #495057; margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #c0392b; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1278,6 +1266,18 @@ color: #FFC107; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} .p-button.p-button-text { background-color: transparent; color: #FFC107; @@ -1734,8 +1734,8 @@ background: #dee2e6; } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: #495057; background: #f8f9fa; } -.p-datatable .p-sortable-column { - outline-color: #ffe69c; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #6c757d; margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #FFC107; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #FFC107; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #FFC107; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #ffe69c; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #495057; @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #FFC107; + box-shadow: inset 0 2px 0 0 #FFF3E0; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #FFC107; + box-shadow: inset 0 -2px 0 0 #FFF3E0; } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -1903,14 +1911,14 @@ background: #fcfcfc; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: #495057; } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #ecb100; color: #212529; border-color: #ecb100; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #d29d00; + color: #212529; + border-color: #d29d00; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #ffe69c; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 0.15rem #ffe69c; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } @media screen and (max-width: 769px) { @@ -2147,11 +2165,11 @@ color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #876500; + color: #ffc261; } .p-organizationchart .p-organizationchart-line-down { background: #dee2e6; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #FFC107; - border-color: #FFC107; - color: #212529; + background: #FFF3E0; + border-color: #FFF3E0; + color: #495057; } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: #e9ecef; @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 0.15rem #ffe69c; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; } @media screen and (max-width: 769px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 0.2rem #ffe69c; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #FFC107; - color: #212529; + background: #FFF3E0; + 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 { - color: #212529; + color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: #e9ecef; @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #FFC107; + color: #495057; + background: #FFF3E0; margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: #495057; } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 0.2rem #ffe69c; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: #dee2e6; } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #FFC107; - color: #212529; + background: #FFF3E0; + color: #495057; } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index 557c6337f..fcc13ebfc 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: #e9ecef; } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #dee2e6; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #9C27B0; + background: #9C27B0; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #9C27B0; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 0.2rem #df9eea; border-color: #9C27B0; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #9C27B0; - background: #9C27B0; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #7d1f8d; background: #7d1f8d; color: #ffffff; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #f8f9fa; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #f8f9fa; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #9C27B0; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #7d1f8d; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #f8f9fa; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #ffffff; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #7d1f8d; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: #495057; @@ -1087,10 +1083,6 @@ background: #7d1f8d; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #ffffff; -} - .p-rating .p-rating-icon { color: #495057; margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #c0392b; } -.p-highlight .p-rating .p-rating-icon { - color: #ffffff; -} - .p-selectbutton .p-button { background: #ffffff; border: 1px solid #ced4da; @@ -1278,6 +1266,18 @@ color: #9C27B0; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: #6c757d; + border-color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: #e9ecef; + color: #6c757d; +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: #dee2e6; + color: #6c757d; +} .p-button.p-button-text { background-color: transparent; color: #9C27B0; @@ -1734,8 +1734,8 @@ background: #dee2e6; } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: #495057; background: #f8f9fa; } -.p-datatable .p-sortable-column { - outline-color: #df9eea; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: #6c757d; margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #9C27B0; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: #e9ecef; + color: #9C27B0; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #9C27B0; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 0.15rem #df9eea; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #ffffff; color: #495057; @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #9C27B0; + box-shadow: inset 0 2px 0 0 #F3E5F5; } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #9C27B0; + box-shadow: inset 0 -2px 0 0 #F3E5F5; } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -1903,14 +1911,14 @@ background: #fcfcfc; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #ffffff; + color: #495057; } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #ffffff; + color: #495057; } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #8c239e; color: #ffffff; border-color: #8c239e; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #7d1f8d; + color: #ffffff; + border-color: #7d1f8d; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 0.2rem #df9eea; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 0.15rem #df9eea; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } @media screen and (max-width: 769px) { @@ -2147,11 +2165,11 @@ color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #3f1048; + color: #c989d2; } .p-organizationchart .p-organizationchart-line-down { background: #dee2e6; @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #9C27B0; - border-color: #9C27B0; - color: #ffffff; + background: #F3E5F5; + border-color: #F3E5F5; + color: #495057; } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: #e9ecef; @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 0.15rem #df9eea; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; } @media screen and (max-width: 769px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 0.2rem #df9eea; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + 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 { - color: #ffffff; + color: #495057; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: #e9ecef; @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #9C27B0; + color: #495057; + background: #F3E5F5; margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #ffffff; + color: #495057; } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #ffffff; + color: #495057; } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: #e9ecef; @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 0.2rem #df9eea; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: #dee2e6; } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #9C27B0; - color: #ffffff; + background: #F3E5F5; + color: #495057; } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/vela-blue/theme.css b/public/themes/vela-blue/theme.css index 557c47591..5de4dbca8 100644 --- a/public/themes/vela-blue/theme.css +++ b/public/themes/vela-blue/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #304562; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #64B5F6; + background: #64B5F6; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #64B5F6; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #93cbf9; border-color: #64B5F6; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #64B5F6; - background: #64B5F6; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #2396f2; background: #2396f2; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #304562; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #64B5F6; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #2396f2; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #304562; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #2396f2; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #2396f2; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1278,6 +1266,18 @@ color: #64B5F6; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #64B5F6; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1f2d40; } -.p-datatable .p-sortable-column { - outline-color: #93cbf9; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #64B5F6; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #64B5F6; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #64B5F6; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #93cbf9; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #64B5F6; + box-shadow: inset 0 2px 0 0 rgba(100, 181, 246, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #64B5F6; + box-shadow: inset 0 -2px 0 0 rgba(100, 181, 246, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #43a5f4; color: #212529; border-color: #43a5f4; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #2396f2; + color: #212529; + border-color: #2396f2; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #93cbf9; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #93cbf9; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #0c78cf; + color: rgba(12, 120, 207, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: rgba(255, 255, 255, 0.6); @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #64B5F6; - border-color: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + border-color: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #93cbf9; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #93cbf9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + 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 { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #64B5F6; + color: rgba(255, 255, 255, 0.87); + background: rgba(100, 181, 246, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #93cbf9; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #64B5F6; - color: #212529; + background: rgba(100, 181, 246, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/vela-green/theme.css b/public/themes/vela-green/theme.css index 2a1c94fa7..4d84a4eee 100644 --- a/public/themes/vela-green/theme.css +++ b/public/themes/vela-green/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #304562; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #81C784; + background: #81C784; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #81C784; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #a7d8a9; border-color: #81C784; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #81C784; - background: #81C784; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #54b358; background: #54b358; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #304562; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #81C784; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #54b358; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #304562; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #54b358; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #54b358; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1278,6 +1266,18 @@ color: #81C784; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #81C784; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1f2d40; } -.p-datatable .p-sortable-column { - outline-color: #a7d8a9; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #81C784; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #81C784; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #81C784; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #a7d8a9; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #81C784; + box-shadow: inset 0 2px 0 0 rgba(129, 199, 132, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #81C784; + box-shadow: inset 0 -2px 0 0 rgba(129, 199, 132, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #6abd6e; color: #212529; border-color: #6abd6e; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #54b358; + color: #212529; + border-color: #54b358; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #a7d8a9; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #a7d8a9; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #3e8b41; + color: rgba(62, 139, 65, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: rgba(255, 255, 255, 0.6); @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #81C784; - border-color: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + border-color: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #a7d8a9; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #a7d8a9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + 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 { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #81C784; + color: rgba(255, 255, 255, 0.87); + background: rgba(129, 199, 132, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #a7d8a9; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #81C784; - color: #212529; + background: rgba(129, 199, 132, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/vela-orange/theme.css b/public/themes/vela-orange/theme.css index 3461d0c91..0402c3414 100644 --- a/public/themes/vela-orange/theme.css +++ b/public/themes/vela-orange/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #304562; @@ -342,20 +342,20 @@ color: #212529; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #FFD54F; + background: #FFD54F; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #FFD54F; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #ffe284; border-color: #FFD54F; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #FFD54F; - background: #FFD54F; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #ffc50c; background: #ffc50c; color: #212529; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #304562; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #FFD54F; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #ffc50c; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #304562; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #212529; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #ffc50c; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #ffc50c; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #212529; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #212529; -} - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1278,6 +1266,18 @@ color: #FFD54F; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #FFD54F; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1f2d40; } -.p-datatable .p-sortable-column { - outline-color: #ffe284; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #FFD54F; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #FFD54F; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #FFD54F; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #ffe284; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #FFD54F; + box-shadow: inset 0 2px 0 0 rgba(255, 213, 79, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #FFD54F; + box-shadow: inset 0 -2px 0 0 rgba(255, 213, 79, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #ffcd2e; color: #212529; border-color: #ffcd2e; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #ffc50c; + color: #212529; + border-color: #ffc50c; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #ffe284; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #ffe284; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #cf9d00; + color: rgba(207, 157, 0, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: rgba(255, 255, 255, 0.6); @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #FFD54F; - border-color: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + border-color: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #ffe284; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #ffe284; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + 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 { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #212529; - background: #FFD54F; + color: rgba(255, 255, 255, 0.87); + background: rgba(255, 213, 79, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #212529; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #ffe284; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #FFD54F; - color: #212529; + background: rgba(255, 213, 79, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/public/themes/vela-purple/theme.css b/public/themes/vela-purple/theme.css index 30113ee97..d74580da0 100644 --- a/public/themes/vela-purple/theme.css +++ b/public/themes/vela-purple/theme.css @@ -86,8 +86,8 @@ .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-autocomplete.p-autocomplete-multiple .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { @@ -121,8 +121,8 @@ background: rgba(255, 255, 255, 0.03); } .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-calendar.p-error > .p-inputtext, .p-calendar.p-invalid > .p-inputtext { @@ -213,8 +213,8 @@ border: 1px solid transparent; } .p-datepicker table td > span.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-datepicker table td > span:focus { outline: 0 none; @@ -227,8 +227,8 @@ border-color: transparent; } .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-datepicker .p-datepicker-buttonbar { padding: 1rem 0; @@ -281,8 +281,8 @@ border-radius: 3px; } .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { border-right: 1px solid #304562; @@ -342,20 +342,20 @@ color: #ffffff; font-size: 14px; } -.p-checkbox .p-checkbox-box:not(.p-disabled):hover { +.p-checkbox .p-checkbox-box.p-highlight { + border-color: #BA68C8; + background: #BA68C8; +} +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { border-color: #BA68C8; } -.p-checkbox .p-checkbox-box:not(.p-disabled).p-focus { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus { outline: 0 none; outline-offset: 0; box-shadow: 0 0 0 1px #cf95d9; border-color: #BA68C8; } -.p-checkbox .p-checkbox-box.p-highlight { - border-color: #BA68C8; - background: #BA68C8; -} -.p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { +.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { border-color: #a241b2; background: #a241b2; color: #ffffff; @@ -367,18 +367,14 @@ .p-input-filled .p-checkbox .p-checkbox-box { background-color: #304562; } -.p-input-filled .p-checkbox .p-checkbox-box:not(.p-disabled):hover { - background-color: #304562; -} .p-input-filled .p-checkbox .p-checkbox-box.p-highlight { background: #BA68C8; } -.p-input-filled .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover { - background: #a241b2; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover { + background-color: #304562; } - -.p-highlight .p-checkbox .p-checkbox-box { - border-color: #ffffff; +.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover { + background: #a241b2; } .p-chips .p-chips-multiple-container { @@ -396,8 +392,8 @@ .p-chips .p-chips-multiple-container .p-chips-token { padding: 0.25rem 0.5rem; margin-right: 0.5rem; - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); border-radius: 3px; } .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { @@ -515,8 +511,8 @@ border-radius: 0; } .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -877,8 +873,8 @@ border-radius: 0; } .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-listbox .p-listbox-list .p-listbox-item:focus { outline: 0 none; @@ -990,8 +986,8 @@ border-radius: 0; } .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover { color: rgba(255, 255, 255, 0.87); @@ -1087,10 +1083,6 @@ background: #a241b2; } -.p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #ffffff; -} - .p-rating .p-rating-icon { color: rgba(255, 255, 255, 0.87); margin-left: 0.5rem; @@ -1118,10 +1110,6 @@ color: #F48FB1; } -.p-highlight .p-rating .p-rating-icon { - color: #ffffff; -} - .p-selectbutton .p-button { background: #1f2d40; border: 1px solid #304562; @@ -1278,6 +1266,18 @@ color: #BA68C8; border: 1px solid; } +.p-button.p-button-outlined.p-button-plain { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:hover { + background: rgba(255, 255, 255, 0.03); + color: rgba(255, 255, 255, 0.6); +} +.p-button.p-button-outlined.p-button-plain:enabled:active { + background: rgba(255, 255, 255, 0.16); + color: rgba(255, 255, 255, 0.6); +} .p-button.p-button-text { background-color: transparent; color: #BA68C8; @@ -1734,8 +1734,8 @@ background: rgba(255, 255, 255, 0.03); } .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-paginator-top { @@ -1781,9 +1781,6 @@ color: rgba(255, 255, 255, 0.87); background: #1f2d40; } -.p-datatable .p-sortable-column { - outline-color: #cf95d9; -} .p-datatable .p-sortable-column .p-sortable-column-icon { color: rgba(255, 255, 255, 0.6); margin-left: 0.5rem; @@ -1793,8 +1790,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); margin-left: 0.5rem; } .p-datatable .p-sortable-column:not(.p-highlight):hover { @@ -1811,6 +1808,17 @@ .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { color: #BA68C8; } +.p-datatable .p-sortable-column.p-highlight:hover { + background: rgba(255, 255, 255, 0.03); + color: #BA68C8; +} +.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon { + color: #BA68C8; +} +.p-datatable .p-sortable-column:focus { + box-shadow: inset 0 0 0 1px #cf95d9; + outline: 0 none; +} .p-datatable .p-datatable-tbody > tr { background: #1f2d40; color: rgba(255, 255, 255, 0.87); @@ -1855,14 +1863,14 @@ margin-right: 0.5rem; } .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #BA68C8; + box-shadow: inset 0 2px 0 0 rgba(186, 104, 200, 0.16); } .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #BA68C8; + box-shadow: inset 0 -2px 0 0 rgba(186, 104, 200, 0.16); } .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -1903,14 +1911,14 @@ background: rgba(255, 255, 255, 0.01); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even).p-highlight .p-row-toggler:hover { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-datatable.p-datatable-sm .p-datatable-header { padding: 0.5rem 0.5rem; @@ -2015,11 +2023,21 @@ display: flex; align-items: center; } -.fc .fc-toolbar .fc-button:hover { +.fc .fc-toolbar .fc-button:enabled:hover { background: #b052c0; color: #ffffff; border-color: #b052c0; } +.fc .fc-toolbar .fc-button:enabled:active { + background: #a241b2; + color: #ffffff; + border-color: #a241b2; +} +.fc .fc-toolbar .fc-button:enabled:active:focus { + outline: 0 none; + outline-offset: 0; + box-shadow: 0 0 0 1px #cf95d9; +} .fc .fc-toolbar .fc-button .fc-icon-chevron-left { font-family: "PrimeIcons" !important; text-indent: 0; @@ -2122,8 +2140,8 @@ box-shadow: inset 0 0 0 1px #cf95d9; } .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } @media screen and (max-width: 960px) { @@ -2147,11 +2165,11 @@ color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #752f81; + color: rgba(117, 47, 129, 0.16); } .p-organizationchart .p-organizationchart-line-down { background: rgba(255, 255, 255, 0.6); @@ -2245,9 +2263,9 @@ border-radius: 3px; } .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #BA68C8; - border-color: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + border-color: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2297,8 +2315,8 @@ box-shadow: inset 0 0 0 1px #cf95d9; } .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); } @media screen and (max-width: 960px) { @@ -2380,12 +2398,12 @@ box-shadow: 0 0 0 1px #cf95d9; } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + 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 { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -2464,8 +2482,8 @@ height: 1.143rem; min-width: 1.143rem; line-height: 1.143rem; - color: #ffffff; - background: #BA68C8; + color: rgba(255, 255, 255, 0.87); + background: rgba(186, 104, 200, 0.16); margin-left: 0.5rem; } .p-treetable .p-sortable-column:not(.p-highlight):hover { @@ -2521,14 +2539,14 @@ color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #ffffff; + color: rgba(255, 255, 255, 0.87); } .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { background: rgba(255, 255, 255, 0.03); @@ -3716,8 +3734,8 @@ box-shadow: 0 0 0 1px #cf95d9; } .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-steps .p-steps-item.p-highlight .p-steps-title { font-weight: 600; @@ -4107,8 +4125,8 @@ background: rgba(255, 255, 255, 0.1); } .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { margin-right: 0.5rem; @@ -4126,8 +4144,8 @@ background: rgba(255, 255, 255, 0.6); } .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #BA68C8; - color: #ffffff; + background: rgba(186, 104, 200, 0.16); + color: rgba(255, 255, 255, 0.87); } .p-galleria .p-galleria-thumbnail-container { background: rgba(0, 0, 0, 0.9); diff --git a/src/AppConfigurator.vue b/src/AppConfigurator.vue index ef5f30b27..8dfe697c2 100755 --- a/src/AppConfigurator.vue +++ b/src/AppConfigurator.vue @@ -185,7 +185,24 @@ -
Legacy
+

Premium Themes

+

Premium themes are only available exclusively for PrimeNG Theme Designer subscribers and therefore not included in PrimeNG core.

+
+
+ + Soho Light +
+
+ + Soho Dark +
+
+ +

Legacy Free Themes