From 603d2d8611e1e79f7476b634c01b78feccc22d52 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sat, 28 Jan 2012 20:40:18 +0100 Subject: [PATCH] Decrease vertical margin for file and submit inputs. --- 4chan_x.user.js | 2 ++ script.coffee | 2 ++ 2 files changed, 4 insertions(+) diff --git a/4chan_x.user.js b/4chan_x.user.js index 71a090202..20e7311ef 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3671,9 +3671,11 @@ textarea.field {\ width: 100%;\ }\ #qr [type=file] {\ + margin: 1px 0;\ width: 70%;\ }\ #qr [type=submit] {\ + margin: 1px 0;\ padding: 0 -moz-calc(1px); /* Gecko does not respect box-sizing: border-box */\ width: 30%;\ }\ diff --git a/script.coffee b/script.coffee index 01943ca58..35cf46ab4 100644 --- a/script.coffee +++ b/script.coffee @@ -2925,9 +2925,11 @@ textarea.field { width: 100%; } #qr [type=file] { + margin: 1px 0; width: 70%; } #qr [type=submit] { + margin: 1px 0; padding: 0 -moz-calc(1px); /* Gecko does not respect box-sizing: border-box */ width: 30%; }