diff --git a/public/app/features/plugins/partials/update_instructions.html b/public/app/features/plugins/partials/update_instructions.html index 80e3a413d1d..55455e24af7 100644 --- a/public/app/features/plugins/partials/update_instructions.html +++ b/public/app/features/plugins/partials/update_instructions.html @@ -16,6 +16,6 @@
grafana-cli plugins update {{plugin.id}}
Check out {{plugin.name}} on Grafana.net for README and changelog. If you do not have access to the command line, ask your Grafana administator.
- Pro tip: To update all plugins at once, type
grafana-cli plugins update-all
on the command line.
+
Pro tip: To update all plugins at once, type
grafana-cli plugins update-all
on the command line.
diff --git a/public/sass/base/_code.scss b/public/sass/base/_code.scss
index eb085c0577c..4222c652193 100644
--- a/public/sass/base/_code.scss
+++ b/public/sass/base/_code.scss
@@ -21,6 +21,8 @@ code {
background-color: $code-tag-bg;
border: 1px solid darken($code-tag-bg, 15%);
white-space: nowrap;
+ padding: 2px 5px;
+ margin: 0 2px;
}
code.code--small {
@@ -29,10 +31,6 @@ code.code--small {
margin: 0 2px;
}
-p.code--line {
- line-height: 1.8;
-}
-
// Blocks of code
pre {
display: block;
diff --git a/public/sass/components/_panel_text.scss b/public/sass/components/_panel_text.scss
index 06d3495aaa0..9de31bab4c8 100644
--- a/public/sass/components/_panel_text.scss
+++ b/public/sass/components/_panel_text.scss
@@ -3,4 +3,5 @@
ul {
margin: 0 0 $spacer $spacer * 1.5;
}
+ li {line-height: 2;}
}