diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-02-05 03:48:02 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2010-02-05 03:48:02 +0100 |
commit | d79b717f5314f03a7cb2516f014ec7eb41fa3189 (patch) | |
tree | 5d50cae01a76e879ab111c9e34584fc1eaee0fb1 | |
parent | 1199878005d6980e6f3631f419778927147bd639 (diff) | |
download | etherpad-d79b717f5314f03a7cb2516f014ec7eb41fa3189.tar.gz etherpad-d79b717f5314f03a7cb2516f014ec7eb41fa3189.tar.xz etherpad-d79b717f5314f03a7cb2516f014ec7eb41fa3189.zip |
fixed minimal width with new buttons
-rw-r--r-- | etherpad/src/static/css/pad2_ejs.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etherpad/src/static/css/pad2_ejs.css b/etherpad/src/static/css/pad2_ejs.css index 9da45a7..3413c34 100644 --- a/etherpad/src/static/css/pad2_ejs.css +++ b/etherpad/src/static/css/pad2_ejs.css @@ -12,9 +12,9 @@ body, textarea { font-family: Arial, sans-serif; } #padpage { margin-left: auto; margin-right: auto; width: 900px; } -body.fullwidth #padpage { width: auto; margin-left: 6px; margin-right: 6px; } -body.squish1width #padpage { width: 800px; } -body.squish2width #padpage { width: 700px; } +body.fullwidth #padpage { width: auto; margin-left: 6px; margin-right: 6px; min-width: 800px; } +body.squish1width #padpage { width: 900px; } +body.squish2width #padpage { width: 800px; } #topbar { height: 25px; background: #326cbd url(/static/img/jun09/pad/padtopback2.gif) repeat-x left top; position: relative; } |