about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2021-07-17 11:28:26 -0700
committerGuillaume Gomez <guillaume.gomez@huawei.com>2021-08-03 14:35:38 +0200
commit64c99036600735ef2d92fcbd7e9911617b064624 (patch)
tree8a7a69c90ee1a0a7cf6c542e45fadf875b378c89
parent59460a655643b32fe2e1ac39279333bf5a574a82 (diff)
downloadrust-64c99036600735ef2d92fcbd7e9911617b064624.tar.gz
rust-64c99036600735ef2d92fcbd7e9911617b064624.zip
Use empty string instead of single space
-rw-r--r--src/librustdoc/html/static/css/rustdoc.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css
index 531484f2105..0754eeb9900 100644
--- a/src/librustdoc/html/static/css/rustdoc.css
+++ b/src/librustdoc/html/static/css/rustdoc.css
@@ -1508,7 +1508,7 @@ details.rustdoc-toggle > summary.hideme > span {
 }
 
 details.rustdoc-toggle > summary::before {
-	content: " ";
+	content: "";
 	cursor: pointer;
 	width: 17px;
 	height: max(17px, 1.1em);
@@ -1593,7 +1593,7 @@ details.rustdoc-toggle[open] > summary.hideme::before {
 	height: max(17px, 1.1em);
 	background: data-url(minus-17x17.png) no-repeat top left;
 	display: inline-block;
-	content: " ";
+	content: "";
 }
 
 details.rustdoc-toggle[open] > summary::after,