diff --git a/docs/assets/scss/_style.scss b/docs/assets/scss/_style.scss index aea5ef6..e09b768 100644 --- a/docs/assets/scss/_style.scss +++ b/docs/assets/scss/_style.scss @@ -34,6 +34,11 @@ html .toc-menu { color: $primary-text-color; } +.toc-menu:before { + /* TODO: Remove after docpress new release! */ + display: none; +} + /* * Update look of 'code' elements */ @@ -368,11 +373,24 @@ html .markdown-body .file-heading:before { } /* - * No headers on tables + * Table look and feel */ -table.no-head thead { - display: none; +html .markdown-body table { + display: table; + width: 100%; + color: $code-color; + margin: 1.75rem 0; +} + +html .markdown-body table tr, +html .markdown-body table td { + background-color: $background-color; +} + +html .markdown-body table td, +html .markdown-body table th { + border-color: $gray-darkest; } /** diff --git a/docs/assets/scss/_variables.scss b/docs/assets/scss/_variables.scss index 74fdf4b..54458aa 100644 --- a/docs/assets/scss/_variables.scss +++ b/docs/assets/scss/_variables.scss @@ -26,5 +26,4 @@ $special-text-color : $pink; $code-color : $gray; $code-inline-color : $link-color; - $background-color: $black;