diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index a84a0baff80..619ad1d0d49 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -1531,9 +1531,8 @@ a.tooltip:hover::after { position: sticky; top: 0; display: flex; - padding: 8px; - padding-left: 48px; - padding-bottom: 7px; + padding: 8px 8px 0 48px; + margin-bottom: 7px; background: var(--sidebar-background-color); border-bottom: 1px solid var(--border-color); } @@ -1793,6 +1792,30 @@ However, it's not needed with smaller screen width because the doc/code block is margin-top: 16px; } +/* sidebar button opens modal + use hamburger button */ +.src #sidebar-button > a:before, .sidebar-menu-toggle:before { + content: url('data:image/svg+xml,\ + '); + opacity: 0.75; +} +.sidebar-menu-toggle:hover:before, +.sidebar-menu-toggle:active:before, +.sidebar-menu-toggle:focus:before { + opacity: 1; +} + +/* src sidebar button opens a folder view */ +.src #sidebar-button > a:before { + content: url('data:image/svg+xml,\ + \ + \ + '); + opacity: 0.75; +} + /* Media Queries */ /* Make sure all the buttons line wrap at the same time */ @@ -1965,20 +1988,6 @@ in src-script.js and main.js background: var(--main-background-color); } - /* sidebar button opens modal - use hamburger button */ - .src #sidebar-button > a:before, .sidebar-menu-toggle:before { - content: url('data:image/svg+xml,\ - '); - opacity: 0.75; - } - .src #sidebar-button > a:hover:before, .sidebar-menu-toggle:hover:before, - .src #sidebar-button > a:active:before, .sidebar-menu-toggle:active:before, - .src #sidebar-button > a:focus:before, .sidebar-menu-toggle:focus:before { - opacity: 1; - } - /* Display an alternating layout on tablets and phones */ .item-table, .item-row, .item-table > li, .item-table > li > div, .search-results > a, .search-results > a > div { diff --git a/tests/rustdoc-gui/source-code-page.goml b/tests/rustdoc-gui/source-code-page.goml index 4e68a9f8165..8b4d7617e0c 100644 --- a/tests/rustdoc-gui/source-code-page.goml +++ b/tests/rustdoc-gui/source-code-page.goml @@ -152,7 +152,8 @@ store-property: (".src-sidebar-title", { }) call-function: ("check-sidebar-dir-entry", { "x": 0, - "y": |source_sidebar_title_y| + |source_sidebar_title_height|, + // margin = 7px + "y": |source_sidebar_title_y| + |source_sidebar_title_height| + 7, }) // Check the search form @@ -180,7 +181,8 @@ store-property: (".src-sidebar-title", { }) call-function: ("check-sidebar-dir-entry", { "x": 0, - "y": |source_sidebar_title_y| + |source_sidebar_title_height|, + // margin = 7px + "y": |source_sidebar_title_y| + |source_sidebar_title_height| + 7, }) // Tiny, phone mobile gets a different display where the logo is stacked on top. @@ -194,5 +196,6 @@ store-property: (".src-sidebar-title", { }) call-function: ("check-sidebar-dir-entry", { "x": 0, - "y": |source_sidebar_title_y| + |source_sidebar_title_height|, + // margin = 7px + "y": |source_sidebar_title_y| + |source_sidebar_title_height| + 7, })