diff options
author | Go MAEDA <maeda@farend.jp> | 2019-05-30 07:34:13 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-05-30 07:34:13 +0000 |
commit | 5a9485489fefab4462c85a32571a02ff87844cde (patch) | |
tree | 989d5c9aeda9468390452cf2f3fdd9e6904a00c1 | |
parent | dcb9d8c4a79bf348bdfbf8554136d16bf129e131 (diff) | |
download | redmine-5a9485489fefab4462c85a32571a02ff87844cde.tar.gz redmine-5a9485489fefab4462c85a32571a02ff87844cde.zip |
Fix missing icons (#31433).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18208 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/calendars/show.html.erb | 2 | ||||
-rw-r--r-- | app/views/gantts/show.html.erb | 4 | ||||
-rw-r--r-- | app/views/search/index.html.erb | 2 | ||||
-rw-r--r-- | app/views/wiki/show.html.erb | 2 | ||||
-rw-r--r-- | app/views/workflows/edit.html.erb | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb index 060789b18..9874ac15b 100644 --- a/app/views/calendars/show.html.erb +++ b/app/views/calendars/show.html.erb @@ -7,7 +7,7 @@ <div id="query_form_with_buttons" class="hide-when-print"> <div id="query_form_content"> <fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>"> - <legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend> + <legend onclick="toggleFieldset(this);" class="icon icon-<%= @query.new_record? ? "expended" : "collapsed" %>"><%= l(:label_filter_plural) %></legend> <div style="<%= @query.new_record? ? "" : "display: none;" %>"> <%= render :partial => 'queries/filters', :locals => {:query => @query} %> </div> diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index f9c35ebc9..1f2ad6bd9 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -14,14 +14,14 @@ <div id="query_form_with_buttons" class="hide-when-print"> <div id="query_form_content"> <fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>"> - <legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend> + <legend onclick="toggleFieldset(this);" class="icon icon-<%= @query.new_record? ? "expended" : "collapsed" %>"><%= l(:label_filter_plural) %></legend> <div style="<%= @query.new_record? ? "" : "display: none;" %>"> <%= render :partial => 'queries/filters', :locals => {:query => @query} %> </div> </fieldset> <fieldset id="options" class="collapsible collapsed"> - <legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend> + <legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_options) %></legend> <div style="display: none;"> <table> <tr> diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb index 526568130..ab11f5a49 100644 --- a/app/views/search/index.html.erb +++ b/app/views/search/index.html.erb @@ -21,7 +21,7 @@ </fieldset> <fieldset class="collapsible collapsed"> - <legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend> + <legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_options) %></legend> <div id="options-content" style="display:none;"> <p><label><%= check_box_tag 'open_issues', 1, @open_issues %> <%= l(:label_search_open_issues_only) %></label></p> <p> diff --git a/app/views/wiki/show.html.erb b/app/views/wiki/show.html.erb index 92f86e843..a7104967d 100644 --- a/app/views/wiki/show.html.erb +++ b/app/views/wiki/show.html.erb @@ -62,7 +62,7 @@ <%= render(:partial => "wiki/content", :locals => {:content => @content}) %> <fieldset class="collapsible collapsed hide-when-print"> - <legend onclick="toggleFieldset(this);"><%= l(:label_attachment_plural) %> (<%= @page.attachments.length %>)</legend> + <legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_attachment_plural) %> (<%= @page.attachments.length %>)</legend> <div style="display: none;"> <%= link_to_attachments @page, :thumbnails => true %> diff --git a/app/views/workflows/edit.html.erb b/app/views/workflows/edit.html.erb index 3eac0a39a..66d9b71ee 100644 --- a/app/views/workflows/edit.html.erb +++ b/app/views/workflows/edit.html.erb @@ -40,7 +40,7 @@ <%= render :partial => 'form', :locals => {:name => 'always', :workflows => @workflows['always']} %> <fieldset class="collapsible" style="padding: 0; margin-top: 0.5em;"> - <legend onclick="toggleFieldset(this);"><%= l(:label_additional_workflow_transitions_for_author) %></legend> + <legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_additional_workflow_transitions_for_author) %></legend> <div id="author_workflows" style="margin: 0.5em 0 0.5em 0;"> <%= render :partial => 'form', :locals => {:name => 'author', :workflows => @workflows['author']} %> </div> @@ -48,7 +48,7 @@ <%= javascript_tag "hideFieldset($('#author_workflows'))" unless @workflows['author'].present? %> <fieldset class="collapsible" style="padding: 0;"> - <legend onclick="toggleFieldset(this);"><%= l(:label_additional_workflow_transitions_for_assignee) %></legend> + <legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_additional_workflow_transitions_for_assignee) %></legend> <div id="assignee_workflows" style="margin: 0.5em 0 0.5em 0;"> <%= render :partial => 'form', :locals => {:name => 'assignee', :workflows => @workflows['assignee']} %> </div> |