The branch master has been updated
via dac25f4cbc9703f3338ef39df97dc5e7f9dd186f (commit)
from 3d9c535a7ca836b670bec4680763d70c42f50e19 (commit)
- Log -----------------------------------------------------------------
commit dac25f4cbc9703f3338ef39df97dc5e7f9dd186f
Author: Etienne Millon <[email protected]>
Date: Mon Jan 4 15:50:58 2021 +0100
Fix style for links containing "raw"
The stylesheet contains rules that applies to all links to urls
containing "raw". This applies to links to documentation for function
that contain this word, in such as `EVP_PKEY_new_raw_private_key`.
These rules seems to be otherwise unused, so removing them fixes the
problem.
CLA: Trivial
Reviewed-by: Paul Dale <[email protected]>
Reviewed-by: Matt Caswell <[email protected]>
(Merged from https://github.com/openssl/web/pull/210)
-----------------------------------------------------------------------
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 29b74b9..9a5d29a 100644
--- a/inc/screen.css
+++ b/inc/screen.css
@@ -1369,7 +1369,7 @@ figure.code .highlight {
border-bottom: 0;
}
-.download-source, html a[href*=raw], figure.code figcaption a {
+.download-source, figure.code figcaption a {
position: absolute;
right: .8em;
text-decoration: none;
@@ -1379,7 +1379,7 @@ figure.code .highlight {
text-shadow: #cbcccc 0 1px 0;
padding-left: 3em;
}
-.download-source:hover, html a[href*=raw]:hover, figure.code figcaption
a:hover {
+.download-source:hover, figure.code figcaption a:hover {
text-decoration: underline;
}