This commit is contained in:
piair
2023-06-18 17:40:59 +02:00
parent b201c68aa9
commit 08b593eeb9
11 changed files with 146 additions and 100 deletions

View File

@ -137,6 +137,7 @@ input[type=password] {
button:hover{
border: 2px solid white;
cursor: pointer;
}
input:hover{
border: 2px solid white;
@ -215,9 +216,10 @@ input[type=checkbox]{
height: 0;
width: 0;
visibility: hidden;
}
}
label {
padding: 8px;
margin: auto;
cursor: pointer;
text-indent: -9999px;
@ -274,3 +276,26 @@ select {
select:hover {
border: 2px solid white;
}
input[type="time"] {
width: 70%;
padding: 8px 12px;
margin: 8px 0;
background-color: #212121;
border: 2px solid grey;
border-radius: 4px;
outline: none;
color: white;
text-align: center;
}
input[type="time"]::-webkit-calendar-picker-indicator {
filter: invert(1);
opacity: 0.7;
cursor: pointer;
}
input[type="time"]::-webkit-calendar-picker-indicator:hover {
opacity: 1;
}