Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix additional icon-only button display issues in Redmine 6.0 #117

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/common/_orphaned.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</td>
<td>
<div class='template_tooltip_wrapper'>
<a class='icon template_tooltip' title='<%= l(:label_preview) %>'></a>
<a class='icon-only template_tooltip' title='<%= l(:label_preview) %>'></a>
<div class='wiki template_tooltip_body'>
<span class='title'><%= issue_template.title %></span>
<%= textilizable(issue_template.description) %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/global_note_templates/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</td>
<td>
<div class='template_tooltip_wrapper'>
<a class='icon template_tooltip' title='<%= l(:label_preview) %>'></a>
<a class='icon-only template_tooltip' title='<%= l(:label_preview) %>'></a>
<div class='wiki template_tooltip_body'>
<span class='title'><%= note_template.name %></span>
<%= textilizable(note_template.description) %>
Expand Down
8 changes: 4 additions & 4 deletions app/views/issue_templates/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
</td>
<td>
<div class='template_tooltip_wrapper'>
<a class='icon template_tooltip' title='<%= l(:label_preview) %>'></a>
<a class='icon-only template_tooltip' title='<%= l(:label_preview) %>'></a>
<div class='wiki template_tooltip_body'>
<span class="title"><%= issue_template.title %></span>
<%= textilizable(issue_template.description) %>
Expand Down Expand Up @@ -131,7 +131,7 @@
</td>
<td>
<div class='template_tooltip_wrapper'>
<a class='icon template_tooltip' title='<%= l(:label_preview) %>'></a>
<a class='icon-only template_tooltip' title='<%= l(:label_preview) %>'></a>
<div class='wiki template_tooltip_body'>
<span class='title'><%=h issue_template.title %></span>
<%=h textilizable(issue_template.description) %>
Expand Down Expand Up @@ -171,7 +171,7 @@

<% if apply_all_projects %>
<p>
<i class='issue_template icon settings'></i>
<i class='issue_template icon-only settings'></i>
<span class="issue_template help_content">
<%= l(:note_apply_global_template_to_all_projects_setting_enabled) %><br/>
<%= l(:note_project_local_template_override_global_template) %>
Expand Down Expand Up @@ -214,7 +214,7 @@
</td>
<td>
<div class='template_tooltip_wrapper'>
<a class='icon template_tooltip' title='<%= l(:label_preview) %>'></a>
<a class='icon-only template_tooltip' title='<%= l(:label_preview) %>'></a>
<div class='wiki template_tooltip_body'>
<span class='title'><%=h issue_template.title %></span>
<%=h textilizable(issue_template.description) %>
Expand Down
2 changes: 1 addition & 1 deletion assets/javascripts/issue_templates.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/components/DisplayArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
: {{ item.value }} / {{ item.title }}
</i>
</span>
<i class="icon icon-del" v-on:click="$emit('delete', item)"></i>
<i class="icon-only icon-del" v-on:click="$emit('delete', item)"></i>
</li>
</ul>
</div>
Expand Down