Commit f1a01aed by Torkel Ödegaard

Merge pull request #4711 from grafana/issue-4704

Updated colors to fix issue
parents 8ac5c367 c1a5771f
...@@ -102,7 +102,9 @@ $tight-form-func-bg: #333; ...@@ -102,7 +102,9 @@ $tight-form-func-bg: #333;
$tight-form-func-highlight-bg: #444; $tight-form-func-highlight-bg: #444;
$modal-background: $black; $modal-background: $black;
$code-tag-bg: #444; $code-tag-bg: $dark-5;
$code-tag-border: lighten($code-tag-bg, 2%);
// Lists // Lists
$grafanaListBackground: $dark-3; $grafanaListBackground: $dark-3;
......
...@@ -109,7 +109,8 @@ $tight-form-func-bg: $gray-5; ...@@ -109,7 +109,8 @@ $tight-form-func-bg: $gray-5;
$tight-form-func-highlight-bg: $gray-6; $tight-form-func-highlight-bg: $gray-6;
$modal-background: $body-bg; $modal-background: $body-bg;
$code-tag-bg: $dark-5; $code-tag-bg: $gray-6;
$code-tag-border: darken($code-tag-bg, 3%);
// Lists // Lists
$grafanaListBackground: $gray-6; $grafanaListBackground: $gray-6;
......
...@@ -10,7 +10,7 @@ pre { ...@@ -10,7 +10,7 @@ pre {
font-size: $font-size-base - 2; font-size: $font-size-base - 2;
background-color: $code-tag-bg; background-color: $code-tag-bg;
color: $text-color; color: $text-color;
border: 1px solid darken($code-tag-bg, 15%); border: 1px solid $code-tag-border;
padding: 10px; padding: 10px;
border-radius: 4px; border-radius: 4px;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment