Add new CSS specifications for flatpickr input as using altInput

- We now use altInput which is the only visible input to the end user.
 - This input inherits all the classes from the component who instantiated it, but not the `.flatpickr-input` class.
 - Add more specification to have a beautiful white background with pointer component.
This commit is contained in:
Jean-Baptiste Bellet
2021-02-19 11:21:04 +01:00
parent c9cf989b27
commit 26be76b95c

View File

@@ -17,7 +17,9 @@ input.datetimepicker {
min-width: 12.9em;
}
.container input[readonly].flatpickr-input {
.container input[readonly].flatpickr-input,
.container input[readonly].datepicker,
.container input[readonly].datetimepicker {
background-color: $white;
cursor: pointer;
}