Actions
Defect #43337
closedMissing icons for scroll buttons in the project menu
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
This issue can be reproduced on the current trunk.

Files
Related issues
Updated by Katsuya HIDAKA 26 days ago
- File after-fix.png after-fix.png added
I'm attaching a patch to fix this issue.
diff --git a/app/views/layouts/base.html.erb b/app/views/layouts/base.html.erb
index 4b7b401c1..62e23abd1 100644
--- a/app/views/layouts/base.html.erb
+++ b/app/views/layouts/base.html.erb
@@ -93,8 +93,12 @@
<div id="main-menu" class="tabs">
<%= render_main_menu(@project) %>
<div class="tabs-buttons" style="display:none;">
- <button class="tab-left" onclick="moveTabLeft(this); return false;"></button>
- <button class="tab-right" onclick="moveTabRight(this); return false;"></button>
+ <button class="tab-left icon-only" onclick="moveTabLeft(this); return false;">
+ <%= sprite_icon "angle-left" %>
+ </button>
+ <button class="tab-right icon-only" onclick="moveTabRight(this); return false;">
+ <%= sprite_icon "angle-right" %>
+ </button>
</div>
</div>
<% end %>

Updated by Go MAEDA 24 days ago
- Related to Patch #43206: Remove deprecated icon-* classes from stylesheets added
Actions