mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
Rollup merge of #109973 - GuillaumeGomez:logo-display-very-small-screen, r=notriddle
rustdoc: Improve logo display very small screen Before:  After:  r? `@notriddle`
This commit is contained in:
commit
9960e9f851
@ -6,6 +6,10 @@
|
|||||||
3. Copy the filenames with updated suffixes from the directory.
|
3. Copy the filenames with updated suffixes from the directory.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--nav-sub-mobile-padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
/* See FiraSans-LICENSE.txt for the Fira Sans license. */
|
/* See FiraSans-LICENSE.txt for the Fira Sans license. */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Fira Sans';
|
font-family: 'Fira Sans';
|
||||||
@ -1726,7 +1730,7 @@ in main.js
|
|||||||
|
|
||||||
.source nav.sub {
|
.source nav.sub {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 8px;
|
padding: var(--nav-sub-mobile-padding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1783,6 +1787,7 @@ in main.js
|
|||||||
.sub-logo-container > img {
|
.sub-logo-container > img {
|
||||||
height: 35px;
|
height: 35px;
|
||||||
width: 35px;
|
width: 35px;
|
||||||
|
margin-bottom: var(--nav-sub-mobile-padding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,4 +18,6 @@ size: (1280, 1024)
|
|||||||
assert-property: (".sub-logo-container", {"offsetWidth": "60", "offsetHeight": 60})
|
assert-property: (".sub-logo-container", {"offsetWidth": "60", "offsetHeight": 60})
|
||||||
|
|
||||||
size: (400, 600)
|
size: (400, 600)
|
||||||
assert-property: (".sub-logo-container", {"offsetWidth": "35", "offsetHeight": 35})
|
// 43 because 35px + 8px of margin
|
||||||
|
assert-css: (".sub-logo-container > img", {"margin-bottom": "8px"})
|
||||||
|
assert-property: (".sub-logo-container", {"offsetWidth": "35", "offsetHeight": 43})
|
||||||
|
@ -216,3 +216,8 @@ call-function: ("check-sidebar-dir-entry", {
|
|||||||
"x": 0,
|
"x": 0,
|
||||||
"y": |source_sidebar_title_y| + |source_sidebar_title_height| + 6,
|
"y": |source_sidebar_title_y| + |source_sidebar_title_height| + 6,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Now we check that the logo has a bottom margin so it's not stuck to the search input.
|
||||||
|
assert-css: (".sub-logo-container > img", {"margin-bottom": "8px"})
|
||||||
|
store-property: (logo_height, ".sub-logo-container", "clientHeight")
|
||||||
|
assert-position: (".search-form", {"y": |logo_height| + 8})
|
||||||
|
Loading…
Reference in New Issue
Block a user