From b4f9ac2bf4799f7cd16b185a105c8e27601238b3 Mon Sep 17 00:00:00 2001 From: topkek Date: Sat, 1 Nov 2014 03:04:58 +0000 Subject: [PATCH 1/3] max width for upload field --- stylesheets/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stylesheets/style.css b/stylesheets/style.css index f21409a0..6b385a3f 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -100,6 +100,10 @@ input[type="text"],input[type="password"],textarea { max-width: 100%; } +#upload_file { + max-width: 230px; +} + form table tr td { text-align: left; margin: 0; From 7d001c3eb6e3f85bb77d1981de8e4c104073fc56 Mon Sep 17 00:00:00 2001 From: topkek Date: Mon, 10 Nov 2014 00:12:55 +0000 Subject: [PATCH 2/3] Better selector --- stylesheets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index 6b385a3f..8dc4158e 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -100,7 +100,7 @@ input[type="text"],input[type="password"],textarea { max-width: 100%; } -#upload_file { +#quick-reply input[type="file"] { max-width: 230px; } From c68bd97e14a7edbabc646a6d040fb2ec94b46ee7 Mon Sep 17 00:00:00 2001 From: topkek Date: Mon, 10 Nov 2014 00:22:59 +0000 Subject: [PATCH 3/3] Apply to all upload fields --- stylesheets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index 8dc4158e..2df6da69 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -100,7 +100,7 @@ input[type="text"],input[type="password"],textarea { max-width: 100%; } -#quick-reply input[type="file"] { +#upload input[type="file"] { max-width: 230px; }