diff options
author | John McLear <john@mclear.co.uk> | 2013-01-26 20:04:33 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-01-26 20:04:33 +0000 |
commit | 9d0672c1c811bfac6b922c042a2ef76f1ea0711d (patch) | |
tree | 65cee2ed734dba9321ee6a0b99b72bcc35e18830 /src/static/css/admin.css | |
parent | 090508909e8e576da59eefa08fba636d383f9fce (diff) | |
download | etherpad-lite-9d0672c1c811bfac6b922c042a2ef76f1ea0711d.zip |
not a perfect css fix but stops the overflow when screen is less than 1000px
Diffstat (limited to 'src/static/css/admin.css')
-rw-r--r-- | src/static/css/admin.css | 8 |
1 files 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 +}
|