From: Tom Hughes Date: Wed, 18 Jun 2014 21:38:22 +0000 (+0100) Subject: Increase field widths on trace upload form X-Git-Tag: live~4415 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/39e7ec3c4c9dc8acdc69ea629e89ccc178eaf2ec?hp=e54538c464251edec162fe670e4de34217d742bf Increase field widths on trace upload form Fixes #664 --- diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index 7c400b4f3..adad49d2a 100644 --- a/app/assets/stylesheets/common.css.scss +++ b/app/assets/stylesheets/common.css.scss @@ -1321,6 +1321,18 @@ header .search_form { } } +/* Rules for the new trace form */ + +#new_trace { + input[type=text] { + width: 50%; + width: -moz-calc(100% - 150px); + width: -webkit-calc(100% - 150px); + width: calc(100% - 150px); + max-width: 500px; + } +} + /* Rules for the user profile page */ #userinformation {