From f98fc0b7a69c4da17e875f24d3bbd99bb68ff411 Mon Sep 17 00:00:00 2001 From: Andromeda Yelton Date: Fri, 12 Oct 2012 14:23:54 -0400 Subject: [PATCH] widening CC number box, rounding all corners on error display [#36797599] --- static/css/pledge.css | 6 +++++- static/less/pledge.less | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/static/css/pledge.css b/static/css/pledge.css index eb1e1ebc..c451e5df 100644 --- a/static/css/pledge.css +++ b/static/css/pledge.css @@ -270,7 +270,8 @@ span.menu-item-price { #authorize div.innards input:disabled { border-color: white; } -#authorize div.innards input.address { +#authorize div.innards input.address, +#authorize div.innards input#card_Number { width: 61%; } #authorize div.innards label { @@ -305,6 +306,9 @@ span.menu-item-price { font-weight: bold; font-size: 13px; text-align: center; + -moz-border-radius: 16px; + -webkit-border-radius: 16px; + border-radius: 16px; width: auto; margin: auto; } diff --git a/static/less/pledge.less b/static/less/pledge.less index 855c7b4a..aad8aa06 100644 --- a/static/less/pledge.less +++ b/static/less/pledge.less @@ -213,7 +213,7 @@ span.menu-item-price { border-color: white; } - &.address { + &.address, &#card_Number { width: 61%; } } @@ -243,6 +243,7 @@ span.menu-item-price { .payment-errors { display: none; .errors; + .one-border-radius(16px); width: auto; margin: auto; }