Fixed Slight clipping with .checkboxColumns

Chris D

XenForo developer
Staff member
upload_2014-3-24_22-31-14.webp

This issue only seems to happen on webkit browsers on Mac - tested in Chrome and Safari, issue not present in Firefox.

Notice the slight clipping on the radio buttons.

This fixes it without any adverse effects in other browsers:
Code:
.checkboxColumns li
{
    padding-left: 1px;
}
 
Fixed. This is specific to them being nested in this case, as the top level already includes a 1px left padding (thus it makes no difference in that case)
 
Top Bottom