diff options
author | Go MAEDA <maeda@farend.jp> | 2019-04-29 12:10:34 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-04-29 12:10:34 +0000 |
commit | bb0918fd1427d4fa0c657930a352a0d2e8c10268 (patch) | |
tree | 24ec05e79d3f2c0fbbe1750c1daff53d82c25403 /public | |
parent | ee26bab76d2e2c51f4677887d30d6c227beb3ee4 (diff) | |
download | redmine-bb0918fd1427d4fa0c657930a352a0d2e8c10268.tar.gz redmine-bb0918fd1427d4fa0c657930a352a0d2e8c10268.zip |
Remove unnecessary padding (#31147).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18097 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index bd4f94fe4..7c0a39241 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -460,7 +460,7 @@ select { background: #fff url(../images/arrow_down.png) no-repeat calc( 100% - 7px) 50%; padding-right: 20px; } -input[type="file"] {border: 0;} +input[type="file"] {border: 0; padding-left: 0; padding-right: 0;} input[type="submit"] {-webkit-appearance: button; cursor: pointer; background-color: #fff;} select[multiple=multiple] {background: #fff; padding-right: initial; height: auto;} fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;} |