Browse Source

Fix border top on fixed bottom

pull/2536/head
jlukic 9 years ago
parent
commit
8d4b0f248b
2 changed files with 2 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -22,6 +22,7 @@
- **Modal** - `scrolling modal` now correctly inherits rules so that it appears at top of screen on mobile - **Modal** - `scrolling modal` now correctly inherits rules so that it appears at top of screen on mobile
- **Menu** - Inverted menu no longer includes a 1px transparent border. - **Menu** - Inverted menu no longer includes a 1px transparent border.
- **Menu** - Fixes `compact vertical menu` using `flex` style incorrectly - **Menu** - Fixes `compact vertical menu` using `flex` style incorrectly
- **Menu** - Fixes `border-top` not appearing on `bottom fixed` menu
- **Tab** - Fixed bug where remote loaded tab content would not show `loading tab` on first load. - **Tab** - Fixed bug where remote loaded tab content would not show `loading tab` on first load.
**Docs** **Docs**

2
src/definitions/collections/menu.less

@ -1626,13 +1626,13 @@ Floated Menu / Item
.ui.fixed.menu, .ui.fixed.menu,
.ui[class*="top fixed"].menu { .ui[class*="top fixed"].menu {
border-top: none;
top: 0px; top: 0px;
left: 0px; left: 0px;
right: auto; right: auto;
bottom: auto; bottom: auto;
} }
.ui[class*="top fixed"].menu { .ui[class*="top fixed"].menu {
border-top: none;
border-left: none; border-left: none;
border-right: none; border-right: none;
} }

Loading…
Cancel
Save