From d3b3ea387facaa6bed132ffcd8b1b713cbec81e9 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 5 Jan 2015 18:26:22 -0500 Subject: [PATCH] Fixes min-width on fluid labeled icon menu --- RELEASE-NOTES.md | 1 + src/definitions/collections/menu.less | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 42fa9df4a..0b133a4cd 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -16,6 +16,7 @@ - **Popup** - Fix issue with `ui popup` receiving error ``$offsetParent is undefined`` when using a pre-defined popup - **Popup** - Fix issue with ``ui popup` not appearing with ``ui flowing popup`` due to newly added ``min-width: max-content`` - **Form** - ``ui search dropdown`` inside a form has incorrect focus style +- **Menu** - Fixes ``ui fluid labeled icon menu`` to not have `min-width` ### Version 1.5.2 - January 02, 2015 diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 7c53d72c3..546b82ca7 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -1063,6 +1063,11 @@ .ui.labeled.icon.menu { text-align: center; } +.ui.fluid.labeled.icon.menu > .item { + min-width: 0em; +} + + .ui.labeled.icon.menu > .item { min-width: @labeledIconMinWidth; }