Browse Source

Fix #3012 padded vertical segments

pull/4731/merge
Jack Lukic 8 years ago
parent
commit
06f52390c7
2 changed files with 8 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 7
      src/definitions/elements/segment.less

1
RELEASE-NOTES.md

@ -31,6 +31,7 @@
- **Dropdown** - Fixed issue where `selectOnKeydown` with `html` content would cause only non html content to display in `text` until blur
- **Form Validation** - Fixes js error caused by revalidating inputs without validation rules #4497 #4547 **Thanks @cbxp**
- **Input/Dropdown** - Fixed rounding error causing vertical alignment of `dropdown`, `search`, `input` to sometimes appear off by 1 pixel #4279
- **Segment** - Fixed `padded vertical segment` `very padded vertical segment` would receive horizontal padding #3012
**Documentation**
- **Visibility** - Added documentation for `onOnscreen` and `onOffScreen` to important callbacks somehow omitted from docs

7
src/definitions/elements/segment.less

@ -226,6 +226,13 @@
padding: @veryPaddedSegmentPadding;
}
/* Padded vertical */
.ui.padded.segment.vertical.segment,
.ui[class*="very padded"].vertical.segment {
padding-left: 0px;
padding-right: 0px;
}
/*-------------------
Compact
--------------------*/

Loading…
Cancel
Save