Fixed #1777- Improve table row reorder highlight

pull/1792/head
Cagatay Civici 2021-11-18 12:01:44 +03:00
parent 2c45f4f74e
commit c0cffe4b67
43 changed files with 580 additions and 142 deletions

View File

@ -2292,7 +2292,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #93cbf9;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #93cbf9;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(100, 181, 246, 0.16); background: rgba(100, 181, 246, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #93cbf9;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #93cbf9;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(100, 181, 246, 0.16); background: rgba(100, 181, 246, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #64B5F6; background: #64B5F6;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #64B5F6; background: #64B5F6;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #64B5F6;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #64B5F6;
}

View File

@ -2292,7 +2292,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #a7d8a9;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #a7d8a9;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(129, 199, 132, 0.16); background: rgba(129, 199, 132, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #a7d8a9;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #a7d8a9;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(129, 199, 132, 0.16); background: rgba(129, 199, 132, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #81C784; background: #81C784;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #81C784; background: #81C784;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #81C784;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #81C784;
}

View File

@ -2292,7 +2292,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #ffe284;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #ffe284;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(255, 213, 79, 0.16); background: rgba(255, 213, 79, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #ffe284;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #ffe284;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(255, 213, 79, 0.16); background: rgba(255, 213, 79, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #FFD54F; background: #FFD54F;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #FFD54F; background: #FFD54F;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #FFD54F;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #FFD54F;
}

View File

@ -2292,7 +2292,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #cf95d9;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #cf95d9;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(186, 104, 200, 0.16); background: rgba(186, 104, 200, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #cf95d9;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #cf95d9;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(186, 104, 200, 0.16); background: rgba(186, 104, 200, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #BA68C8; background: #BA68C8;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #BA68C8; background: #BA68C8;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #BA68C8;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #BA68C8;
}

View File

@ -2304,7 +2304,6 @@
background: #2a323d; background: #2a323d;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: #e3f3fe;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #e3f3fe;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #8dd0ff; background: #8dd0ff;
color: #151515; color: #151515;
@ -3291,7 +3294,6 @@
background: #2a323d; background: #2a323d;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: #e3f3fe;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #e3f3fe;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #8dd0ff; background: #8dd0ff;
color: #151515; color: #151515;
@ -5305,7 +5311,7 @@
background: #8dd0ff; background: #8dd0ff;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #151515;
line-height: 1.5rem; line-height: 1.5rem;
} }

View File

@ -2304,7 +2304,6 @@
background: #2a323d; background: #2a323d;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: #f0e6f5;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #f0e6f5;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #c298d8; background: #c298d8;
color: #151515; color: #151515;
@ -3291,7 +3294,6 @@
background: #2a323d; background: #2a323d;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: #f0e6f5;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #f0e6f5;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #c298d8; background: #c298d8;
color: #151515; color: #151515;
@ -5305,7 +5311,7 @@
background: #c298d8; background: #c298d8;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #151515;
line-height: 1.5rem; line-height: 1.5rem;
} }

View File

@ -2304,7 +2304,6 @@
background: #ffffff; background: #ffffff;
color: #212529; color: #212529;
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: rgba(38, 143, 255, 0.5);
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid rgba(38, 143, 255, 0.5);
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #007bff; background: #007bff;
color: #ffffff; color: #ffffff;
@ -3291,7 +3294,6 @@
background: #ffffff; background: #ffffff;
color: #212529; color: #212529;
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: rgba(38, 143, 255, 0.5);
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #212529; color: #212529;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid rgba(38, 143, 255, 0.5);
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #007bff; background: #007bff;
color: #ffffff; color: #ffffff;
@ -5305,7 +5311,7 @@
background: #007bff; background: #007bff;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #212529; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }

View File

