about summary refs log tree commit diff
path: root/src/librustdoc/html/static/rustdoc.css
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2019-04-10 22:31:42 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2019-04-10 22:31:42 +0200
commit825a11ea3bb8a4b1a07d4e03a009b2ca4205c6a9 (patch)
treeccc5f6076897f7b87d17eb2d0ce724766a62aeab /src/librustdoc/html/static/rustdoc.css
parent2002b4b39a16760f37107cf02d7a91ff316d3073 (diff)
downloadrust-825a11ea3bb8a4b1a07d4e03a009b2ca4205c6a9.tar.gz
rust-825a11ea3bb8a4b1a07d4e03a009b2ca4205c6a9.zip
Fix attributes position in type declaration
Diffstat (limited to 'src/librustdoc/html/static/rustdoc.css')
-rw-r--r--src/librustdoc/html/static/rustdoc.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css
index 5314255ac32..2228e58b0d2 100644
--- a/src/librustdoc/html/static/rustdoc.css
+++ b/src/librustdoc/html/static/rustdoc.css
@@ -1577,3 +1577,17 @@ div.name.expand::before {
 	left: -15px;
 	top: 2px;
 }
+
+/* This part is to fix the "Expand attributes" part in the type declaration. */
+.type-decl > pre > :first-child {
+	margin-left: 0 !important;
+}
+.type-decl > pre > :nth-child(2) {
+	margin-left: 1.8em !important;
+}
+.type-decl > pre > .toggle-attributes {
+	margin-left: 2.2em;
+}
+.type-decl > pre > .docblock.attributes {
+	margin-left: 4em;
+}