mirror of
https://github.com/redmine/redmine.git
synced 2025-11-15 09:46:02 +01:00
Removes hardcoded width.
git-svn-id: http://svn.redmine.org/redmine/trunk@16816 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -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">
|
||||
|
||||
@@ -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;}
|
||||
|
||||
Reference in New Issue
Block a user