From 47535313aa1deaaca461e15d28d3b660017b2c5a Mon Sep 17 00:00:00 2001 From: Court Ewing Date: Mon, 11 Jan 2016 10:34:40 -0500 Subject: [PATCH] Fix safari legend being cut off on visualizations The flex-shrink and flex-grow properties here have no effect because they are already set to 1 further up in the cascade, so this is really only removing the flex-basis of 100% in favor of the already set value of auto. Fixes #5876 --- src/plugins/kibana/public/visualize/editor/styles/_editor.less | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/kibana/public/visualize/editor/styles/_editor.less b/src/plugins/kibana/public/visualize/editor/styles/_editor.less index d7a988196a33a5..36a42ac49f636b 100644 --- a/src/plugins/kibana/public/visualize/editor/styles/_editor.less +++ b/src/plugins/kibana/public/visualize/editor/styles/_editor.less @@ -355,7 +355,6 @@ } .visualize-chart { - flex: 1 1 100%; position: relative; } }