From a45711a5acdca446f18b5373b3d337c40d3cb51e Mon Sep 17 00:00:00 2001 From: Fabian Becker Date: Sun, 14 Sep 2014 18:46:59 +0000 Subject: [PATCH] Fix Markdown help modal table positioning no ref - Fix top spacing of markdown table - Fix width of table and left align table head - Fix grammar, whitespace in getting-started post --- ghost/admin/assets/sass/layouts/editor.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghost/admin/assets/sass/layouts/editor.scss b/ghost/admin/assets/sass/layouts/editor.scss index 507ce99426..37c328b01c 100644 --- a/ghost/admin/assets/sass/layouts/editor.scss +++ b/ghost/admin/assets/sass/layouts/editor.scss @@ -846,5 +846,14 @@ body.zen { } .modal-markdown-help-table { - margin-top: 0; + margin: 20px 0; + width: 100%; + + td, th { + padding: 8px; + } + + th { + text-align: left; + } }