]> source.dussan.org Git - redmine.git/commitdiff
Removes hardcoded width.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 12 Jul 2017 18:19:08 +0000 (18:19 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 12 Jul 2017 18:19:08 +0000 (18:19 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16816 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/queries/_columns.html.erb
public/stylesheets/application.css

index 84d1663780ba2e3a8f2769b183bb5740add86060..1458131a9b1eaef4b71904700a67f1967015025a 100644 (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">
index 9e3e2b46e9193f1bb1d9a5ee57bc8a9b22f825ee..4e1167c5ca483d89786e6331b1aa9c84a9a5fc65 100644 (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;}