-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
None
-
Affects Version/s: 9.12.22, 10.3.5, 10.6.0
-
Component/s: (Advanced Roadmaps) Other
-
9.12
-
1
-
Severity 3 - Minor
-
2
Issue Summary
There is a size difference with the announcement banner, if heading HTML elements are used, in the plan screen and other Jira screens (Programs, Dashboards).
Steps to Reproduce
- Create an announcement banner with:
<h3> My text in heading 3</h3>
- Save it
- The text should already be displayed in the top of the page
- Open any plan page
- Text will be larger than in any other page in Jira.
Expected Results
Text size to be consistent throughout the system
Actual Results
Text size is larger making it harder to use the plans page in smaller displays.
Workaround
Use a css style tag in the element to set the font-size as according:
h1 {
font-size: 24px;
letter-spacing: -.01em;
line-height: 1.25
}
h1,h2 {
font-weight: 500;
margin: 30px 0 0;
text-transform: none
}
h2 {
font-size: 20px;
letter-spacing: -.008em;
line-height: 1.5
}
h3 {
font-size: 16px;
font-weight: 500;
letter-spacing: -.006em;
line-height: 1.25;
margin: 30px 0 0;
text-transform: none
}
h4 {
font-size: 14px;
letter-spacing: -.003em;
line-height: 1.42857143
}
h4,h5 {
font-weight: 600;
margin: 20px 0 0;
text-transform: none
}
h5,h6 {
font-size: 12px;
letter-spacing: 0;
line-height: 1.66666667
}
As an example for H3:
<div style="font-size:16px;font-weight:500;"> This is the h3 in Announcement Banner</div>
- links to