diff --git a/settings.json.template b/settings.json.template index efdb257db..fa1baa4b4 100644 --- a/settings.json.template +++ b/settings.json.template @@ -409,7 +409,7 @@ */ /* - * Expose Etherpad version in the Server http header. + * Expose Etherpad version in the web interface and in the Server http header. * * Do not enable on production machines. */ diff --git a/src/node/utils/Settings.js b/src/node/utils/Settings.js index cffb20cf0..23a792ffd 100644 --- a/src/node/utils/Settings.js +++ b/src/node/utils/Settings.js @@ -292,7 +292,7 @@ exports.scrollWhenFocusLineIsOutOfViewport = { }; /* - * Expose Etherpad version in the Server http header. + * Expose Etherpad version in the web interface and in the Server http header. * * Do not enable on production machines. */ diff --git a/src/static/css/pad.css b/src/static/css/pad.css index be8b1f0be..7d5985946 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -938,6 +938,13 @@ input[type=checkbox] { outline: none; width: 120px; } +.row { + float: left; + width: 100%; +} +.row + .row { + margin-top: 15px; +} .column { float: left; width:50%; diff --git a/src/templates/pad.html b/src/templates/pad.html index bee248f57..61b9f2268 100644 --- a/src/templates/pad.html +++ b/src/templates/pad.html @@ -127,80 +127,88 @@