From a714fada1b2559627a3f695ea0d7544617c8cf59 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Fri, 9 Aug 2024 20:35:34 -0400 Subject: [PATCH 1/2] Roles: Sub-role in italics instead of bold Co-authored-by: Marten van Kerkwijk --- js/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index f846232d..3ecb86d5 100755 --- a/js/functions.js +++ b/js/functions.js @@ -125,7 +125,7 @@ $( document ).ready(function(){ if (index > 0) { blocks += '
'; } - blocks += '' + resp["subrole-head"] + ''; + blocks += '' + resp["subrole-head"] + ''; } blocks += '

' + resp["description"] + '

' + ''; From b8b6573b9780897808a31d60e4b3b489f2c205ba Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Mon, 12 Aug 2024 11:30:37 -0400 Subject: [PATCH 2/2] Ensure em is italics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Hans Moritz Günther --- css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/style.css b/css/style.css index 46e58e0f..99596360 100755 --- a/css/style.css +++ b/css/style.css @@ -24,6 +24,10 @@ time, mark, audio, video { vertical-align: baseline; } +em { + font-style: italic; +} + /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {