Removes hardcoded width.

git-svn-id: http://svn.redmine.org/redmine/trunk@16816 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2017-07-12 18:19:08 +00:00
parent 081e8a8932
commit f654c84c8f
2 changed files with 5 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
<%= select_tag 'available_columns',
options_for_select(query_available_inline_columns_options(query)),
:id => available_tag_id,
:multiple => true, :size => 10, :style => "width:150px",
:multiple => true, :size => 10,
:ondblclick => "moveOptions(this.form.#{available_tag_id}, this.form.#{selected_tag_id});" %>
</span>
<span class="buttons">
@@ -22,7 +22,7 @@
<%= select_tag tag_name,
options_for_select(query_selected_inline_columns_options(query)),
:id => selected_tag_id,
:multiple => true, :size => 10, :style => "width:150px",
:multiple => true, :size => 10,
:ondblclick => "moveOptions(this.form.#{selected_tag_id}, this.form.#{available_tag_id});" %>
</span>
<span class="buttons">

View File

@@ -384,6 +384,9 @@ table.messages td.last_message {text-align:left;}
width:35px;
display:block;
}
.query-columns select {
width:150px;
}
.query-totals {text-align:right;}
.query-totals>span:not(:first-child) {margin-left:0.6em;}