File tree 1 file changed +4
-4
lines changed
src/librustdoc/html/static/css
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
and on the RUSTDOC_MOBILE_BREAKPOINT */
15
15
--desktop-sidebar-width : 200px ;
16
16
--src-sidebar-width : 300px ;
17
+ --desktop-sidebar-z-index : 100 ;
17
18
}
18
19
19
20
/* See FiraSans-LICENSE.txt for the Fira Sans license. */
@@ -396,7 +397,7 @@ img {
396
397
height : 100vh ;
397
398
top : 0 ;
398
399
left : 0 ;
399
- z-index : 100 ;
400
+ z-index : var ( --desktop-sidebar-z-index ) ;
400
401
}
401
402
402
403
.rustdoc .src .sidebar {
@@ -416,7 +417,7 @@ img {
416
417
touch-action : none;
417
418
width : 9px ;
418
419
cursor : col-resize;
419
- z-index : 200 ;
420
+ z-index : calc ( var ( --desktop-sidebar-z-index ) + 1 ) ;
420
421
position : fixed;
421
422
height : 100% ;
422
423
/* make sure there's a 1px gap between the scrollbar and resize handle */
@@ -448,7 +449,6 @@ img {
448
449
449
450
.sidebar-resizing .sidebar {
450
451
position : fixed;
451
- z-index : 100 ;
452
452
}
453
453
.sidebar-resizing > body {
454
454
padding-left : var (--resizing-sidebar-width );
@@ -1059,7 +1059,7 @@ so that we can apply CSS-filters to change the arrow color in themes */
1059
1059
position : absolute;
1060
1060
top : 100% ;
1061
1061
right : 0 ;
1062
- z-index : 101 ;
1062
+ z-index : calc ( var ( --desktop-sidebar-z-index ) + 1 ) ;
1063
1063
margin-top : 7px ;
1064
1064
border-radius : 3px ;
1065
1065
border : 1px solid var (--border-color );
You can’t perform that action at this time.
0 commit comments