[openssl-commits] [web] master update

Richard Levitte levitte at openssl.org
Sat Sep 29 15:21:30 UTC 2018


The branch master has been updated
       via  39045b9f57b5ff168bb646f44119bf4dc55ba37c (commit)
      from  2c0a67c87382d0e10d4ee02921e4d59358906039 (commit)


- Log -----------------------------------------------------------------
commit 39045b9f57b5ff168bb646f44119bf4dc55ba37c
Author: Beat Bolli <dev at drbeat.li>
Date:   Sat Sep 29 00:20:38 2018 +0200

    inc/screen.css: style <b> and <i> like <strong> and <em>
    
    pod2html emits the deprecated visual tags instead of the semantic ones,
    so we have to style the visual tags as well.
    
    Fixes #74
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/85)

-----------------------------------------------------------------------

Summary of changes:
 inc/screen.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/inc/screen.css b/inc/screen.css
index 9a5b157..e3d672c 100644
--- a/inc/screen.css
+++ b/inc/screen.css
@@ -239,11 +239,11 @@ ul ul, ul ol, ol ul, ol ol {
   margin-bottom: 0em;
 }
 
-strong {
+strong, b {
   font-weight: bold;
 }
 
-em {
+em, i {
   font-style: italic;
 }
 


More information about the openssl-commits mailing list