Actions
Feature #42072
closedAdjust font size for breadcrumb and subtitle to improve readability and consistency
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