Skip to content

Commit 6fd7f0d

Browse files
authored
Unrolled build for rust-lang#119477
Rollup merge of rust-lang#119477 - lukas-code:tooltip-z-index, r=notriddle rustdoc ui: adjust tooltip z-index to be above sidebar In rust-lang#115660 the sidebar's z-index was changed to 100. This PR changes the tooltip's z-index to 101 to be above the sidebar again. Fixes [after beta-backport] rust-lang#119472.
2 parents 1a47f5b + b1853eb commit 6fd7f0d

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
and on the RUSTDOC_MOBILE_BREAKPOINT */
1515
--desktop-sidebar-width: 200px;
1616
--src-sidebar-width: 300px;
17+
--desktop-sidebar-z-index: 100;
1718
}
1819

1920
/* See FiraSans-LICENSE.txt for the Fira Sans license. */
@@ -386,7 +387,7 @@ img {
386387
height: 100vh;
387388
top: 0;
388389
left: 0;
389-
z-index: 100;
390+
z-index: var(--desktop-sidebar-z-index);
390391
}
391392

392393
.rustdoc.src .sidebar {
@@ -407,7 +408,7 @@ img {
407408
touch-action: none;
408409
width: 9px;
409410
cursor: col-resize;
410-
z-index: 200;
411+
z-index: calc(var(--desktop-sidebar-z-index) + 1);
411412
position: fixed;
412413
height: 100%;
413414
/* make sure there's a 1px gap between the scrollbar and resize handle */
@@ -439,7 +440,6 @@ img {
439440

440441
.sidebar-resizing .sidebar {
441442
position: fixed;
442-
z-index: 100;
443443
}
444444
.sidebar-resizing > body {
445445
padding-left: var(--resizing-sidebar-width);
@@ -1046,7 +1046,7 @@ so that we can apply CSS-filters to change the arrow color in themes */
10461046
position: absolute;
10471047
top: 100%;
10481048
right: 0;
1049-
z-index: 2;
1049+
z-index: calc(var(--desktop-sidebar-z-index) + 1);
10501050
margin-top: 7px;
10511051
border-radius: 3px;
10521052
border: 1px solid var(--border-color);
@@ -1561,7 +1561,7 @@ a.tooltip:hover::after {
15611561
}
15621562
.src #sidebar-button {
15631563
left: 8px;
1564-
z-index: 101;
1564+
z-index: calc(var(--desktop-sidebar-z-index) + 1);
15651565
}
15661566
.hide-sidebar .src #sidebar-button {
15671567
position: static;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Check that the doctest info tooltips are above the sidebar.
2+
go-to: "file://" + |DOC_PATH| + "/test_docs/fn.foo.html"
3+
move-cursor-to: ".example-wrap.ignore .tooltip"
4+
wait-for: ".tooltip.popover"
5+
6+
// Move cursor to top left corner of the tooltip and check that it doesn't fade.
7+
move-cursor-to: ".tooltip.popover"
8+
wait-for: 100
9+
assert: ".tooltip.popover:not(.fade-out)"
10+
11+
move-cursor-to: (0, 0)
12+
wait-for: ".tooltip.popover.fade-out"

0 commit comments

Comments
 (0)