[CSS] Fix invisible checkboxes
This commit is contained in:
parent
110c2572a4
commit
4bd081ad27
|
@ -235,12 +235,9 @@ input.larger {
|
|||
box-shadow: 0 0 8px var(--accent);
|
||||
}
|
||||
.content input[type="checkbox"] {
|
||||
position: absolute;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -263,12 +263,9 @@ input.larger {
|
|||
box-shadow: 0 0 8px var(--accent);
|
||||
}
|
||||
.content input[type="checkbox"] {
|
||||
position: absolute;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -263,12 +263,9 @@ input.larger {
|
|||
box-shadow: 0 0 8px var(--accent);
|
||||
}
|
||||
.content input[type="checkbox"] {
|
||||
position: absolute;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -115,6 +115,7 @@ input[type=text] {
|
|||
.form input[type=checkbox] {
|
||||
float: left;
|
||||
margin-right: calc(var(--unit-size) * 0.5);
|
||||
margin-top: calc(var(--unit-size) * 0.2);
|
||||
}
|
||||
|
||||
button[type=submit] {
|
||||
|
|
Loading…
Reference in New Issue
Block a user