From 9d0672c1c811bfac6b922c042a2ef76f1ea0711d Mon Sep 17 00:00:00 2001 From: John McLear Date: Sat, 26 Jan 2013 20:04:33 +0000 Subject: [PATCH 1/2] not a perfect css fix but stops the overflow when screen is less than 1000px --- src/static/css/admin.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/static/css/admin.css b/src/static/css/admin.css index 0d947126..53c97f03 100644 --- a/src/static/css/admin.css +++ b/src/static/css/admin.css @@ -38,8 +38,10 @@ div.innerwrapper { float: right; opacity: 0.9; padding: 15px; - width: 860px; - border-radius: 0 0 7px 7px; + max-width: 860px; + bordr-radius: 0 0 7px 7px; + margin-left:250px; + min-width:400px; } #wrapper { @@ -135,4 +137,4 @@ a:link, a:visited, a:hover, a:focus { a:focus, a:hover { border-bottom: #333333 1px solid; -} \ No newline at end of file +} From 1290fa36c3b341e3e4e746ab5348897c9f223f52 Mon Sep 17 00:00:00 2001 From: John McLear Date: Sat, 26 Jan 2013 20:05:37 +0000 Subject: [PATCH 2/2] typo fix --- src/static/css/admin.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/css/admin.css b/src/static/css/admin.css index 53c97f03..b2cf4b5d 100644 --- a/src/static/css/admin.css +++ b/src/static/css/admin.css @@ -39,7 +39,7 @@ div.innerwrapper { opacity: 0.9; padding: 15px; max-width: 860px; - bordr-radius: 0 0 7px 7px; + border-radius: 0 0 7px 7px; margin-left:250px; min-width:400px; }