Browse Source

Fix incorrect margin on attached segment #2503

pull/2536/head
Jack Lukic 9 years ago
parent
commit
bd166b8fed
2 changed files with 4 additions and 2 deletions
  1. 2
      RELEASE-NOTES.md
  2. 4
      src/definitions/elements/segment.less

2
RELEASE-NOTES.md

@ -10,6 +10,8 @@
- **Dimmer** - Dimmer now removes variations like `blurring` and `inverted` when `destroy` is called.
- **Dropdown** - Removes accidental console.log statement in dropdown
- **Modal** - `scrolling modal` now correctly inherits rules so that it appears at top of screen on mobile
- **Label** - Fixes incorrect label sizing for `large` and bigger sizes #2486
- **Segment** - Fixed incorrect margin set on `attached segment` #2503
### Version 2.0.0 - June 30, 2015

4
src/definitions/elements/segment.less

@ -693,7 +693,7 @@
.ui[class*="top attached"].segment {
top: @attachedTopOffset;
bottom: 0px;
margin-top: @margin;
margin-top: @verticalMargin;
margin-bottom: 0em;
border-radius: @borderRadius @borderRadius 0em 0em;
}
@ -706,7 +706,7 @@
top: @attachedBottomOffset;
bottom: 0px;
margin-top: 0em;
margin-bottom: @margin;
margin-bottom: @verticalMargin;
box-shadow: @attachedBottomBoxShadow;
border-radius: 0em 0em @borderRadius @borderRadius;
}

Loading…
Cancel
Save