@ -2304,7 +2304,6 @@
background: #ffffff; background: #ffffff;
color: #212529; color: #212529;
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: rgba(136, 60, 174, 0.5);
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid rgba(136, 60, 174, 0.5);
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #883cae; background: #883cae;
color: #ffffff; color: #ffffff;
@ -3291,7 +3294,6 @@
background: #ffffff; background: #ffffff;
color: #212529; color: #212529;
transition: box-shadow 0.15s; transition: box-shadow 0.15s;
outline-color: rgba(136, 60, 174, 0.5);
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #212529; color: #212529;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid rgba(136, 60, 174, 0.5);
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #883cae; background: #883cae;
color: #ffffff; color: #ffffff;
@ -5305,7 +5311,7 @@
background: #883cae; background: #883cae;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #212529; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #323130; color: #323130;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #605e5c;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #605e5c;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #edebe9; background: #edebe9;
color: #323130; color: #323130;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #323130; color: #323130;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #605e5c;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #323130; color: #323130;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #605e5c;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #edebe9; background: #edebe9;
color: #323130; color: #323130;
@ -5244,7 +5250,7 @@
background: #0078d4; background: #0078d4;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #323130; color: #ffffff;
line-height: 2px; line-height: 2px;
} }
@ -5508,3 +5514,10 @@
outline: 1px solid #605e5c; outline: 1px solid #605e5c;
outline-offset: 2px; outline-offset: 2px;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #0078d4;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #0078d4;
}

View File

@ -521,18 +521,18 @@
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5); box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5); box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5); box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
@ -5405,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #93C5FD;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #93C5FD;
}

View File

@ -521,18 +521,18 @@
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(165, 180, 252, 0.5); box-shadow: 0 0 0 0.2rem rgba(165, 180, 252, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(165, 180, 252, 0.5); box-shadow: 0 0 0 0.2rem rgba(165, 180, 252, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(165, 180, 252, 0.5); box-shadow: 0 0 0 0.2rem rgba(165, 180, 252, 0.5);
@ -5405,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #A5B4FC;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #A5B4FC;
}

View File

@ -521,18 +521,18 @@
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(196, 181, 253, 0.5); box-shadow: 0 0 0 0.2rem rgba(196, 181, 253, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(196, 181, 253, 0.5); box-shadow: 0 0 0 0.2rem rgba(196, 181, 253, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(196, 181, 253, 0.5); box-shadow: 0 0 0 0.2rem rgba(196, 181, 253, 0.5);
@ -5405,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #C4B5FD;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #C4B5FD;
}

View File

@ -521,18 +521,18 @@
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.5); box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.5); box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.5);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.5); box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.5);
@ -5405,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #5EEAD4;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #5EEAD4;
}

View File

@ -2327,7 +2327,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #BFDBFE;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2369,6 +2368,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #BFDBFE;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #EFF6FF; background: #EFF6FF;
color: #3B82F6; color: #3B82F6;
@ -3314,7 +3317,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #BFDBFE;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3348,6 +3350,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #BFDBFE;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #EFF6FF; background: #EFF6FF;
color: #3B82F6; color: #3B82F6;
@ -5279,7 +5285,7 @@
background: #3B82F6; background: #3B82F6;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5399,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #3B82F6;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #3B82F6;
}

View File

@ -2327,7 +2327,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #C7D2FE;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2369,6 +2368,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #C7D2FE;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #EEF2FF; background: #EEF2FF;
color: #4338CA; color: #4338CA;
@ -3314,7 +3317,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #C7D2FE;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3348,6 +3350,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #C7D2FE;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #EEF2FF; background: #EEF2FF;
color: #4338CA; color: #4338CA;
@ -5279,7 +5285,7 @@
background: #6366F1; background: #6366F1;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5399,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #6366F1;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #6366F1;
}

View File

@ -2327,7 +2327,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #DDD6FE;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2369,6 +2368,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #DDD6FE;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #F5F3FF; background: #F5F3FF;
color: #6D28D9; color: #6D28D9;
@ -3314,7 +3317,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #DDD6FE;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3348,6 +3350,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #DDD6FE;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #F5F3FF; background: #F5F3FF;
color: #6D28D9; color: #6D28D9;
@ -5279,7 +5285,7 @@
background: #8B5CF6; background: #8B5CF6;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5399,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #8B5CF6;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #8B5CF6;
}

View File

@ -2327,7 +2327,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #99F6E4;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2369,6 +2368,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #99F6E4;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #F0FDFA; background: #F0FDFA;
color: #0F766E; color: #0F766E;
@ -3314,7 +3317,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #99F6E4;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3348,6 +3350,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #99F6E4;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #F0FDFA; background: #F0FDFA;
color: #0F766E; color: #0F766E;
@ -5279,7 +5285,7 @@
background: #14B8A6; background: #14B8A6;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5399,3 +5405,10 @@
.p-button.p-button-danger:enabled:focus { .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #14B8A6;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #14B8A6;
}

View File

@ -2304,7 +2304,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #FFE082; background: #FFE082;
color: #212529; color: #212529;
@ -3291,7 +3294,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #dedede; color: #dedede;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #FFE082; background: #FFE082;
color: #212529; color: #212529;
@ -5256,7 +5262,7 @@
background: #FFE082; background: #FFE082;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #dedede; color: #212529;
line-height: 24px; line-height: 24px;
} }

View File

@ -2304,7 +2304,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #81D4FA; background: #81D4FA;
color: #212529; color: #212529;
@ -3291,7 +3294,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #dedede; color: #dedede;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #81D4FA; background: #81D4FA;
color: #212529; color: #212529;
@ -5256,7 +5262,7 @@
background: #81D4FA; background: #81D4FA;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #dedede; color: #212529;
line-height: 24px; line-height: 24px;
} }

View File

@ -2304,7 +2304,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #C5E1A5; background: #C5E1A5;
color: #212529; color: #212529;
@ -3291,7 +3294,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #dedede; color: #dedede;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #C5E1A5; background: #C5E1A5;
color: #212529; color: #212529;
@ -5256,7 +5262,7 @@
background: #C5E1A5; background: #C5E1A5;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #dedede; color: #212529;
line-height: 24px; line-height: 24px;
} }

View File

@ -2304,7 +2304,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #F48FB1; background: #F48FB1;
color: #212529; color: #212529;
@ -3291,7 +3294,6 @@
background: #323232; background: #323232;
color: #dedede; color: #dedede;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: white;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #dedede; color: #dedede;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid white;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #F48FB1; background: #F48FB1;
color: #212529; color: #212529;
@ -5256,7 +5262,7 @@
background: #F48FB1; background: #F48FB1;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #dedede; color: #212529;
line-height: 24px; line-height: 24px;
} }

View File

