From fef80ad974f36f18cd41ec0d60e862f595bdca49 Mon Sep 17 00:00:00 2001 From: jlukic Date: Wed, 7 Jan 2015 16:46:51 -0500 Subject: [PATCH] Removes negative margin on adjacent segment #1587 --- RELEASE-NOTES.md | 1 + src/definitions/collections/menu.less | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 78f22fd0f0..651c8eb24a 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -10,6 +10,7 @@ - **Modules** - Remove use of deprecated `.size()` for `.length` across all modules **Bugs** +- **Segment** - ``ui tabular menu`` now correctly aligns with attached segment when using fluid variation - **Steps** - Steps now use ``table-cell`` to allow steps to be equal height by default, even with different content height. - **Button** - Fix issue with labeled icon groups in material theme diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index b4513969cc..f7cf95b210 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -651,7 +651,7 @@ } .ui.tabular.menu ~ .bottom.attached.segment { border-top: none; - margin: -1px 0px 0px; + margin: 0px; }