diff options
author | John McLear <john@mclear.co.uk> | 2014-11-06 15:50:55 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-11-06 15:50:55 +0000 |
commit | d13b6162f0b7869942ec4bcb6ab7b5267b448b86 (patch) | |
tree | 38dffe70393c715b29914a2e1f4e34495d360844 /src | |
parent | 0685e563ed947a42377fe1a5eb6fca10f3e8e833 (diff) | |
download | etherpad-lite-d13b6162f0b7869942ec4bcb6ab7b5267b448b86.zip |
this looks way better
Diffstat (limited to 'src')
-rw-r--r-- | src/static/css/pad.css | 3 | ||||
-rw-r--r-- | src/static/js/pad_editbar.js | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/static/css/pad.css b/src/static/css/pad.css index 11705e06..91c97c5e 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -182,6 +182,9 @@ li[data-key=showusers] > a #online_count { top: 2px; padding-left: 2px; } +#editbar{ + display:none; +} #editorcontainer { position: absolute; top: 37px; /* + 1px border */ diff --git a/src/static/js/pad_editbar.js b/src/static/js/pad_editbar.js index c067bbba..d39bfecd 100644 --- a/src/static/js/pad_editbar.js +++ b/src/static/js/pad_editbar.js @@ -154,6 +154,8 @@ var padeditbar = (function() }); }); + $('#editbar').show(); + this.redrawHeight(); registerDefaultCommands(self); |