This is a minor issue but this [CSS instruction](https://github.com/processwire/processwire/blob/de7ea5feaa129f88d6cba06e06f7b1e8554d1c8d/wire/modules/AdminTheme/AdminThemeUikit/themes/default/admin.css#L3655-L3657) overrides the [gap between checkboxes](https://github.com/processwire/processwire/blob/de7ea5feaa129f88d6cba06e06f7b1e8554d1c8d/wire/modules/Inputfield/InputfieldCheckboxes/InputfieldCheckboxes.css#L43-L45) (when they are set as toggles): <img width="761" height="108" alt="Image" src="https://github.com/user-attachments/assets/83a7cbba-ffff-4025-9de0-5084d0f081c0" /> Changing it to: ```css .pw-togcbx .InputfieldCheckboxes ul li { padding-top: 3px; padding-bottom: 3px; } ``` Allows the `padding-right` to remain: <img width="855" height="108" alt="Image" src="https://github.com/user-attachments/assets/2cde84e1-4954-4223-a1a6-6f5ae2818e6e" />