[openssl-commits] [web] master update
Richard Levitte
levitte at openssl.org
Sat Sep 22 20:51:11 UTC 2018
The branch master has been updated
via 256ea23dae5b675ded6823625d6a966a353c2f5d (commit)
from 2b448f5a972d0f89e4b141d0568984dc1d37d489 (commit)
- Log -----------------------------------------------------------------
commit 256ea23dae5b675ded6823625d6a966a353c2f5d
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Sep 19 02:20:27 2018 +0200
inc/screen.css: no pre-wrap
There's no reason why the contents of <a> element should be wrapped on
line breaks. Set white-space to 'normal' instead.
This property is useful in case we happen to inherit some other
setting of that property and want to get back to a normal setting.
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/79)
-----------------------------------------------------------------------
Summary of changes:
inc/screen.css | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/inc/screen.css b/inc/screen.css
index c526275..9a5b157 100644
--- a/inc/screen.css
+++ b/inc/screen.css
@@ -362,10 +362,7 @@ article blockquote cite:before {
/* @extend this to force long lines of continuous text to wrap */
.force-wrap, article a, aside.sidebar a {
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- white-space: pre-wrap;
+ white-space: normal;
word-wrap: break-word;
}
More information about the openssl-commits
mailing list