Skip to content

Commit 218a823

Browse files
authored
Merge pull request #615 from pllim/subrole-head-not-bold
Roles: Sub-role in italics instead of bold
2 parents bb49a86 + b8b6573 commit 218a823

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

css/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ time, mark, audio, video {
2424
vertical-align: baseline;
2525
}
2626

27+
em {
28+
font-style: italic;
29+
}
30+
2731
/* HTML5 display-role reset for older browsers */
2832
article, aside, details, figcaption, figure,
2933
footer, header, hgroup, menu, nav, section {

js/functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ $( document ).ready(function(){
125125
if (index > 0) {
126126
blocks += '<br>';
127127
}
128-
blocks += '<strong>' + resp["subrole-head"] + '</strong>';
128+
blocks += '<em>' + resp["subrole-head"] + '</em>';
129129
}
130130
blocks += '<p>' + resp["description"] + '</p>' +
131131
'<ul>' + detail_list + '</ul>';

0 commit comments

Comments
 (0)