From 57b6ac56495823705173d480f96d5d49fc41d544 Mon Sep 17 00:00:00 2001 From: Sawyer Hollenshead <s.hollenshead@gmail.com> Date: Tue, 10 Jul 2012 16:13:19 -0700 Subject: [PATCH] Cut off email address with ellipsis. Fix bug where long emails push the content off the screen. --- resources/static/dialog/css/m.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/static/dialog/css/m.css b/resources/static/dialog/css/m.css index bdbeeab3c..ff29f75e4 100644 --- a/resources/static/dialog/css/m.css +++ b/resources/static/dialog/css/m.css @@ -7,12 +7,20 @@ */ @media screen and (max-width: 640px) { + html, body{ + height: auto; + } + header, footer { position: static; padding: 5px 20px; -webkit-text-size-adjust: none; } + footer{ + padding: 10px 20px; + } + button { height: 40px; font-size: 18px; @@ -101,6 +109,7 @@ #signIn .table{ padding: 10px 20px 20px; + display: block; } .pickemail #signIn .table { @@ -109,6 +118,7 @@ #signIn .vertical { position: static; + display: block; } #signIn form { -- GitLab