@ -2316,7 +2316,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(206, 147, 216, 0.16); background: rgba(206, 147, 216, 0.16);
color: #CE93D8; color: #CE93D8;
@ -3303,7 +3306,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(206, 147, 216, 0.16); background: rgba(206, 147, 216, 0.16);
color: #CE93D8; color: #CE93D8;
@ -5317,7 +5323,7 @@
background: #CE93D8; background: #CE93D8;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #121212;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(255, 255, 255, 0.03); background-color: rgba(255, 255, 255, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #CE93D8;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #CE93D8;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(159, 168, 218, 0.16); background: rgba(159, 168, 218, 0.16);
color: #9FA8DA; color: #9FA8DA;
@ -3303,7 +3306,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(159, 168, 218, 0.16); background: rgba(159, 168, 218, 0.16);
color: #9FA8DA; color: #9FA8DA;
@ -5317,7 +5323,7 @@
background: #9FA8DA; background: #9FA8DA;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #121212;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(255, 255, 255, 0.03); background-color: rgba(255, 255, 255, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #9FA8DA;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #9FA8DA;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(103, 58, 183, 0.12); background: rgba(103, 58, 183, 0.12);
color: #673AB7; color: #673AB7;
@ -3303,7 +3306,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(103, 58, 183, 0.12); background: rgba(103, 58, 183, 0.12);
color: #673AB7; color: #673AB7;
@ -5317,7 +5323,7 @@
background: #673AB7; background: #673AB7;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(0, 0, 0, 0.87); color: #ffffff;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(0, 0, 0, 0.03); background-color: rgba(0, 0, 0, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #673AB7;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #673AB7;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(63, 81, 181, 0.12); background: rgba(63, 81, 181, 0.12);
color: #3F51B5; color: #3F51B5;
@ -3303,7 +3306,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(63, 81, 181, 0.12); background: rgba(63, 81, 181, 0.12);
color: #3F51B5; color: #3F51B5;
@ -5317,7 +5323,7 @@
background: #3F51B5; background: #3F51B5;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(0, 0, 0, 0.87); color: #ffffff;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(0, 0, 0, 0.03); background-color: rgba(0, 0, 0, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #3F51B5;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #3F51B5;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(206, 147, 216, 0.16); background: rgba(206, 147, 216, 0.16);
color: #CE93D8; color: #CE93D8;
@ -3303,7 +3306,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(206, 147, 216, 0.16); background: rgba(206, 147, 216, 0.16);
color: #CE93D8; color: #CE93D8;
@ -5317,7 +5323,7 @@
background: #CE93D8; background: #CE93D8;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #121212;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(255, 255, 255, 0.03); background-color: rgba(255, 255, 255, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #CE93D8;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #CE93D8;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(159, 168, 218, 0.16); background: rgba(159, 168, 218, 0.16);
color: #9FA8DA; color: #9FA8DA;
@ -3303,7 +3306,6 @@
background: #1e1e1e; background: #1e1e1e;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(159, 168, 218, 0.16); background: rgba(159, 168, 218, 0.16);
color: #9FA8DA; color: #9FA8DA;
@ -5317,7 +5323,7 @@
background: #9FA8DA; background: #9FA8DA;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #121212;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(255, 255, 255, 0.03); background-color: rgba(255, 255, 255, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #9FA8DA;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #9FA8DA;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(103, 58, 183, 0.12); background: rgba(103, 58, 183, 0.12);
color: #673AB7; color: #673AB7;
@ -3303,7 +3306,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(103, 58, 183, 0.12); background: rgba(103, 58, 183, 0.12);
color: #673AB7; color: #673AB7;
@ -5317,7 +5323,7 @@
background: #673AB7; background: #673AB7;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(0, 0, 0, 0.87); color: #ffffff;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(0, 0, 0, 0.03); background-color: rgba(0, 0, 0, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #673AB7;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #673AB7;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2316,7 +2316,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2358,6 +2357,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(63, 81, 181, 0.12); background: rgba(63, 81, 181, 0.12);
color: #3F51B5; color: #3F51B5;
@ -3303,7 +3306,6 @@
background: #ffffff; background: #ffffff;
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
transition: none; transition: none;
outline-color: transparent;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3337,6 +3339,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid transparent;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(63, 81, 181, 0.12); background: rgba(63, 81, 181, 0.12);
color: #3F51B5; color: #3F51B5;
@ -5317,7 +5323,7 @@
background: #3F51B5; background: #3F51B5;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(0, 0, 0, 0.87); color: #ffffff;
line-height: 4px; line-height: 4px;
} }
@ -6019,6 +6025,13 @@
background-color: rgba(0, 0, 0, 0.03); background-color: rgba(0, 0, 0, 0.03);
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #3F51B5;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #3F51B5;
}
.p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger { .p-dropdown .p-inputtext, .p-dropdown .p-dropdown-trigger {
background-image: none; background-image: none;
background: transparent; background: transparent;
@ -6507,7 +6520,7 @@
.p-progressbar { .p-progressbar {
border-radius: 0; border-radius: 0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar.p-progressbar-determinate .p-progressbar-label {
display: none; display: none;
} }

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #333333; color: #333333;
transition: background-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, box-shadow 0.2s;
outline-color: #8dcdff;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #8dcdff;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #e02365; background: #e02365;
color: #ffffff; color: #ffffff;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #333333; color: #333333;
transition: background-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, box-shadow 0.2s;
outline-color: #8dcdff;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #333333; color: #333333;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #8dcdff;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #e02365; background: #e02365;
color: #ffffff; color: #ffffff;
@ -5244,7 +5250,7 @@
background: #007ad9; background: #007ad9;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #333333; color: #ffffff;
line-height: 24px; line-height: 24px;
} }

View File

@ -2304,7 +2304,6 @@
background: #ffffff; background: #ffffff;
color: #333333; color: #333333;
transition: background-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, box-shadow 0.2s;
outline-color: #8dcdff;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #8dcdff;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #007ad9; background: #007ad9;
color: #ffffff; color: #ffffff;
@ -3291,7 +3294,6 @@
background: #ffffff; background: #ffffff;
color: #333333; color: #333333;
transition: background-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, box-shadow 0.2s;
outline-color: #8dcdff;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #333333; color: #333333;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #8dcdff;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #007ad9; background: #007ad9;
color: #ffffff; color: #ffffff;
@ -5256,7 +5262,7 @@
background: #007ad9; background: #007ad9;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #333333; color: #ffffff;
line-height: 24px; line-height: 24px;
} }

