]> source.dussan.org Git - redmine.git/commitdiff
Move the filters buttons inside the filters fieldset on the issue list (closes #614).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 16 Mar 2008 14:31:17 +0000 (14:31 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 16 Mar 2008 14:31:17 +0000 (14:31 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1262 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/index.rhtml
app/views/queries/_columns.rhtml
app/views/queries/_filters.rhtml
app/views/queries/_form.rhtml
public/stylesheets/application.css

index d3408fa99287f47d6521e2883510ade270e3d226..d212ab6bb0a77162396c9195f6bdf6855c552844 100644 (file)
@@ -4,8 +4,9 @@
     
     <% form_tag({ :controller => 'queries', :action => 'new' }, :id => 'query_form') do %>
     <%= hidden_field_tag('project_id', @project.id) if @project %>
+    <fieldset id="filters"><legend><%= l(:label_filter_plural) %></legend>
     <%= render :partial => 'queries/filters', :locals => {:query => @query} %>
-    <div class="contextual">
+    <div class="buttons">
     <%= link_to_remote l(:button_apply), 
                        { :url => { :set_filter => 1 },
                          :update => "content",
@@ -21,8 +22,7 @@
     <%= link_to l(:button_save), {}, :onclick => "$('query_form').submit(); return false;", :class => 'icon icon-save' %>
     <% end %>
     </div>
-    <br />
-    &nbsp;
+    </fieldset>
     <% end %>
 <% else %>
     <div class="contextual">
index 8d3da7f6a4b2811ed28ecd4efddb933989854213..1a481adae65fd5b3fb2bf9510574873a735c79a2 100644 (file)
@@ -1,8 +1,8 @@
 <% content_tag 'fieldset', :id => 'columns', :style => (query.has_default_columns? ? 'display:none;' : nil) do %>
 <legend><%= l(:field_column_names) %></legend>
 
-<%= hidden_field_tag 'query[column_names][]', '' %>
-<table margin=0>
+<%= hidden_field_tag 'query[column_names][]', '', :id => nil %>
+<table>
        <tr>
                <td><%= select_tag 'available_columns',
                          options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}),
index 2465818d8929d6371f1a5d2adcaed81627f0869c..458d7139ef63bbf765fe0fca9d2e28a818e27a76 100644 (file)
@@ -56,7 +56,6 @@ function toggle_multi_select(field) {
 //]]>
 </script>
 
-<fieldset><legend><%= l(:label_filter_plural) %></legend>
 <table width="100%">
 <tr>
 <td>
@@ -100,4 +99,3 @@ function toggle_multi_select(field) {
 </td>
 </tr>
 </table>
-</fieldset>
\ No newline at end of file
index 1620d9b05a61e0bded0ea250bb086063e4ab9551..2d4b96fd19f3d51cf7ca2ae38b0050b8406807a7 100644 (file)
@@ -16,6 +16,9 @@
       :onclick => 'if (this.checked) {Element.hide("columns")} else {Element.show("columns")}' %></p>
 </div>
 
+<fieldset><legend><%= l(:label_filter_plural) %></legend>
 <%= render :partial => 'queries/filters', :locals => {:query => query}%>
+</fieldset>
+
 <%= render :partial => 'queries/columns', :locals => {:query => query}%>
 </div>
index 816cd05a20763d0c416bbd4546a362a2c652ef01..a0d5deb28e02682da3cbae3fb1dd094f412123a5 100644 (file)
@@ -159,6 +159,9 @@ textarea.wiki-edit { width: 99%; }
 li p {margin-top: 0;}
 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
 
+#filters { margin-bottom: 1em; }
+#filters .buttons { text-align: right; font-size: 0.9em; }
+
 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
 div#issue-changesets .changeset { padding: 4px;}
 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }