-
Beta Was this translation helpful? Give feedback.
Answered by
dvoituron
Dec 22, 2023
Replies: 1 comment 1 reply
-
The FluentDatePicker is a custom element where we can update part of the user interface. You'll probably find a solution using .myTimeInput::-webkit-calendar-picker-indicator {
background-image: url("data:image/svg+xml;base64,PHN2Z...");
background-size: 14px 14px;
background-position: center;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cmsw97
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The FluentDatePicker is a custom element where we can update part of the user interface.
But the FluentTimePicker uses the default HTML element
input type="time"
and it's not possible to easily customize the Browser icon.You'll probably find a solution using
-webkit-calendar-picker-indicator
.Example: https://dev.to/codeclown/styling-a-native-date-input-into-a-custom-no-library-datepicker-2in