diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-01 12:12:37 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-01 12:12:37 +0100 |
commit | eecb447b2a067f3e9af012e512dec7a7b73f4a6b (patch) | |
tree | 04ed07f4d832c6389f9db0deb7672adcf3da6d73 /skins/larry/styles.css | |
parent | 347ba311e68f3a641805a268313fcd5ed851feb7 (diff) |
Fix checkbox/label alignment. We do this by additional span inside label
and vertical-align:middle on both checkbox and span.
Diffstat (limited to 'skins/larry/styles.css')
-rw-r--r-- | skins/larry/styles.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index cd6810e8d..4f6073fdd 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -71,6 +71,12 @@ textarea.placeholder { font-weight: bold; } +/* fixes vertical alignment of checkboxes and labels */ +label input, +label span { + vertical-align: middle; +} + /*** buttons ***/ input.button { |