diff options
author | johnyma22 <john@mclear.co.uk> | 2012-10-29 19:20:02 +0000 |
---|---|---|
committer | johnyma22 <john@mclear.co.uk> | 2012-10-29 19:20:02 +0000 |
commit | 4f85bf09ccb322ed5473287ef067fe4de8f9b249 (patch) | |
tree | 7bf2aaa0ad4e06a266a7a49769a10e6b3be4a4a7 | |
parent | a770910a3a7285be3e45a16255b078051c5afa26 (diff) | |
download | etherpad-lite-4f85bf09ccb322ed5473287ef067fe4de8f9b249.zip |
make anything less than 400px span 2 lines on toolbar and make popups appear below this
-rw-r--r-- | src/static/css/pad.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/static/css/pad.css b/src/static/css/pad.css index df9dde14..5ee6b3c5 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -783,6 +783,23 @@ input[type=checkbox] { padding: 4px 1px } } +@media screen and (max-width: 400px){ + #editorcontainer { + top: 68px; + } + #editbar { + height: 62px; + } + .toolbar ul.menu_right { + float: left; + margin-top:2px; + } + .popup { + width:100%; + max-width:300px; + top: 72px !important; + } +} @media only screen and (min-device-width: 320px) and (max-device-width: 720px) { #users { top: 36px; |