From 064469de689a99584deb2a9371313a92a2478b0e Mon Sep 17 00:00:00 2001 From: Erik Michaels-Ober Date: Sun, 25 Dec 2011 20:33:52 -0800 Subject: [PATCH] Make "Terms of Service" modal scrollable I'm hopeful this will be fixed in the next version of Bootstrap. See: https://github.com/twitter/bootstrap/issues/849 and https://github.com/twitter/bootstrap/issues/850 --- app/assets/stylesheets/screen.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/screen.css b/app/assets/stylesheets/screen.css index 53ff937..8dbb84d 100644 --- a/app/assets/stylesheets/screen.css +++ b/app/assets/stylesheets/screen.css @@ -9,11 +9,12 @@ body { h1, h2 { text-align: center; + margin: 20px 0 10px; } h2 { font-size: 22px; - margin-bottom: 10px; + margin: 10px 0; } form.form-stacked { @@ -91,7 +92,6 @@ form input.error:focus, form textarea.error:focus { } .sidebar { - padding-top: 20px; width: 250px; text-align: center; } @@ -136,6 +136,11 @@ form input.error:focus, form textarea.error:focus { width: 100%; } +.modal { + max-height: 500px; + overflow: auto; +} + .upcase { text-transform: uppercase; }