Browse Source

#1587 Fix bottom attached rule to only apply to next bottom attached, or multiple bottom attached

pull/1615/head
jlukic 10 years ago
parent
commit
d8bb1379c1
2 changed files with 4 additions and 3 deletions
  1. 4
      RELEASE-NOTES.md
  2. 3
      src/definitions/collections/menu.less

4
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

3
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;
}

Loading…
Cancel
Save