From 30992ac2de854de698a68ec2f7ba93b9cb9ccaa0 Mon Sep 17 00:00:00 2001 From: catarak Date: Tue, 12 Jul 2016 19:24:57 -0400 Subject: [PATCH] fix tooltip styling --- client/styles/components/_editor.scss | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/client/styles/components/_editor.scss b/client/styles/components/_editor.scss index d75fbfbc..0964019c 100644 --- a/client/styles/components/_editor.scss +++ b/client/styles/components/_editor.scss @@ -26,7 +26,6 @@ bottom: 0; } - .CodeMirror-lint-marker-warning, .CodeMirror-lint-marker-error, .CodeMirror-lint-marker-multiple { background-image: none; width: 70px; @@ -34,6 +33,11 @@ height: 100%; } +.CodeMirror-lint-message-error, .CodeMirror-lint-message-warning { + background-image: none; + padding-left: inherit; +} + .CodeMirror-lint-marker-warning { background-color: rgb(255, 190, 5); } @@ -48,3 +52,11 @@ height: 100%; // background-color: rgb(255, 95, 82); } + +.CodeMirror-lint-tooltip { + font-family: Montserrat, sans-serif; + border-radius: 2px; + border: 1px solid #B9D0E1; + background-color: $light-button-background-color; + +}