View File

@ -486,18 +486,18 @@
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem #c2e9d8; box-shadow: 0 0 0 0.2rem #c2e9d8;
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
background: #eaeaea; background: #eaeaea;
} }
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem #c2e9d8; box-shadow: 0 0 0 0.2rem #c2e9d8;
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):hover { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
background: #eaeaea; background: #eaeaea;
} }
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-highlight):not(.p-disabled):focus { .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
outline: 0 none; outline: 0 none;
outline-offset: 0; outline-offset: 0;
box-shadow: 0 0 0 0.2rem #c2e9d8; box-shadow: 0 0 0 0.2rem #c2e9d8;

View File

@ -2304,7 +2304,6 @@
background: #ffffff; background: #ffffff;
color: #333333; color: #333333;
transition: background-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, box-shadow 0.2s;
outline-color: #8dcdff;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2346,6 +2345,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #8dcdff;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #007ad9; background: #007ad9;
color: #ffffff; color: #ffffff;
@ -3291,7 +3294,6 @@
background: #ffffff; background: #ffffff;
color: #333333; color: #333333;
transition: background-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, box-shadow 0.2s;
outline-color: #8dcdff;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3325,6 +3327,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #333333; color: #333333;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #8dcdff;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #007ad9; background: #007ad9;
color: #ffffff; color: #ffffff;
@ -5256,7 +5262,7 @@
background: #007ad9; background: #007ad9;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #333333; color: #ffffff;
line-height: 24px; line-height: 24px;
} }

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #666666; color: #666666;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: #e4e9ec;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 700; font-weight: 700;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #e4e9ec;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #AFD3C8; background: #AFD3C8;
color: #385048; color: #385048;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #666666; color: #666666;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
outline-color: #e4e9ec;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #666666; color: #666666;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #e4e9ec;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #AFD3C8; background: #AFD3C8;
color: #385048; color: #385048;
@ -5244,7 +5250,7 @@
background: #7B95A3; background: #7B95A3;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #666666; color: #ffffff;
line-height: 24px; line-height: 24px;
} }

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #a6d5fa;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #a6d5fa;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #E3F2FD; background: #E3F2FD;
color: #495057; color: #495057;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #a6d5fa;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #a6d5fa;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #E3F2FD; background: #E3F2FD;
color: #495057; color: #495057;
@ -5293,7 +5299,7 @@
background: #2196F3; background: #2196F3;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5371,3 +5377,10 @@
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: #2196F3; background-color: #2196F3;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #2196F3;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #2196F3;
}

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #b7e0b8;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #b7e0b8;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #E8F5E9; background: #E8F5E9;
color: #495057; color: #495057;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #b7e0b8;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #b7e0b8;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #E8F5E9; background: #E8F5E9;
color: #495057; color: #495057;
@ -5293,7 +5299,7 @@
background: #4CAF50; background: #4CAF50;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5371,3 +5377,10 @@
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: #4CAF50; background-color: #4CAF50;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #4CAF50;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #4CAF50;
}

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #ffe69c;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #ffe69c;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #FFF3E0; background: #FFF3E0;
color: #495057; color: #495057;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #ffe69c;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #ffe69c;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #FFF3E0; background: #FFF3E0;
color: #495057; color: #495057;
@ -5293,7 +5299,7 @@
background: #FFC107; background: #FFC107;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5371,3 +5377,10 @@
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: #FFC107; background-color: #FFC107;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #FFC107;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #FFC107;
}

View File

