From a5349191b79f2a77f4077c460b73c405550b14a2 Mon Sep 17 00:00:00 2001 From: sandoz Date: Fri, 20 Mar 2009 20:33:06 +0100 Subject: [PATCH] Small hack to make button "+" and "-" to be same size. * It would be better to put a specific class for de/increase buttons. * Right now just adding min-width to input globally in CSS. --- public/stylesheets/main.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index e9c3183e..f8578c84 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -67,7 +67,8 @@ input[type="button"], input[type="submit"], input[type="reset"] { color: #222222; padding: 0.1em 0.5em; font-size: 1em; - font-weight: bold; } + font-weight: bold; + min-width: 34px; } select { max-width: 15em; }