From 512abdf83acf06114a23fa987b4190d561dd51a0 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 9 Feb 2015 13:51:26 -0500 Subject: [PATCH] Fix tabular menu valign issue in IE --- src/definitions/collections/menu.less | 9 +++------ src/themes/default/collections/menu.variables | 1 + 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index cf616bd6c..367e5c2fb 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -633,18 +633,15 @@ /* Active */ .ui.tabular.menu .active.item { position: relative; + border-bottom: none; + vertical-align: bottom; background-color: @tabularMenuActiveBackground; color: @tabularActiveColor; - border-color: @tabularBorderColor; font-weight: @tabularActiveWeight; - margin-bottom: -@tabularBorderWidth; - - - border-bottom: none; - box-shadow: 0px (2 * @tabularBorderWidth) 0px -@tabularBorderWidth @tabularBackgroundColor; + box-shadow: @tabularActiveBoxShadow; border-radius: @tabularBorderRadius @tabularBorderRadius 0px 0px; } diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index 6bcb3e98e..fcf8b3667 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -244,6 +244,7 @@ @tabularFluidWidth: ~"calc(100% + "(@tabularFluidOffset * 2)~")"; @tabularActiveColor: @selectedTextColor; +@tabularActiveBoxShadow: none; @tabularMenuActiveBackground: #FFFFFF; @tabularActiveWeight: bold;