* Fix overflow behavior on small displays for login and logout pages.
authorArt Cancro <ajc@citadel.org>
Tue, 13 Jul 2010 23:04:39 +0000 (23:04 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 13 Jul 2010 23:04:39 +0000 (23:04 +0000)
webcit/static/webcit.css

index d06f16e31a5fbebb436bce99432122e0330e05c8..be31d5d121e3f6055c0796e8fc11eab6b3bb08fe 100644 (file)
@@ -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 {