diff options
author | Go MAEDA <maeda@farend.jp> | 2019-04-18 07:44:16 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-04-18 07:44:16 +0000 |
commit | fc02ddcb0d86fc020e9b3ac0acb762bf4122f5b0 (patch) | |
tree | 39aea675d7880842f9046c2e0439677cc806e222 /public/stylesheets | |
parent | 0d061d43e8a64d7ebec0597c3031cb984353c34b (diff) | |
download | redmine-fc02ddcb0d86fc020e9b3ac0acb762bf4122f5b0.tar.gz redmine-fc02ddcb0d86fc020e9b3ac0acb762bf4122f5b0.zip |
Multiselect elements don't expand (#31147, #31216).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18059 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/application.css | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index e40cbad75..589018081 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -395,7 +395,6 @@ div.table-list.boards .table-list-cell.name {width: 30%;} } .query-columns select { min-width:150px; - height: auto; } .query-totals {text-align:right;} @@ -463,7 +462,7 @@ select { } input[type="file"] {border: 0;} input[type="submit"] {-webkit-appearance: button; cursor: pointer; background-color: #fff;} -select[multiple=multiple] {background: #fff; padding-right: initial;} +select[multiple=multiple] {background: #fff; padding-right: initial; height: auto;} fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;} legend {color: #333;} hr { width: 100%; height: 1px; background: #ccc; border: 0;} |