Merge pull request #7608 from ctrlaltdavid/fix-edit-checkboxes

Fix checkbox being clickable outside of checkbox and label extents
This commit is contained in:
Ryan Huffman 2016-04-07 08:22:22 -07:00
commit 254f7675d1

View file

@ -452,6 +452,10 @@ input[type=checkbox]:checked + label:hover {
min-height: 29px;
}
.property.checkbox {
width: auto;
}
.property label {
display: table-cell;
vertical-align: middle;