Fixed #4822 - Calendar responsiveness updates
parent
af504277ba
commit
9bef643b0d
|
@ -56,6 +56,10 @@ export default {
|
||||||
default: 1
|
default: 1
|
||||||
},
|
},
|
||||||
responsiveOptions: Array,
|
responsiveOptions: Array,
|
||||||
|
breakpoint: {
|
||||||
|
type: String,
|
||||||
|
default: '769px'
|
||||||
|
},
|
||||||
view: {
|
view: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'date'
|
default: 'date'
|
||||||
|
|
|
@ -538,7 +538,8 @@ export default {
|
||||||
pm: null,
|
pm: null,
|
||||||
focused: false,
|
focused: false,
|
||||||
overlayVisible: false,
|
overlayVisible: false,
|
||||||
currentView: this.view
|
currentView: this.view,
|
||||||
|
queryMatches: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -588,6 +589,13 @@ export default {
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.createResponsiveStyle();
|
this.createResponsiveStyle();
|
||||||
|
const query = matchMedia(`(max-width: ${this.breakpoint})`);
|
||||||
|
|
||||||
|
this.queryMatches = query.matches;
|
||||||
|
|
||||||
|
query.addEventListener('change', () => {
|
||||||
|
this.queryMatches = query.matches;
|
||||||
|
});
|
||||||
|
|
||||||
if (this.inline) {
|
if (this.inline) {
|
||||||
this.overlay && this.overlay.setAttribute(this.attributeSelector, '');
|
this.overlay && this.overlay.setAttribute(this.attributeSelector, '');
|
||||||
|
|
|
@ -171,6 +171,7 @@ const classes = {
|
||||||
panel: ({ instance, props, state }) => [
|
panel: ({ instance, props, state }) => [
|
||||||
'p-datepicker p-component',
|
'p-datepicker p-component',
|
||||||
{
|
{
|
||||||
|
'p-datepicker-mobile': instance.queryMatches,
|
||||||
'p-datepicker-inline': props.inline,
|
'p-datepicker-inline': props.inline,
|
||||||
'p-disabled': props.disabled,
|
'p-disabled': props.disabled,
|
||||||
'p-datepicker-timeonly': props.timeOnly,
|
'p-datepicker-timeonly': props.timeOnly,
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #93cbf9;
|
box-shadow: 0 0 0 1px #93cbf9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #121212;
|
background: #121212;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #a7d8a9;
|
box-shadow: 0 0 0 1px #a7d8a9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #121212;
|
background: #121212;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #ffe284;
|
box-shadow: 0 0 0 1px #ffe284;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #121212;
|
background: #121212;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #cf95d9;
|
box-shadow: 0 0 0 1px #cf95d9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #121212;
|
background: #121212;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.04);
|
background: rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #e3f3fe;
|
box-shadow: 0 0 0 1px #e3f3fe;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #20262e;
|
background: #20262e;
|
||||||
border: 1px solid #3f4b5b;
|
border: 1px solid #3f4b5b;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.04);
|
background: rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #f0e6f5;
|
box-shadow: 0 0 0 1px #f0e6f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #20262e;
|
background: #20262e;
|
||||||
border: 1px solid #3f4b5b;
|
border: 1px solid #3f4b5b;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #e9ecef;
|
background: #e9ecef;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #e9ecef;
|
background: #e9ecef;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f2f1;
|
background: #f3f2f1;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: inset 0 0 0 1px #605e5c;
|
box-shadow: inset 0 0 0 1px #605e5c;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #605e5c;
|
border: 1px solid #605e5c;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #111827;
|
background: #111827;
|
||||||
border: 1px solid #424b57;
|
border: 1px solid #424b57;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #fef08a;
|
box-shadow: 0 0 0 0.2rem #fef08a;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #BFDBFE;
|
box-shadow: 0 0 0 0.2rem #BFDBFE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #a5f3fc;
|
box-shadow: 0 0 0 0.2rem #a5f3fc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #C7D2FE;
|
box-shadow: 0 0 0 0.2rem #C7D2FE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #fbcfe8;
|
box-shadow: 0 0 0 0.2rem #fbcfe8;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #a7f3d0;
|
box-shadow: 0 0 0 0.2rem #a7f3d0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -646,6 +646,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f3f4f6;
|
background: #f3f4f6;
|
||||||
}
|
}
|
||||||
|
@ -671,11 +674,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #99f6e4;
|
box-shadow: 0 0 0 0.2rem #99f6e4;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d1d5db;
|
border: 1px solid #d1d5db;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #4c4c4c;
|
background: #4c4c4c;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.1rem white;
|
box-shadow: 0 0 0 0.1rem white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #191919;
|
background: #191919;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #4c4c4c;
|
background: #4c4c4c;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.1rem white;
|
box-shadow: 0 0 0 0.1rem white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #191919;
|
background: #191919;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #4c4c4c;
|
background: #4c4c4c;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.1rem white;
|
box-shadow: 0 0 0 0.1rem white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #191919;
|
background: #191919;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #4c4c4c;
|
background: #4c4c4c;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.1rem white;
|
box-shadow: 0 0 0 0.1rem white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #191919;
|
background: #191919;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.04);
|
background: rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.04);
|
background: rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(0, 0, 0, 0.04);
|
background: rgba(0, 0, 0, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.38);
|
border: 1px solid rgba(0, 0, 0, 0.38);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(0, 0, 0, 0.04);
|
background: rgba(0, 0, 0, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.38);
|
border: 1px solid rgba(0, 0, 0, 0.38);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.04);
|
background: rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.04);
|
background: rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(0, 0, 0, 0.04);
|
background: rgba(0, 0, 0, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.38);
|
border: 1px solid rgba(0, 0, 0, 0.38);
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(0, 0, 0, 0.04);
|
background: rgba(0, 0, 0, 0.04);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.38);
|
border: 1px solid rgba(0, 0, 0, 0.38);
|
||||||
|
|
|
@ -655,6 +655,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #D8DEE9;
|
background: #D8DEE9;
|
||||||
}
|
}
|
||||||
|
@ -680,11 +683,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #D8DEE9;
|
border: 1px solid #D8DEE9;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #dde1e6;
|
background: #dde1e6;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #90c9f5;
|
box-shadow: 0 0 0 0.2rem #90c9f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #a5acb3;
|
border: 1px solid #a5acb3;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #eaeaea;
|
background: #eaeaea;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0.25rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #a6a6a6;
|
border: 1px solid #a6a6a6;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #eaeaea;
|
background: #eaeaea;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0.25rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #a6a6a6;
|
border: 1px solid #a6a6a6;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #eaeaea;
|
background: #eaeaea;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #c2e9d8;
|
box-shadow: 0 0 0 0.2rem #c2e9d8;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0.25rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #a6a6a6;
|
border: 1px solid #a6a6a6;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #eaeaea;
|
background: #eaeaea;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0.25rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #a6a6a6;
|
border: 1px solid #a6a6a6;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f4f4f4;
|
background: #f4f4f4;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #e4e9ec;
|
box-shadow: 0 0 0 0.2rem #e4e9ec;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0.25rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #dadada;
|
border: 1px solid #dadada;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #e9ecef;
|
background: #e9ecef;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #a6d5fa;
|
box-shadow: 0 0 0 0.2rem #a6d5fa;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #e9ecef;
|
background: #e9ecef;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #b7e0b8;
|
box-shadow: 0 0 0 0.2rem #b7e0b8;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #e9ecef;
|
background: #e9ecef;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #ffe69c;
|
box-shadow: 0 0 0 0.2rem #ffe69c;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #e9ecef;
|
background: #e9ecef;
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 0.2rem #df9eea;
|
box-shadow: 0 0 0 0.2rem #df9eea;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #ced4da;
|
border: 1px solid #ced4da;
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: 0 0 0 1px #e0d8fc;
|
box-shadow: 0 0 0 1px #e0d8fc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #1d1e27;
|
background: #1d1e27;
|
||||||
border: 1px solid #3e4053;
|
border: 1px solid #3e4053;
|
||||||
|
|
|
@ -651,6 +651,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.2);
|
background: rgba(255, 255, 255, 0.2);
|
||||||
}
|
}
|
||||||
|
@ -676,11 +679,6 @@
|
||||||
box-shadow: 0 0 0 1px #c7bbfa;
|
box-shadow: 0 0 0 1px #c7bbfa;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d3dbe3;
|
border: 1px solid #d3dbe3;
|
||||||
|
|
|
@ -662,6 +662,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #f4f4f5;
|
background: #f4f4f5;
|
||||||
}
|
}
|
||||||
|
@ -687,11 +690,6 @@
|
||||||
box-shadow: 0 0 0 1px #6366F1;
|
box-shadow: 0 0 0 1px #6366F1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 1px solid #d4d4d8;
|
border: 1px solid #d4d4d8;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #93cbf9;
|
box-shadow: 0 0 0 1px #93cbf9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #17212f;
|
background: #17212f;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #a7d8a9;
|
box-shadow: 0 0 0 1px #a7d8a9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #17212f;
|
background: #17212f;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #ffe284;
|
box-shadow: 0 0 0 1px #ffe284;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #17212f;
|
background: #17212f;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -627,6 +627,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: rgba(255, 255, 255, 0.03);
|
||||||
}
|
}
|
||||||
|
@ -652,11 +655,6 @@
|
||||||
box-shadow: 0 0 0 1px #cf95d9;
|
box-shadow: 0 0 0 1px #cf95d9;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #17212f;
|
background: #17212f;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -659,6 +659,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: rgba(158, 173, 230, 0.08);
|
background: rgba(158, 173, 230, 0.08);
|
||||||
}
|
}
|
||||||
|
@ -684,11 +687,6 @@
|
||||||
box-shadow: 0 0 0 1px #9eade6;
|
box-shadow: 0 0 0 1px #9eade6;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #0e1315;
|
background: #0e1315;
|
||||||
border: 2px solid #263238;
|
border: 2px solid #263238;
|
||||||
|
|
|
@ -659,6 +659,9 @@
|
||||||
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
.p-datepicker.p-datepicker-mobile table th, .p-datepicker.p-datepicker-mobile table td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: #edf0fA;
|
background: #edf0fA;
|
||||||
}
|
}
|
||||||
|
@ -684,11 +687,6 @@
|
||||||
box-shadow: 0 0 0 0.1rem #bbc7ee;
|
box-shadow: 0 0 0 0.1rem #bbc7ee;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 769px) {
|
|
||||||
.p-datepicker table th, .p-datepicker table td {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.p-cascadeselect {
|
.p-cascadeselect {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border: 2px solid #e1e1e1;
|
border: 2px solid #e1e1e1;
|
||||||
|
|
Loading…
Reference in New Issue