Skip to content

Commit 18a7631

Browse files
authored
Place footer below main content (#4014)
Update the site's layout implementation so that the main content can scroll with the entire viewport rather than having a separate scroll view. This allows the footer to be placed after the main content rather than fixed at the bottom and better aligns the site's layout with dart.dev and docs.flutter.dev. - Don't limit the body to a height of 100%, so that the main content can be scrolled as part of the primary/full viewport. This is what allows the footer to be after the content. - Make header sticky so they always remain visible at the top of the viewport. - Make sidebars sticky, but below the header, so that they remain visible when scrolling the main content. - Remove custom webkit scrollbar styles as they cause part of the header's chrome to go missing and are platform dependent. - Add `color-scheme: <light or dark>` to the theme styles so the browser provides properly themed scrollbars. - Removing these styles also resolves a TODO relating to the mobile version of the sidebars. Resolves #4013
1 parent f41bd3a commit 18a7631

File tree

8 files changed

+48
-39
lines changed

8 files changed

+48
-39
lines changed

lib/resources/styles.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/sig.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
B33E364DD554BA379AE780C5C4237B34
1+
77FD7967080D3865482753638F7833E7

web/styles/_base.scss

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
html {
6+
// Account for sticky header, so fragments appear below it after scrolling.
7+
scroll-padding-top: calc(var(--main-header-height) + 1rem);
8+
}
9+
510
html,
611
body {
712
margin: 0;
813
padding: 0;
9-
height: 100%;
1014
width: 100%;
11-
overflow: hidden;
1215
box-sizing: border-box;
1316
}
1417

@@ -19,7 +22,6 @@ body {
1922
body {
2023
display: flex;
2124
flex-direction: column;
22-
-webkit-overflow-scrolling: touch;
2325

2426
-webkit-text-size-adjust: 100%;
2527
overflow-x: hidden;
@@ -34,5 +36,4 @@ main {
3436
flex: 1;
3537
display: flex;
3638
flex-direction: row;
37-
min-height: 0;
3839
}

web/styles/_content.scss

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
order: 2;
88
overflow-y: scroll;
99
padding: 10px 20px 0 20px;
10+
11+
// Add a min height of the rest of the view port after the header,
12+
// so that the footer isn't awkwardly in the middle of the page.
13+
min-height: calc(100vh - var(--main-header-height));
1014
}
1115

1216
a {

web/styles/_header.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
header {
6-
flex: 0 0 50px;
6+
flex: 0 0 var(--main-header-height, 50px);
77
display: flex;
88
flex-direction: row;
99
align-items: center;
10+
11+
// Position the header at the top of the view port, even on scrolling.
12+
position: sticky;
13+
top: 0;
14+
z-index: 10;
15+
1016
padding-left: 30px;
1117
padding-right: 30px;
1218
background-color: var(--main-header-color);

web/styles/_search.scss

+6-5
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,17 @@
5656

5757

5858
.typeahead {
59-
padding: 17px 17px 17px 50px;
59+
padding: 16px 16px 16px 32px;
6060
width: 422px;
61-
height: 20px;
62-
font-size: 13px;
61+
height: 24px;
62+
font-size: 15px;
63+
background-color: var(--main-bg-color);
64+
color: var(--main-text-color);
6365
background-image: url("./search.svg");
6466
background-repeat: no-repeat;
65-
background-position: 4%;
67+
background-position: 2%;
6668
outline: 0;
6769
background-size: 20px;
68-
filter: var(--main-number-filter);
6970
}
7071

7172
.search-summary {

web/styles/_sidebar.scss

+15-17
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,21 @@
8888
background-color: black;
8989
}
9090

91+
.sidebar-offcanvas-left, .sidebar-offcanvas-right {
92+
// Even as the primary viewport scrolls, the sidebars should remain visible,
93+
// but below the top header which is always at the top of the viewport.
94+
position: sticky;
95+
top: var(--main-header-height);
96+
overflow-y: auto;
97+
min-height: 0;
98+
max-height: calc(100vh - var(--main-header-height));
99+
}
100+
91101
.sidebar-offcanvas-left {
92102
flex: 0 1 230px;
93103
order: 1;
94-
overflow-y: scroll;
95-
padding: 20px 0 15px 30px;
96-
margin: 5px 20px 0 0;
104+
padding: 25px 0 15px 30px;
105+
margin-right: 20px;
97106

98107
h5 {
99108
margin-bottom: 10px;
@@ -108,10 +117,7 @@
108117
.sidebar-offcanvas-right {
109118
flex: 0 1 12em;
110119
order: 3;
111-
overflow-y: scroll;
112-
padding: 20px 15px 15px 15px;
113-
margin-top: 5px;
114-
margin-right: 20px;
120+
padding: 25px 20px 15px 15px;
115121

116122
// The right nav should disappear out of view when the window shrinks.
117123
@media screen and (max-width: 992px) {
@@ -141,12 +147,12 @@
141147
transition: all .25s ease-out;
142148
z-index: 2000;
143149
top: 0;
144-
width: 280px; /* works all the way down to an iphone 4 */
150+
width: 280px;
145151
// Set a max width for narrow layouts that accounts for margin.
146152
max-width: calc(100% - 20px);
147153
height: 90%;
148154
background-color: var(--main-bg-color);
149-
overflow-y: scroll; /* TODO: how to hide scroll bars? */
155+
overflow-y: scroll;
150156
padding: 10px;
151157
margin: 10px 10px;
152158
box-shadow: 5px 5px 5px 5px #444444;
@@ -167,11 +173,3 @@
167173
color: var(--main-hyperlinks-color);
168174
}
169175
}
170-
171-
::-webkit-scrollbar-button{ display: none; height: 13px; border-radius: 0; background-color: #AAA; }
172-
::-webkit-scrollbar-button:hover{ background-color: #AAA; }
173-
::-webkit-scrollbar-thumb{ background-color: var(--main-scrollbar-color); }
174-
::-webkit-scrollbar-thumb:hover{ background-color: var(--main-scrollbar-color); }
175-
::-webkit-scrollbar{ width: 4px; }
176-
177-
.main-content::-webkit-scrollbar{ width: 8px; }

web/styles/_theme.scss

+9-10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
:root {
6+
// Used by the header and sticky elements wanting to position below it.
7+
--main-header-height: 50px;
8+
}
9+
510
.light-theme {
611
/*background-color body, listdropdown*/
712
--main-bg-color: #fff;
@@ -13,16 +18,12 @@
1318
--main-text-color: #111111;
1419
/*typehead search-box*/
1520
--main-search-bar: #fff;
16-
/* scrollbar-thumb */
17-
--main-scrollbar-color: #CCC;
1821
/* footer */
1922
--main-footer-background: #111111;
2023
/*header text color*/
2124
--main-h-text: black;
2225
/* hyperlinks*/
2326
--main-hyperlinks-color: #0175C2;
24-
/*search background*/
25-
--main-search-background: transparent;
2627

2728
--main-inset-bgColor: #f5f5f7;
2829
--main-inset-borderColor: #dadce0;
@@ -36,7 +37,6 @@
3637
--main-var-color: #008080;
3738
--main-string-color: #d14;
3839

39-
--main-number-filter: invert(0%);
4040
--main-icon-color: black;
4141

4242
/* alerts */
@@ -46,6 +46,8 @@
4646
--alert-warning-fgColor: #955d00;
4747
--alert-error-fgColor: #c43131;
4848

49+
color-scheme: light;
50+
4951
#light-theme-button {
5052
display: none;
5153
}
@@ -67,14 +69,10 @@
6769
--main-text-color: #fff;
6870
/*typehead search-box*/
6971
--main-search-bar: #454545;
70-
/* scrollbar-thumb */
71-
--main-scrollbar-color: #5f6368;
7272
/* footer */
7373
--main-footer-background: #27323a;
7474
/* hyperlinks*/
7575
--main-hyperlinks-color: #00D2FA;
76-
/*search background*/
77-
--main-search-background: black;
7876

7977
--main-inset-bgColor: #242b32;
8078
--main-inset-borderColor: #676f7e;
@@ -88,7 +86,6 @@
8886
--main-var-color: #55A09B;
8987
--main-string-color: #FF2D64;
9088

91-
--main-number-filter: invert(100%);
9289
--main-icon-color: white;
9390

9491
/* alerts */
@@ -98,6 +95,8 @@
9895
--alert-warning-fgColor: #cea11f;
9996
--alert-error-fgColor: #ff6666;
10097

98+
color-scheme: dark;
99+
101100
#dark-theme-button {
102101
display: none;
103102
}

0 commit comments

Comments
 (0)