@ -2292,7 +2292,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #df9eea;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #df9eea;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #F3E5F5; background: #F3E5F5;
color: #495057; color: #495057;
@ -3279,7 +3282,6 @@
background: #ffffff; background: #ffffff;
color: #495057; color: #495057;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #df9eea;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #495057; color: #495057;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #df9eea;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #F3E5F5; background: #F3E5F5;
color: #495057; color: #495057;
@ -5293,7 +5299,7 @@
background: #9C27B0; background: #9C27B0;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #495057; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5371,3 +5377,10 @@
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: #9C27B0; background-color: #9C27B0;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #9C27B0;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #9C27B0;
}

View File

@ -2327,7 +2327,6 @@
background: #ffffff; background: #ffffff;
color: #3f3f46; color: #3f3f46;
transition: none; transition: none;
outline-color: #6366F1;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2369,6 +2368,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 500; font-weight: 500;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #6366F1;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: #EEF2FF; background: #EEF2FF;
color: #312E81; color: #312E81;
@ -3314,7 +3317,6 @@
background: #ffffff; background: #ffffff;
color: #3f3f46; color: #3f3f46;
transition: none; transition: none;
outline-color: #6366F1;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3348,6 +3350,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: #3f3f46; color: #3f3f46;
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #6366F1;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: #EEF2FF; background: #EEF2FF;
color: #312E81; color: #312E81;
@ -5328,7 +5334,7 @@
background: #4F46E5; background: #4F46E5;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: #3f3f46; color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5474,3 +5480,10 @@
.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: #4F46E5; background-color: #4F46E5;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #4F46E5;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #4F46E5;
}

View File

@ -2292,7 +2292,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #93cbf9;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #93cbf9;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(100, 181, 246, 0.16); background: rgba(100, 181, 246, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #93cbf9;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #93cbf9;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(100, 181, 246, 0.16); background: rgba(100, 181, 246, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #64B5F6; background: #64B5F6;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #64B5F6; background: #64B5F6;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #64B5F6;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #64B5F6;
}

View File

@ -2292,7 +2292,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #a7d8a9;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #a7d8a9;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(129, 199, 132, 0.16); background: rgba(129, 199, 132, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #a7d8a9;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #a7d8a9;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(129, 199, 132, 0.16); background: rgba(129, 199, 132, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #81C784; background: #81C784;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #81C784; background: #81C784;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #81C784;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #81C784;
}

View File

@ -2292,7 +2292,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #ffe284;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #ffe284;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(255, 213, 79, 0.16); background: rgba(255, 213, 79, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #ffe284;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #ffe284;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(255, 213, 79, 0.16); background: rgba(255, 213, 79, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #FFD54F; background: #FFD54F;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #212529;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #FFD54F; background: #FFD54F;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #FFD54F;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #FFD54F;
}

View File

@ -2292,7 +2292,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #cf95d9;
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
@ -2334,6 +2333,10 @@
.p-datatable .p-datatable-tbody > tr > td > .p-column-title { .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600; font-weight: 600;
} }
.p-datatable .p-datatable-tbody > tr:focus {
outline: 1px solid #cf95d9;
outline-offset: -1px;
}
.p-datatable .p-datatable-tbody > tr.p-highlight { .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(186, 104, 200, 0.16); background: rgba(186, 104, 200, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -3279,7 +3282,6 @@
background: #1f2d40; background: #1f2d40;
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
outline-color: #cf95d9;
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
@ -3313,6 +3315,10 @@
.p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
} }
.p-treetable .p-treetable-tbody > tr:focus {
outline: 1px solid #cf95d9;
outline-offset: -1px;
}
.p-treetable .p-treetable-tbody > tr.p-highlight { .p-treetable .p-treetable-tbody > tr.p-highlight {
background: rgba(186, 104, 200, 0.16); background: rgba(186, 104, 200, 0.16);
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
@ -5293,7 +5299,7 @@
background: #BA68C8; background: #BA68C8;
} }
.p-progressbar .p-progressbar-label { .p-progressbar .p-progressbar-label {
color: rgba(255, 255, 255, 0.87); color: #ffffff;
line-height: 1.5rem; line-height: 1.5rem;
} }
@ -5374,3 +5380,10 @@
.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background: #BA68C8; background: #BA68C8;
} }
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #BA68C8;
}
.p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #BA68C8;
}