Project

General

Profile

Actions

Feature #42072

closed

Adjust font size for breadcrumb and subtitle to improve readability and consistency

Added by Go MAEDA 14 days ago. Updated 2 days ago.

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

0%

Estimated time:
Resolution:
Fixed

Description

The patch updates the font size for the .breadcrumb and .subtitle elements from 0.9em (equivalent to 12.6px when the the parent element's font size is 14px) to 0.8125rem (13px).

The change aims to slightly improve readability by increasing the font size while also ensuring consistent font sizing that does not depend on the parent element's font size.

diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css
index f198a96ce..440f0335e 100644
--- a/app/assets/stylesheets/application.css
+++ b/app/assets/stylesheets/application.css
@@ -655,8 +655,8 @@ div.issue {
   border-radius: 3px;
   box-shadow: 0 1px 2px rgba(0,0,0,0.05);
 }
-p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
-p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
+p.breadcrumb { font-size: 0.8125rem; margin: 4px 0 4px 0;}
+p.subtitle { font-size: 0.8125rem; margin: -6px 0 12px 0; font-style: italic; }
 p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
 .wiki-class-ltr {direction:ltr !important;}
 .wiki-class-rtl {direction:rtl !important;}
Actions

Also available in: Atom PDF