Q-input hidding the clock
-
When the input is type=‘time’ a little clock appears like a wild pokemon on the right. How can i hide this elusive icon.
Thanks -
input[type="time"]::-webkit-calendar-picker-indicator { background: none; }
See:
https://stackoverflow.com/questions/61934148/hide-the-icon-on-a-html-time-input-field-in-chrome -
@dobbel said in Q-input hidding the clock:
input[type=“time”]::-webkit-calendar-picker-indicator {
background: none;
}thanks @dobbel . I couldn’t reach that class. Now thanks to you i got the bull by the horns. With
background:none;
the place where the clock was is still used. So I used
input[type="time"]::-webkit-calendar-picker-indicator { display: none; }
and the space is displayed no more. Thanks again!