Fix Safari checkbox-bug

If checkbox is focused (clicking in the checkbox) checkbox shifts downward. I think: Only in Safari on Yosemite. Other browsers not affected.
This commit is contained in:
junkpad92
2014-11-03 18:56:23 +01:00
parent f303bfdbfd
commit 329197902e

View File

@@ -651,6 +651,8 @@ input[type="checkbox"] {
padding:0;
margin:0 5px 0 0;
vertical-align:middle;
/* Fix Safari-Bug */
height: auto;
}
select {
@@ -1040,4 +1042,4 @@ div.right {
.grid-offset-1-2 {
margin-left: 50%;
}
}