Fix: layout, don't use pointer on text input

This commit is contained in:
eight04 2021-12-09 23:11:42 +08:00
parent 2e6465b07f
commit 45d41cb4b0

View File

@ -163,7 +163,7 @@ label > :first-child {
}
label:not([disabled]),
label:not([disabled]) :not([type="number"]) {
label:not([disabled]) :not([type="number"]):not([type="text"]):not([type="password"]) {
cursor: pointer;
}
@ -442,7 +442,20 @@ input[type="radio"].radio:checked::after {
padding: 0;
border: 0;
}
.drive-options > :not([hidden]) {
display: table;
width: 100%;
}
.drive-options > * > label {
display: table-row;
}
.drive-options > * > label > * {
display: table-cell;
}
.drive-options > * input {
width: 100%;
box-sizing: border-box;
}
.sync-options .actions button {
margin-top: .5em;
}