forked from GNUsocial/gnu-social
[CSS] Fix invisible checkboxes
This commit is contained in:
parent
6819dd9fb7
commit
f95b8ab226
@ -235,12 +235,9 @@ input.larger {
|
|||||||
box-shadow: 0 0 8px var(--accent);
|
box-shadow: 0 0 8px var(--accent);
|
||||||
}
|
}
|
||||||
.content input[type="checkbox"] {
|
.content input[type="checkbox"] {
|
||||||
position: absolute;
|
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
overflow: hidden;
|
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);
|
box-shadow: 0 0 8px var(--accent);
|
||||||
}
|
}
|
||||||
.content input[type="checkbox"] {
|
.content input[type="checkbox"] {
|
||||||
position: absolute;
|
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
overflow: hidden;
|
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);
|
box-shadow: 0 0 8px var(--accent);
|
||||||
}
|
}
|
||||||
.content input[type="checkbox"] {
|
.content input[type="checkbox"] {
|
||||||
position: absolute;
|
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
overflow: hidden;
|
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] {
|
.form input[type=checkbox] {
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: calc(var(--unit-size) * 0.5);
|
margin-right: calc(var(--unit-size) * 0.5);
|
||||||
|
margin-top: calc(var(--unit-size) * 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
button[type=submit] {
|
button[type=submit] {
|
||||||
|
Loading…
Reference in New Issue
Block a user