1173 lines
25 KiB
SCSS
1173 lines
25 KiB
SCSS
@use '../../scss/_bootstrap-extended/include' as light;
|
|
@use '../../scss/_bootstrap-extended/include-dark' as dark;
|
|
@import '../../scss/_custom-variables/libs';
|
|
|
|
$flatpickr-content-padding-x: 0.5rem !default;
|
|
$flatpickr-content-padding-y: 0.25rem !default;
|
|
$flatpickr-cell-size: 2.25rem !default;
|
|
$flatpickr-animation-duration: 400ms !default;
|
|
$flatpickr-time-picker-height: 40px !default;
|
|
$flatpickr-week-height: 2.25rem !default;
|
|
$flatpickr-month-height: 2.5rem !default;
|
|
$flatpickr-year-height: 1.2rem !default;
|
|
$flatpickr-width: ($flatpickr-cell-size * 7)+ ($flatpickr-content-padding-x * 2) !default;
|
|
|
|
@mixin keyframes($name) {
|
|
@-webkit-keyframes #{$name} {
|
|
@content;
|
|
}
|
|
|
|
@-moz-keyframes #{$name} {
|
|
@content;
|
|
}
|
|
|
|
@keyframes #{$name} {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
.flatpickr-calendar {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
padding-bottom: 2px;
|
|
max-height: 0;
|
|
border: 0;
|
|
text-align: center;
|
|
opacity: 0;
|
|
animation: none;
|
|
outline: 0;
|
|
touch-action: manipulation;
|
|
line-height: light.$line-height-base;
|
|
font-size: light.$font-size-base;
|
|
@include light.border-radius(light.$border-radius !important);
|
|
|
|
&.open,
|
|
&.inline {
|
|
visibility: visible;
|
|
overflow: visible;
|
|
max-height: 640px;
|
|
opacity: 1;
|
|
}
|
|
|
|
&.open {
|
|
display: inline-block;
|
|
}
|
|
|
|
&.animate.open {
|
|
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
}
|
|
|
|
&:not(.inline):not(.open) {
|
|
display: none !important;
|
|
}
|
|
|
|
&.inline {
|
|
position: relative;
|
|
top: 2px;
|
|
display: block;
|
|
}
|
|
|
|
&.static {
|
|
position: absolute;
|
|
top: calc(100% + 2px);
|
|
}
|
|
|
|
&.static.open {
|
|
z-index: 999;
|
|
display: block;
|
|
}
|
|
|
|
&.hasWeeks {
|
|
width: auto;
|
|
}
|
|
|
|
@include app-ltr {
|
|
&.hasWeeks .flatpickr-days {
|
|
border-bottom-left-radius: 0 !important;
|
|
}
|
|
}
|
|
|
|
@include app-rtl {
|
|
&.hasWeeks .flatpickr-days {
|
|
border-bottom-right-radius: 0 !important;
|
|
}
|
|
}
|
|
|
|
&.hasTime {
|
|
padding-bottom: 0;
|
|
.flatpickr-time {
|
|
height: $flatpickr-time-picker-height;
|
|
}
|
|
}
|
|
|
|
&.noCalendar.hasTime {
|
|
.flatpickr-time {
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
input[type='number'] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
input[type='number']::-webkit-inner-spin-button,
|
|
input[type='number']::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.flatpickr-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.flatpickr-month {
|
|
position: relative;
|
|
overflow: hidden;
|
|
height: $flatpickr-month-height + 0.5;
|
|
text-align: center;
|
|
line-height: 1;
|
|
user-select: none;
|
|
}
|
|
|
|
.flatpickr-prev-month,
|
|
.flatpickr-next-month {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
z-index: 3;
|
|
padding: 0 0.41rem;
|
|
height: 1.875rem;
|
|
width: 1.875rem;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
border-radius: 50rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
svg {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
.flatpickr-prev-month i,
|
|
.flatpickr-next-month i {
|
|
position: relative;
|
|
}
|
|
|
|
.flatpickr-prev-month {
|
|
&.flatpickr-prev-month {
|
|
right: 3.5rem;
|
|
}
|
|
|
|
@include app-rtl {
|
|
left: 3.5rem;
|
|
right: auto;
|
|
transform: scaleX(-1);
|
|
}
|
|
}
|
|
|
|
.flatpickr-next-month {
|
|
&.flatpickr-prev-month {
|
|
right: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&.flatpickr-next-month {
|
|
right: 1rem;
|
|
}
|
|
|
|
@include app-rtl {
|
|
right: auto;
|
|
left: 1rem;
|
|
transform: scaleX(-1);
|
|
}
|
|
}
|
|
|
|
.flatpickr-prev-month:hover,
|
|
.flatpickr-next-month:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.flatpickr-prev-month svg,
|
|
.flatpickr-next-month svg {
|
|
width: 0.6rem;
|
|
}
|
|
|
|
.flatpickr-prev-month svg path,
|
|
.flatpickr-next-month svg path {
|
|
transition: fill 0.1s;
|
|
fill: inherit;
|
|
}
|
|
|
|
.numInputWrapper {
|
|
position: relative;
|
|
height: auto;
|
|
|
|
input,
|
|
span {
|
|
display: inline-block;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
|
|
span {
|
|
position: absolute;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
width: 14px;
|
|
height: 50%;
|
|
line-height: 1;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
|
|
@include app-rtl {
|
|
right: auto;
|
|
left: 0;
|
|
}
|
|
|
|
&:hover {
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
&:active {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
&:after {
|
|
content: '';
|
|
display: block;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
&.arrowUp {
|
|
top: 0;
|
|
}
|
|
|
|
&.arrowUp:after {
|
|
border-right: 4px solid transparent;
|
|
border-bottom: 4px solid rgba(72, 72, 72, 0.6);
|
|
border-left: 4px solid transparent;
|
|
}
|
|
|
|
&.arrowDown {
|
|
top: 50%;
|
|
}
|
|
|
|
&.arrowDown:after {
|
|
border-top: 4px solid rgba(72, 72, 72, 0.6);
|
|
border-right: 4px solid transparent;
|
|
border-left: 4px solid transparent;
|
|
}
|
|
|
|
svg {
|
|
width: inherit;
|
|
height: auto;
|
|
}
|
|
|
|
svg path {
|
|
fill: rgba(255, 255, 255, 0.5);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
&:hover span {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.flatpickr-current-month {
|
|
position: absolute;
|
|
inset-inline-start: 4%;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
width: 75%;
|
|
height: $flatpickr-month-height + 0.5;
|
|
text-align: center;
|
|
line-height: 1;
|
|
padding: 0.5rem 0 0 0;
|
|
transform: translate3d(0px, 0px, 0px);
|
|
&:has(.cur-month) {
|
|
inset-inline-start: 5%;
|
|
}
|
|
|
|
.flatpickr-monthDropdown-months,
|
|
input.cur-year {
|
|
outline: none;
|
|
vertical-align: middle !important;
|
|
font-weight: 400;
|
|
font-size: inherit;
|
|
font-family: inherit;
|
|
line-height: inherit;
|
|
color: inherit;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: 0;
|
|
&:not(:first-child) {
|
|
padding: 0 0 0 0.5ch;
|
|
}
|
|
}
|
|
|
|
.numInputWrapper {
|
|
display: inline-block;
|
|
width: 6ch;
|
|
}
|
|
|
|
.flatpickr-monthDropdown-months {
|
|
appearance: menulist;
|
|
cursor: pointer;
|
|
height: $flatpickr-month-height - 0.25rem;
|
|
// margin: -1px 0 0 0;
|
|
position: relative;
|
|
width: auto;
|
|
font-size: light.$font-size-base;
|
|
}
|
|
|
|
input.cur-year {
|
|
margin: 0;
|
|
height: $flatpickr-year-height;
|
|
cursor: default;
|
|
|
|
@include app-rtl {
|
|
padding-right: 0.5ch;
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
&[disabled],
|
|
&[disabled]:hover {
|
|
background: transparent;
|
|
pointer-events: none;
|
|
}
|
|
|
|
&[disabled] {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|
|
|
|
.flatpickr-weekdaycontainer {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: $flatpickr-content-padding-y $flatpickr-content-padding-x;
|
|
}
|
|
|
|
.flatpickr-weekdays {
|
|
display: flex;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
max-width: 17.5rem;
|
|
width: 100%;
|
|
height: $flatpickr-week-height;
|
|
text-align: center;
|
|
margin-bottom: 0.125rem;
|
|
}
|
|
|
|
span.flatpickr-weekday {
|
|
display: block;
|
|
flex: 1;
|
|
margin: 0;
|
|
text-align: center;
|
|
line-height: 1;
|
|
cursor: default;
|
|
}
|
|
|
|
.dayContainer,
|
|
.flatpickr-weeks {
|
|
padding: 1px 0 0 0;
|
|
}
|
|
|
|
.flatpickr-days {
|
|
position: relative;
|
|
display: flex;
|
|
overflow: hidden;
|
|
width: auto !important;
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.flatpickr-calendar.hasTime & {
|
|
border-bottom: 0 !important;
|
|
border-bottom-right-radius: 0 !important;
|
|
border-bottom-left-radius: 0 !important;
|
|
}
|
|
}
|
|
|
|
.dayContainer {
|
|
display: inline-block;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
min-width: $flatpickr-cell-size * 7;
|
|
max-width: $flatpickr-cell-size * 7;
|
|
width: $flatpickr-cell-size * 7;
|
|
outline: 0;
|
|
opacity: 1;
|
|
transform: translate3d(0px, 0px, 0px);
|
|
}
|
|
|
|
.flatpickr-day {
|
|
position: relative;
|
|
display: inline-block;
|
|
flex-basis: 14.2857143%;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
max-width: $flatpickr-cell-size;
|
|
width: 15.2857143%;
|
|
height: $flatpickr-cell-size;
|
|
border: 1px solid transparent;
|
|
background: none;
|
|
text-align: center;
|
|
font-weight: 400;
|
|
line-height: calc(#{$flatpickr-cell-size} - 2px);
|
|
cursor: pointer;
|
|
|
|
&.inRange,
|
|
&.prevMonthDay.inRange,
|
|
&.nextMonthDay.inRange,
|
|
&.today.inRange,
|
|
&.prevMonthDay.today.inRange,
|
|
&.nextMonthDay.today.inRange,
|
|
&:hover,
|
|
&.prevMonthDay:hover,
|
|
&.nextMonthDay:hover,
|
|
&:focus,
|
|
&.prevMonthDay:focus,
|
|
&.nextMonthDay:focus {
|
|
outline: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&.inRange:not(.startRange):not(.endRange) {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
&.disabled,
|
|
&.flatpickr-disabled,
|
|
&.flatpickr-disabled.today,
|
|
&.disabled:hover,
|
|
&.flatpickr-disabled:hover,
|
|
&.flatpickr-disabled.today:hover {
|
|
border-color: transparent;
|
|
background: transparent !important;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
&.prevMonthDay,
|
|
&.nextMonthDay {
|
|
border-color: transparent;
|
|
background: transparent;
|
|
cursor: default;
|
|
}
|
|
|
|
&.notAllowed,
|
|
&.notAllowed.prevMonthDay,
|
|
&.notAllowed.nextMonthDay {
|
|
border-color: transparent;
|
|
background: transparent;
|
|
cursor: default;
|
|
}
|
|
|
|
&.week.selected {
|
|
border-radius: 0;
|
|
}
|
|
|
|
@include app-ltr {
|
|
&.selected.startRange,
|
|
&.startRange.startRange,
|
|
&.endRange.startRange {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
&.selected.endRange,
|
|
&.startRange.endRange,
|
|
&.endRange.endRange {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
}
|
|
|
|
@include app-rtl {
|
|
&.selected.startRange,
|
|
&.startRange.startRange,
|
|
&.endRange.startRange {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
&.selected.endRange,
|
|
&.startRange.endRange,
|
|
&.endRange.endRange {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.flatpickr-weekwrapper {
|
|
display: inline-block;
|
|
float: left;
|
|
|
|
.flatpickr-weeks {
|
|
background-clip: padding-box !important;
|
|
|
|
@include app-ltr {
|
|
.flatpickr-weeks {
|
|
border-bottom-right-radius: 0 !important;
|
|
}
|
|
}
|
|
|
|
@include app-rtl {
|
|
.flatpickr-weeks {
|
|
border-bottom-left-radius: 0 !important;
|
|
}
|
|
}
|
|
.flatpickr-day {
|
|
font-size: light.$font-size-sm;
|
|
}
|
|
}
|
|
|
|
.flatpickr-calendar.hasTime .flatpickr-weeks {
|
|
border-bottom: 0 !important;
|
|
border-bottom-right-radius: 0 !important;
|
|
border-bottom-left-radius: 0 !important;
|
|
}
|
|
|
|
.flatpickr-weekday {
|
|
float: none;
|
|
width: 100%;
|
|
line-height: $flatpickr-week-height;
|
|
position: relative;
|
|
top: 1px;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
|
|
span.flatpickr-day {
|
|
display: block;
|
|
max-width: none;
|
|
width: $flatpickr-cell-size;
|
|
background: none !important;
|
|
}
|
|
}
|
|
|
|
.flatpickr-calendar.hasTime .flatpickr-weeks {
|
|
border-bottom: 0 !important;
|
|
border-bottom-left-radius: 0 !important;
|
|
border-bottom-right-radius: 0 !important;
|
|
}
|
|
|
|
.flatpickr-innerContainer {
|
|
display: block;
|
|
display: flex;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
&:has(.flatpickr-weeks) {
|
|
.flatpickr-weeks {
|
|
@include app-ltr {
|
|
padding-left: 0.445rem;
|
|
}
|
|
@include app-rtl {
|
|
padding-left: 0.445rem;
|
|
}
|
|
}
|
|
.flatpickr-weekdaycontainer {
|
|
@include app-rtl {
|
|
padding-left: $flatpickr-content-padding-x * 1.25;
|
|
}
|
|
}
|
|
.flatpickr-weekwrapper .flatpickr-weekday {
|
|
padding-left: 0.445rem;
|
|
}
|
|
.flatpickr-weekwrapper {
|
|
@include app-rtl {
|
|
padding-right: 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.flatpickr-rContainer {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
}
|
|
|
|
.flatpickr-time {
|
|
display: block;
|
|
display: flex;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
max-height: $flatpickr-time-picker-height;
|
|
height: 0;
|
|
outline: 0;
|
|
background-clip: padding-box !important;
|
|
text-align: center;
|
|
line-height: $flatpickr-time-picker-height;
|
|
|
|
&:after {
|
|
content: '';
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.numInputWrapper {
|
|
float: left;
|
|
flex: 1;
|
|
width: 40%;
|
|
height: $flatpickr-time-picker-height;
|
|
}
|
|
|
|
&.hasSeconds .numInputWrapper {
|
|
width: 26%;
|
|
}
|
|
|
|
&.time24hr .numInputWrapper {
|
|
width: 49%;
|
|
}
|
|
|
|
input {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: inherit;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
text-align: center;
|
|
line-height: inherit;
|
|
cursor: pointer;
|
|
font-size: light.$font-size-base;
|
|
|
|
&.flatpickr-hour,
|
|
&.flatpickr-minute,
|
|
&.flatpickr-second {
|
|
font-weight: light.$font-weight-normal;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.flatpickr-time-separator,
|
|
.flatpickr-am-pm {
|
|
display: inline-block;
|
|
float: left;
|
|
align-self: center;
|
|
width: 2%;
|
|
height: inherit;
|
|
line-height: inherit;
|
|
user-select: none;
|
|
}
|
|
|
|
.flatpickr-am-pm {
|
|
width: 18%;
|
|
outline: 0;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
}
|
|
}
|
|
|
|
.flatpickr-calendar.noCalendar & {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.flatpickr-calendar:not(.noCalendar) & {
|
|
border-top: 0;
|
|
border-top-left-radius: 0 !important;
|
|
border-top-right-radius: 0 !important;
|
|
}
|
|
}
|
|
|
|
.flatpickr-input[readonly] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
// Animations
|
|
//
|
|
|
|
@include keyframes(fpFadeInDown) {
|
|
from {
|
|
opacity: 0;
|
|
transform: translate3d(0, -20px, 0);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
// Light layout
|
|
@if $enable-light-style {
|
|
.light-style {
|
|
.flatpickr-calendar {
|
|
background: light.$dropdown-bg;
|
|
}
|
|
.flatpickr-prev-month,
|
|
.flatpickr-next-month {
|
|
background-color: light.rgba-to-hex(rgba(light.$black, 0.08), light.$card-bg);
|
|
svg {
|
|
fill: light.$body-color;
|
|
stroke: light.$body-color;
|
|
}
|
|
}
|
|
// Dimensions
|
|
.flatpickr-calendar,
|
|
.flatpickr-days {
|
|
width: calc(#{$flatpickr-width} + calc(#{light.$dropdown-border-width} * 2px)) !important;
|
|
}
|
|
.flatpickr-calendar {
|
|
background-color: light.$card-bg;
|
|
border-radius: light.$border-radius !important;
|
|
}
|
|
|
|
@include app-ltr-style {
|
|
.flatpickr-calendar.hasWeeks {
|
|
width: calc(
|
|
#{$flatpickr-width + $flatpickr-cell-size} + calc(#{light.$dropdown-border-width} * 3px) + 0.35rem
|
|
) !important;
|
|
}
|
|
}
|
|
@include app-rtl-style {
|
|
.flatpickr-calendar.hasWeeks {
|
|
width: calc(
|
|
#{$flatpickr-width + $flatpickr-cell-size} + calc(#{light.$dropdown-border-width} * 3px) + 1rem
|
|
) !important;
|
|
}
|
|
}
|
|
|
|
.flatpickr-calendar.open {
|
|
z-index: light.$zindex-popover;
|
|
}
|
|
//! Flatpickr provide default input as readonly, applying default input style to readonly
|
|
.flatpickr-input[readonly],
|
|
.flatpickr-input ~ .form-control[readonly] {
|
|
background: #{light.$input-bg};
|
|
}
|
|
|
|
.flatpickr-days {
|
|
background: #{light.$dropdown-bg};
|
|
padding: $flatpickr-content-padding-y $flatpickr-content-padding-x $flatpickr-content-padding-x;
|
|
border: light.$dropdown-border-width solid opacify(light.$dropdown-border-color, 0.05);
|
|
border-top: 0;
|
|
background-clip: padding-box;
|
|
|
|
@include light.border-bottom-radius(light.$border-radius);
|
|
}
|
|
|
|
@include app-ltr-style {
|
|
.flatpickr-calendar.hasWeeks .flatpickr-days {
|
|
border-left: 0;
|
|
padding-left: calc(#{$flatpickr-content-padding-x} + #{light.$dropdown-border-width}px);
|
|
box-shadow: light.$dropdown-border-width 0 0 opacify(light.$dropdown-border-color, 0.05) inset;
|
|
}
|
|
}
|
|
|
|
@include app-rtl-style {
|
|
.flatpickr-calendar.hasWeeks .flatpickr-days {
|
|
border-right: 0;
|
|
padding-right: calc(#{$flatpickr-content-padding-x} + #{light.$dropdown-border-width}px);
|
|
box-shadow: -(light.$dropdown-border-width) 0 0 opacify(light.$dropdown-border-color, 0.05) inset;
|
|
}
|
|
}
|
|
|
|
.flatpickr-calendar {
|
|
line-height: light.$line-height-base;
|
|
font-size: light.$font-size-base;
|
|
box-shadow: light.$card-box-shadow;
|
|
|
|
@include light.border-radius(light.$border-radius);
|
|
|
|
&.hasTime:not(.noCalendar):not(.hasTime) .flatpickr-time {
|
|
display: none !important;
|
|
}
|
|
|
|
&.hasTime .flatpickr-time {
|
|
box-shadow: 0 1px 0 light.$border-color inset;
|
|
}
|
|
}
|
|
.flatpickr-monthDropdown-months {
|
|
color: light.$headings-color;
|
|
}
|
|
.flatpickr-current-month {
|
|
font-size: light.$big-font-size;
|
|
color: light.$headings-color;
|
|
.cur-month,
|
|
.cur-year {
|
|
font-size: light.$font-size-base;
|
|
font-weight: 400;
|
|
color: light.$headings-color;
|
|
}
|
|
}
|
|
|
|
.flatpickr-month,
|
|
span.flatpickr-weekday,
|
|
.flatpickr-weekdays {
|
|
background: light.$dropdown-bg;
|
|
}
|
|
.flatpickr-month {
|
|
@include light.border-top-radius(light.$border-radius);
|
|
// ! FIX: OS Windows and Linux Browsers DD Option color
|
|
option.flatpickr-monthDropdown-month {
|
|
color: light.$body-color;
|
|
background: #{light.$input-bg};
|
|
}
|
|
}
|
|
|
|
span.flatpickr-weekday {
|
|
color: light.$headings-color;
|
|
font-size: light.$font-size-sm;
|
|
}
|
|
|
|
.flatpickr-day {
|
|
color: light.$headings-color;
|
|
@include light.border-radius(light.$border-radius-pill);
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&.prevMonthDay:hover,
|
|
&.nextMonthDay:hover,
|
|
&.today:hover,
|
|
&.prevMonthDay:focus,
|
|
&.nextMonthDay:focus,
|
|
&.today:focus {
|
|
color: light.$body-color;
|
|
background: light.rgba-to-hex(rgba(light.$black, 0.06), light.$rgba-to-hex-bg);
|
|
&:not(.today) {
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
|
|
&.prevMonthDay,
|
|
&.nextMonthDay,
|
|
&.flatpickr-disabled {
|
|
color: light.$text-muted !important;
|
|
|
|
&.today {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
&.disabled {
|
|
color: light.$text-muted !important;
|
|
}
|
|
|
|
&.selected.startRange.endRange {
|
|
border-radius: light.$border-radius-pill !important;
|
|
}
|
|
}
|
|
|
|
.flatpickr-weeks {
|
|
border-bottom: light.$dropdown-border-width solid opacify(light.$dropdown-border-color, 0.05);
|
|
border-left: light.$dropdown-border-width solid opacify(light.$dropdown-border-color, 0.05);
|
|
background: light.$card-bg;
|
|
|
|
@include light.border-bottom-radius(light.$border-radius);
|
|
border-bottom-right-radius: 0;
|
|
.flatpickr-day {
|
|
color: light.$headings-color;
|
|
}
|
|
}
|
|
|
|
@include app-rtl-style {
|
|
.flatpickr-weeks {
|
|
border-right: light.$dropdown-border-width solid opacify(light.$dropdown-border-color, 0.05);
|
|
border-left: 0;
|
|
|
|
@include light.border-bottom-radius(light.$border-radius);
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
}
|
|
|
|
.flatpickr-time {
|
|
border: light.$dropdown-border-width solid opacify(light.$dropdown-border-color, 0.05);
|
|
background: #{light.$dropdown-bg};
|
|
|
|
@include light.border-radius(light.$border-radius);
|
|
|
|
input {
|
|
color: light.$body-color;
|
|
font-size: light.$font-size-base;
|
|
|
|
&.flatpickr-hour {
|
|
font-weight: light.$font-weight-medium;
|
|
}
|
|
|
|
&.flatpickr-minute,
|
|
&.flatpickr-second {
|
|
font-weight: light.$font-weight-medium;
|
|
}
|
|
}
|
|
|
|
.numInputWrapper span {
|
|
&.arrowUp:after {
|
|
border-bottom-color: light.$text-muted;
|
|
}
|
|
|
|
&.arrowDown:after {
|
|
border-top-color: light.$text-muted;
|
|
}
|
|
}
|
|
|
|
.flatpickr-am-pm {
|
|
color: light.$body-color;
|
|
}
|
|
|
|
.flatpickr-time-separator {
|
|
color: light.$body-color;
|
|
font-weight: light.$font-weight-medium;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Dark layout
|
|
@if $enable-dark-style {
|
|
.dark-style {
|
|
.flatpickr-calendar {
|
|
background: dark.$dropdown-bg;
|
|
}
|
|
.flatpickr-prev-month,
|
|
.flatpickr-next-month {
|
|
background-color: dark.rgba-to-hex(rgba(dark.$base, 0.08), dark.$card-bg);
|
|
svg {
|
|
fill: dark.$body-color;
|
|
stroke: dark.$body-color;
|
|
}
|
|
}
|
|
.flatpickr-calendar,
|
|
.flatpickr-days {
|
|
width: calc(#{$flatpickr-width} + calc(#{dark.$dropdown-border-width} * 2px)) !important;
|
|
}
|
|
@include app-ltr-style {
|
|
.flatpickr-calendar.hasWeeks {
|
|
width: calc(
|
|
#{$flatpickr-width + $flatpickr-cell-size} + calc(#{dark.$dropdown-border-width} * 3px) + 0.355rem
|
|
) !important;
|
|
}
|
|
}
|
|
@include app-rtl-style {
|
|
.flatpickr-calendar.hasWeeks {
|
|
width: calc(
|
|
#{$flatpickr-width + $flatpickr-cell-size} + calc(#{dark.$dropdown-border-width} * 3px) + 1rem
|
|
) !important;
|
|
}
|
|
}
|
|
.flatpickr-calendar.open {
|
|
z-index: light.$zindex-popover;
|
|
}
|
|
|
|
//! Flatpickr provide default input as readonly, applying default input style to readonly
|
|
.flatpickr-input:not(.is-invalid):not(.is-valid) ~ .form-control:disabled,
|
|
.flatpickr-input:not(.is-invalid):not(.is-valid)[readonly],
|
|
.flatpickr-input:not(.is-invalid):not(.is-valid) ~ .form-control[readonly] {
|
|
background-color: #{dark.$input-bg};
|
|
}
|
|
|
|
.flatpickr-days {
|
|
border: dark.$dropdown-border-width solid opacify(dark.$dropdown-border-color, 0.05);
|
|
border-top: 0;
|
|
padding: $flatpickr-content-padding-y $flatpickr-content-padding-x;
|
|
padding-bottom: $flatpickr-content-padding-x;
|
|
background: #{dark.$dropdown-bg};
|
|
background-clip: padding-box;
|
|
|
|
@include dark.border-bottom-radius(dark.$border-radius);
|
|
}
|
|
|
|
@include app-ltr-style {
|
|
.flatpickr-calendar.hasWeeks .flatpickr-days {
|
|
border-left: 0;
|
|
padding-left: calc(#{$flatpickr-content-padding-x} + #{dark.$dropdown-border-width}px);
|
|
box-shadow: dark.$dropdown-border-width 0 0 opacify(dark.$dropdown-border-color, 0.05) inset;
|
|
}
|
|
}
|
|
|
|
@include app-rtl-style {
|
|
.flatpickr-calendar.hasWeeks .flatpickr-days {
|
|
border-right: 0;
|
|
padding-right: calc(#{$flatpickr-content-padding-x} + #{dark.$dropdown-border-width}px);
|
|
box-shadow: -(dark.$dropdown-border-width) 0 0 opacify(dark.$dropdown-border-color, 0.05) inset;
|
|
}
|
|
}
|
|
.flatpickr-calendar {
|
|
line-height: dark.$line-height-base;
|
|
font-size: dark.$font-size-base;
|
|
box-shadow: dark.$card-box-shadow;
|
|
background-color: dark.$card-bg;
|
|
|
|
@include dark.border-radius(dark.$border-radius-lg);
|
|
|
|
&.hasTime:not(.noCalendar):not(.hasTime) .flatpickr-time {
|
|
display: none !important;
|
|
}
|
|
|
|
&.hasTime .flatpickr-time {
|
|
box-shadow: 0 1px 0 dark.$border-color inset;
|
|
}
|
|
}
|
|
|
|
.flatpickr-month,
|
|
span.flatpickr-weekday,
|
|
.flatpickr-weekdays {
|
|
background: dark.$dropdown-bg;
|
|
}
|
|
|
|
.flatpickr-month {
|
|
@include dark.border-top-radius(dark.$border-radius);
|
|
// ! FIX: OS Windows and Linux Browsers DD Option color
|
|
option.flatpickr-monthDropdown-month {
|
|
color: dark.$body-color;
|
|
background: #{dark.$card-bg};
|
|
}
|
|
}
|
|
|
|
.flatpickr-monthDropdown-months {
|
|
color: dark.$headings-color;
|
|
}
|
|
.flatpickr-current-month {
|
|
font-size: dark.$big-font-size;
|
|
color: dark.$headings-color;
|
|
.cur-month,
|
|
.cur-year {
|
|
font-size: dark.$font-size-base;
|
|
font-weight: 400;
|
|
color: dark.$headings-color;
|
|
}
|
|
}
|
|
|
|
span.flatpickr-weekday {
|
|
font-size: dark.$font-size-sm;
|
|
color: dark.$headings-color;
|
|
}
|
|
|
|
.flatpickr-day {
|
|
color: dark.$headings-color;
|
|
font-weight: dark.$font-weight-medium;
|
|
@include dark.border-radius(dark.$border-radius-pill);
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&.nextMonthDay:hover,
|
|
&.prevMonthDay:hover,
|
|
&.today:hover,
|
|
&.nextMonthDay:focus,
|
|
&.prevMonthDay:focus,
|
|
&.today:focus {
|
|
border-color: transparent;
|
|
background: dark.rgba-to-hex(rgba(dark.$base, 0.08), dark.$card-bg);
|
|
}
|
|
|
|
&.nextMonthDay,
|
|
&.prevMonthDay,
|
|
&.flatpickr-disabled {
|
|
color: dark.$text-muted !important;
|
|
|
|
&.today {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
&.selected.startRange.endRange {
|
|
border-radius: dark.$border-radius-pill !important;
|
|
}
|
|
|
|
&.disabled {
|
|
color: dark.$text-muted !important;
|
|
}
|
|
&.selected {
|
|
box-shadow: dark.$box-shadow-sm;
|
|
}
|
|
}
|
|
|
|
.flatpickr-weeks {
|
|
border-bottom: dark.$dropdown-border-width solid opacify(dark.$dropdown-border-color, 0.05);
|
|
border-left: dark.$dropdown-border-width solid opacify(dark.$dropdown-border-color, 0.05);
|
|
background: dark.$dropdown-bg;
|
|
|
|
@include dark.border-bottom-radius(dark.$border-radius);
|
|
border-bottom-right-radius: 0;
|
|
.flatpickr-day {
|
|
color: dark.$headings-color;
|
|
}
|
|
}
|
|
|
|
@include app-rtl-style {
|
|
.flatpickr-weeks {
|
|
border-right: dark.$dropdown-border-width solid opacify(dark.$dropdown-border-color, 0.05);
|
|
border-left: 0;
|
|
}
|
|
}
|
|
|
|
.flatpickr-time {
|
|
border: dark.$dropdown-border-width solid opacify(dark.$dropdown-border-color, 0.05);
|
|
background: #{dark.$dropdown-bg};
|
|
|
|
@include dark.border-radius(dark.$border-radius);
|
|
|
|
input {
|
|
color: dark.$body-color;
|
|
|
|
&.flatpickr-hour {
|
|
font-weight: dark.$font-weight-medium;
|
|
}
|
|
|
|
&.flatpickr-minute,
|
|
&.flatpickr-second {
|
|
font-weight: dark.$font-weight-medium;
|
|
}
|
|
}
|
|
|
|
.numInputWrapper span {
|
|
&.arrowUp:after {
|
|
border-bottom-color: dark.$text-muted;
|
|
}
|
|
|
|
&.arrowDown:after {
|
|
border-top-color: dark.$text-muted;
|
|
}
|
|
}
|
|
|
|
.flatpickr-am-pm {
|
|
color: dark.$body-color;
|
|
}
|
|
|
|
.flatpickr-time-separator {
|
|
color: dark.$body-color;
|
|
font-weight: dark.$font-weight-medium;
|
|
}
|
|
}
|
|
}
|
|
}
|