From 73c1016f4a89d8304af1fbb91a4a8b5ebd5aacd7 Mon Sep 17 00:00:00 2001 From: Paulo Reis Date: Thu, 19 Jan 2017 16:58:16 +0000 Subject: [PATCH] Avoid using 0px, because minifiers might convert the value to 0, which will still cause issues on IE. --- services/web/public/stylesheets/app/editor/review-panel.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/stylesheets/app/editor/review-panel.less b/services/web/public/stylesheets/app/editor/review-panel.less index 0696a8640c..5fba75c032 100644 --- a/services/web/public/stylesheets/app/editor/review-panel.less +++ b/services/web/public/stylesheets/app/editor/review-panel.less @@ -338,7 +338,7 @@ margin-left: 5px; // We need to set any low-enough flex base size (0px), making it growable (1) and non-shrinkable (0). // This is needed to ensure that IE makes the element fill the available space. - flex: 1 0 0px; + flex: 1 0 1px; .rp-state-overview & { margin-left: 0;