diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-06 23:42:17 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-06 23:42:17 -0700 |
commit | 1eab332652e55abf15fd369f907423c60b63f64f (patch) | |
tree | 9597eb1754039fb4041aa1596e7d994a77938010 | |
parent | 3e0a81a39490f58840e3144b88d9c963e69f8f79 (diff) |
Treat radio button layout the same as checkboxes, also include type selectors for checkbox and radio buttons.
-rw-r--r-- | lib/gallery.common.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index 2cbce900..f199ba45 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -87,7 +87,10 @@ option:focus { color: #000; } -input.checkbox { +input.checkbox, +input[type=checkbox], +input.radio, +input[type=radio] { float: left; margin-right: .4em; } |