mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
90 lines
1.4 KiB
SCSS
90 lines
1.4 KiB
SCSS
@import 'vue-datepicker-next/scss/index';
|
|
|
|
.date-picker {
|
|
// To be removed one SLA reports date picker is created
|
|
&.small {
|
|
.mx-input {
|
|
@apply h-8 text-sm;
|
|
}
|
|
}
|
|
|
|
&.no-margin {
|
|
.mx-input {
|
|
@apply mb-0;
|
|
}
|
|
}
|
|
|
|
&:not(.auto-width) {
|
|
.mx-datepicker-range {
|
|
@apply w-[320px];
|
|
}
|
|
}
|
|
|
|
.mx-datepicker {
|
|
@apply w-full;
|
|
}
|
|
|
|
.mx-input {
|
|
@apply h-[2.5rem] flex border border-solid border-slate-200 dark:border-slate-600 rounded-md shadow-none;
|
|
}
|
|
|
|
.mx-input:disabled,
|
|
.mx-input[readonly] {
|
|
@apply bg-white dark:bg-slate-900 cursor-pointer;
|
|
}
|
|
|
|
.mx-icon-calendar {
|
|
@apply dark:text-slate-500;
|
|
}
|
|
}
|
|
|
|
.mx-datepicker-main {
|
|
@apply border-0 bg-white dark:bg-slate-800;
|
|
|
|
.cell {
|
|
&.disabled {
|
|
@apply bg-slate-25 dark:bg-slate-900 text-slate-200 dark:text-slate-300;
|
|
}
|
|
|
|
&:hover,
|
|
&.hover-in-range,
|
|
&.in-range {
|
|
@apply bg-slate-75 dark:bg-slate-700 text-slate-900 dark:text-slate-100;
|
|
}
|
|
}
|
|
|
|
.mx-time {
|
|
@apply border-0 bg-white dark:bg-slate-800;
|
|
|
|
.mx-time-header {
|
|
@apply border-0;
|
|
}
|
|
|
|
.mx-time-item {
|
|
&.disabled {
|
|
@apply bg-slate-25 dark:bg-slate-900;
|
|
}
|
|
|
|
&:hover {
|
|
@apply bg-slate-75 dark:bg-slate-700;
|
|
}
|
|
}
|
|
}
|
|
|
|
.today {
|
|
@apply font-semibold;
|
|
}
|
|
}
|
|
|
|
.mx-datepicker-popup {
|
|
@apply z-[99999];
|
|
}
|
|
|
|
.mx-datepicker-inline {
|
|
@apply w-full;
|
|
|
|
.mx-calendar {
|
|
@apply w-full;
|
|
}
|
|
}
|