Project

General

Profile

Actions

Defect #43337

closed

Missing icons for scroll buttons in the project menu

Added by Katsuya HIDAKA 26 days ago. Updated 24 days ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
UI
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

This issue can be reproduced on the current trunk.


Files

issue.png (17.3 KB) issue.png Katsuya HIDAKA, 2025-10-10 09:30
after-fix.png (17.5 KB) after-fix.png Katsuya HIDAKA, 2025-10-10 09:50

Related issues

Related to Redmine - Patch #43206: Remove deprecated icon-* classes from stylesheetsClosedMarius BĂLTEANU

Actions
Actions #1

Updated by Katsuya HIDAKA 26 days ago

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 %>

Actions #2

Updated by Go MAEDA 24 days ago

  • Related to Patch #43206: Remove deprecated icon-* classes from stylesheets added
Actions #3

Updated by Go MAEDA 24 days ago

  • Status changed from New to Closed
  • Assignee set to Go MAEDA
  • Resolution set to Fixed

Since this issue was caused by r24029, I have committed the fix as part of #43206 in r24048.

Thank you for catching and fixing this issue.

Actions

Also available in: Atom PDF