Fix: layout, don't use pointer on text input
This commit is contained in:
parent
2e6465b07f
commit
45d41cb4b0
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user