Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
css: Checkbox Vertical Alignment
This addresses a small issue where the system shows inline checkboxes centered at the bottom of the text which makes it look out of place. This updates the CSS for `input[type=checkbox]` to make the `vertical-align` property equal to `middle` which renders the checkbox correctly.
- Loading branch information
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -3585,7 +3585,7 @@ input[type=checkbox] { | ||
padding: 0; | ||
margin:0; | ||
margin-right: 0.1em; | ||
vertical-align: middle; | ||
position: relative; | ||
top: -0.05em; | ||
*overflow: hidden; | ||