Skip to content

Commit 73d0f7c

Browse files
committed
Remove "up here" arrow on item-infos
Use spacing to distinguish what is related to a given heading.
1 parent a6cd4aa commit 73d0f7c

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

src/librustdoc/html/static/css/rustdoc.css

+24-20
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,13 @@ h3.code-header {
175175
h4.code-header {
176176
font-size: 1rem;
177177
}
178-
h3.code-header, h4.code-header {
178+
.code-header {
179179
font-weight: 600;
180180
border-bottom-style: none;
181-
padding: 0;
182181
margin: 0;
182+
padding: 0;
183+
margin-top: 0.6em;
184+
margin-bottom: 0.4em;
183185
}
184186
.impl,
185187
.impl-items .method,
@@ -192,8 +194,6 @@ h3.code-header, h4.code-header {
192194
.methods .associatedtype {
193195
flex-basis: 100%;
194196
font-weight: 600;
195-
margin-top: 16px;
196-
margin-bottom: 10px;
197197
position: relative;
198198
}
199199

@@ -744,21 +744,13 @@ nav.sub {
744744

745745
.content .item-info {
746746
position: relative;
747-
margin-left: 33px;
747+
margin-left: 24px;
748748
}
749749

750750
.sub-variant > div > .item-info {
751751
margin-top: initial;
752752
}
753753

754-
.content .item-info::before {
755-
content: '⬑';
756-
font-size: 1.5625rem;
757-
position: absolute;
758-
top: -6px;
759-
left: -19px;
760-
}
761-
762754
.content .impl-items .docblock, .content .impl-items .item-info {
763755
margin-bottom: .6em;
764756
}
@@ -777,6 +769,7 @@ nav.sub {
777769

778770
#main-content > .item-info {
779771
margin-top: 0;
772+
margin-left: 0;
780773
}
781774

782775
nav.sub {
@@ -1125,13 +1118,6 @@ body.blur > :not(#help) {
11251118
float: right;
11261119
}
11271120

1128-
.has-srclink {
1129-
font-size: 1rem;
1130-
margin-bottom: 12px;
1131-
/* Push the src link out to the right edge consistently */
1132-
justify-content: space-between;
1133-
}
1134-
11351121
.variants_table {
11361122
width: 100%;
11371123
}
@@ -2065,6 +2051,24 @@ details.rustdoc-toggle[open] > summary.hideme::after {
20652051
}
20662052
}
20672053

2054+
.method-toggle summary,
2055+
.implementors-toggle summary {
2056+
margin-bottom: 0.75em;
2057+
}
2058+
2059+
.method-toggle[open] {
2060+
margin-bottom: 2em;
2061+
}
2062+
2063+
.implementors-toggle[open] {
2064+
margin-bottom: 2em;
2065+
}
2066+
2067+
#trait-implementations-list .method-toggle,
2068+
#synthetic-implementations-list .method-toggle,
2069+
#blanket-implementations-list .method-toggle {
2070+
margin-bottom: 1em;
2071+
}
20682072

20692073
/* Begin: styles for --scrape-examples feature */
20702074

src/test/rustdoc-gui/hash-item-expansion.goml

-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ goto: file://|DOC_PATH|/test_docs/struct.Foo.html#method.borrow
44
assert-attribute: ("#blanket-implementations-list > details:nth-child(2)", {"open": ""})
55
// We first check that the impl block is open by default.
66
assert-attribute: ("#implementations + details", {"open": ""})
7-
// We collapse it.
8-
click: "#implementations + details > summary"
9-
// We check that it was collapsed as expected.
10-
assert-attribute-false: ("#implementations + details", {"open": ""})
117
// To ensure that we will click on the currently hidden method.
128
assert-text: (".sidebar-links > a", "must_use")
139
click: ".sidebar-links > a"

src/test/rustdoc-gui/item-info-width.goml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ goto: file://|DOC_PATH|/lib2/struct.Foo.html
33
// We set a fixed size so there is no chance of "random" resize.
44
size: (1100, 800)
55
// We check that ".item-info" is bigger than its content.
6-
assert-css: (".item-info", {"width": "757px"})
6+
assert-css: (".item-info", {"width": "790px"})
77
assert-css: (".item-info .stab", {"width": "341px"})
8+
assert-position: (".item-info .stab", {"x": 295})

0 commit comments

Comments
 (0)