Browse Source

Fix issue with whitespace wrapping in reveal

fix-flex
Jack 7 years ago
parent
commit
4231bb269f
2 changed files with 3 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/elements/reveal.less

1
RELEASE-NOTES.md

@ -22,6 +22,7 @@
- **Menu** - Fixes `disabled item` showing hover style for `secondary menu` **Thanks @tcmal** #6268
- **CSS Variables** - Added use of `@normal` for normal font weight for all non-default themes included in repo. #6227
- **Image** - Fixes margin being applied twice to `ui images` #6224
- **Reveal** - Fix `whitespace: nowrap;` applying to content inside `slide reveal` and `move reveal`
**Docs**
- Fixes CDN links in docs **Thanks @KSH-code**

2
src/definitions/elements/reveal.less

@ -64,6 +64,7 @@
.ui.slide.reveal > .content {
display: block;
width: 100%;
white-space: normal;
float: left;
margin: 0em;
@ -154,6 +155,7 @@
.ui.move.reveal > .content {
display: block;
float: left;
white-space: normal;
margin: 0em;
transition: @moveTransition;

Loading…
Cancel
Save