Skip to content
Snippets Groups Projects
Commit 8e5dfadb authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

styling of email picker:

  1. indent email addresses
  2. increase whitespace after 'sign in using'
  3. limit height of display so that new email address interaction isn't pushed offscreen
  4. add scrolling to support > 3 email addresses (not pretty, but functional)
parent 92f0f58a
No related branches found
No related tags found
No related merge requests found
......@@ -180,7 +180,7 @@ h2 {
}
#signIn .vertical {
padding: 20px;
padding: 15px 20px 20px 20px;
}
#signIn .vertical ul {
......@@ -237,7 +237,8 @@ label {
}
#inputs > li > label {
cursor: pointer;
cursor: pointer;
color: #333;
}
input[type=email],
......@@ -467,8 +468,18 @@ html[xmlns] .cf {
}
#inputs {
min-height: 100px;
min-height: 90px;
max-height: 140px;
}
body.pickemail #inputs {
overflow-y: auto;
max-height: 95px;
margin-top: 1em;
margin-left: 1em;
line-height: 18px;
}
.add {
font-size: 80%;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment