From 37aed530475e375670ab6e18fdc702b3d5932506 Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Thu, 25 Jun 2015 10:47:38 -0400 Subject: [PATCH] Fix svg icons on setup menu in IE11 --- awx/ui/static/js/setup-menu/setup-item.block.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/awx/ui/static/js/setup-menu/setup-item.block.less b/awx/ui/static/js/setup-menu/setup-item.block.less index 601f8787a8..d983c5bd7a 100644 --- a/awx/ui/static/js/setup-menu/setup-item.block.less +++ b/awx/ui/static/js/setup-menu/setup-item.block.less @@ -52,6 +52,12 @@ margin-left: -0.8rem; } + // HACK: IE11 does not respect a fluid height for svg + // elements; explicitly setting for now + svg { + max-height: 33px; + } + flex: none; // do not let the flex container adjust this width! width: @icon-large-size; align-self: center;