From aeb6c5193c84ad2d5322c80ea499398054f16b5d Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sun, 30 Oct 2016 14:39:05 +0100 Subject: [PATCH] Foundation sets file buttons to 100% width. Fixed. --- app/assets/stylesheets/_settings.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/_settings.scss b/app/assets/stylesheets/_settings.scss index f55b409..c4099c8 100644 --- a/app/assets/stylesheets/_settings.scss +++ b/app/assets/stylesheets/_settings.scss @@ -912,4 +912,9 @@ a.black } .inputfile + label { cursor: pointer; /* "hand" cursor */ -} \ No newline at end of file +} + +/* Foundation sets file buttons to 100% width. Fix that */ +[type='file'] { + width: inherit !important; +}