Bug 1556965 - Move the scrolling from the login-list element to the OL element inside of the login-list so the header won't be positioned above the list when scrolling. r=MattN

This fixes the issue of a translucent header showing the text through.

Differential Revision: https://phabricator.services.mozilla.com/D34112

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jared Wein 2019-06-12 14:44:14 +00:00
parent 3309f55e07
commit d32f4a69ff
2 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,7 @@
body {
display: grid;
grid-template-columns: 280px 1fr;
grid-template-columns: minmax(320px, max-content) 1fr;
grid-template-rows: 75px 1fr;
grid-template-areas: "header header"
"logins login";

View File

@ -5,6 +5,9 @@
:host {
border-inline-end: 1px solid var(--in-content-box-border-color);
background-color: var(--in-content-box-background);
display: flex;
flex-direction: column;
overflow: auto;
}
.meta {
@ -28,4 +31,5 @@ ol {
margin-top: 0;
margin-bottom: 0;
padding-inline-start: 0;
overflow: hidden auto;
}