From d8bb1379c176c6bedc2a7b6777fa933cca7fc357 Mon Sep 17 00:00:00 2001 From: jlukic Date: Wed, 7 Jan 2015 16:53:35 -0500 Subject: [PATCH] #1587 Fix bottom attached rule to only apply to next bottom attached, or multiple bottom attached --- RELEASE-NOTES.md | 4 ++-- src/definitions/collections/menu.less | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 651c8eb24..58c8200c0 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -6,11 +6,11 @@ - **Project** - Right-to-left (RTL) support added. New gulp tasks for RTL *Thanks @MohammadYounes!* **Code / Build** -- **Build** - `Dist/` files now have file permissions `644` by default. Can adjust in `semantic.json`. You will need to run `npm install` to add the new gulp-chmod dependency +- **Build** - `Dist/` files now have file permissions `644` by default. Can adjust in `semantic.json`. You will need to run `npm install` to add the new gulp-chmod dependency *Thanks @PeterDaveHello* - **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 +- **Segment** - ``ui tabular menu`` now correctly aligns with attached segment when using fluid variation *Thanks @MohammadYounes* - **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 f7cf95b21..e2825a3ad 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -649,7 +649,8 @@ position: relative; z-index: 2; } -.ui.tabular.menu ~ .bottom.attached.segment { +.ui.tabular.menu + .bottom.attached.segment, +.ui.tabular.menu ~ .bottom.attached.segment + .bottom.attached.segment { border-top: none; margin: 0px; }