From 66f4e8f582a8116ba370fb4b2e66da49c5a43393 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Thu, 18 Feb 2016 13:46:25 -0800 Subject: [PATCH 1/3] Fix position of letter on missing app icon --- .../public/chrome/directives/app_switcher/app_switcher.less | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ui/public/chrome/directives/app_switcher/app_switcher.less b/src/ui/public/chrome/directives/app_switcher/app_switcher.less index 0ddd95d33ed4..4070d53e5c2d 100644 --- a/src/ui/public/chrome/directives/app_switcher/app_switcher.less +++ b/src/ui/public/chrome/directives/app_switcher/app_switcher.less @@ -4,6 +4,7 @@ // as - App Switcher @as-open-width: 160px; @as-closed-width: 53px; +@as-icon-margin-top: 8px; @app-icon-height: 38px; @transition-time: .35s; @transition-delay: .25s; @@ -108,7 +109,7 @@ body { overflow-x: hidden; } > img { height: 18px; - margin-top: 8px; + margin-top: @as-icon-margin-top; } } @@ -117,7 +118,8 @@ body { overflow-x: hidden; } text-align: center; font-size: 1.7em; display: inline-block; - height: @app-icon-height; + margin-top: @as-icon-margin-top; + height: @app-icon-height - @as-icon-margin-top; width: @as-closed-width; background-position: center; background-size: contain; From a8131e0ac64cb42a586d37d531e2ff1c04a65842 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Thu, 18 Feb 2016 13:52:41 -0800 Subject: [PATCH 2/3] Fix missing margin on status page stats The status page stats didn't had any margin around them. That way the huge average number touched the label if your screen size had the appropriate resolution. Added some margin to the left, so it won't touch the label anymore. --- src/plugins/statusPage/public/statusPage.less | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/statusPage/public/statusPage.less b/src/plugins/statusPage/public/statusPage.less index c18e5a3ad8c3..41391c95eb4e 100644 --- a/src/plugins/statusPage/public/statusPage.less +++ b/src/plugins/statusPage/public/statusPage.less @@ -53,6 +53,7 @@ line-height:45px; font-weight: normal; margin:0; + margin-left: 10px; } } } From 2d5d5430d9369aed3bf6790838b956918902a385 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Thu, 18 Feb 2016 15:40:06 -0800 Subject: [PATCH 3/3] Remove button icon from dashboard empty text The text that was shown on the empty dashboard still had the old style button in it to add visualization. This is now replaced by a regular text link. --- src/plugins/kibana/public/dashboard/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/kibana/public/dashboard/index.html b/src/plugins/kibana/public/dashboard/index.html index f5de97eb5526..a5331b343138 100644 --- a/src/plugins/kibana/public/dashboard/index.html +++ b/src/plugins/kibana/public/dashboard/index.html @@ -92,7 +92,7 @@

Ready to get started?

-

Click the button in the menu bar above to add a visualization to the dashboard.
If you haven't setup a visualization yet visit the "Visualize" tab to create your first visualization.

+

Click the "Add visualization" button in the menu bar above to add a visualization to the dashboard.
If you haven't setup a visualization yet visit the "Visualize" tab to create your first visualization.