From 92b91c9a3877c1dc1df1d146c9bac83849454cb6 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 8 Apr 2015 13:23:48 -0700 Subject: [PATCH] Fix checkboxes not aligning with label --- examples/html/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/html/style.css b/examples/html/style.css index 1b5b71176f..719e650085 100644 --- a/examples/html/style.css +++ b/examples/html/style.css @@ -194,6 +194,10 @@ input:disabled, textarea:disabled { color: rgb(160, 160, 160); } +#properties-list input[type=checkbox] { + vertical-align: bottom; +} + #properties-list input[type=button] { cursor: pointer; background-color: rgb(51, 102, 102);