@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!