From 9f5adaf3117cd3e7625875ac6579d585642e4132 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 13 Jul 2010 23:04:39 +0000 Subject: [PATCH] * Fix overflow behavior on small displays for login and logout pages. --- webcit/static/webcit.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index d06f16e31..be31d5d12 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -99,7 +99,7 @@ body { #room_infos, #address_book_popup, .mimepart, .room_actions form select { border: 1px solid #333; - overflow: hidden; + overflow: scroll; } @@ -609,8 +609,14 @@ body, #global { } #login_screen, #logout_screen { - margin: 0; + position: fixed; + margin: 0px; + top: 0px; + left: 0px; + bottom: 0px; + right: 0px; padding: 3% 6% 3% 6%; + overflow: auto; } #convlogin, #validate { -- 2.39.2