From 4b6a89dd53f266e0f87322e67bb1cf6111002890 Mon Sep 17 00:00:00 2001 From: Owen Conti Date: Mon, 13 Nov 2017 17:29:05 -0700 Subject: [PATCH 1/2] Fixes #3897 - Change color of elements in markdown content. --- src/style/_layout.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/style/_layout.scss b/src/style/_layout.scss index 327c7633..b95839de 100644 --- a/src/style/_layout.scss +++ b/src/style/_layout.scss @@ -575,6 +575,11 @@ color: $response-col-description-inner-markdown-link-font-color-hover; } } + + th + { + @include text_code($response-col-description-inner-markdown-font-color); + } } } From 3139f3a9d7883eedd2b893c1a7b66fa0ce6c7f9b Mon Sep 17 00:00:00 2001 From: Hugo Ferrando Seage Date: Tue, 14 Nov 2017 17:36:06 +0100 Subject: [PATCH 2/2] Change color of 's border-bottom elements in markdown content --- src/style/_layout.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/style/_layout.scss b/src/style/_layout.scss index b95839de..786b9f80 100644 --- a/src/style/_layout.scss +++ b/src/style/_layout.scss @@ -579,6 +579,7 @@ th { @include text_code($response-col-description-inner-markdown-font-color); + border-bottom: 1px solid $response-col-description-inner-markdown-font-color; } } }