From e07369ae2928cf4ce6733269fffb7155c054714d Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 20 Jul 2015 14:52:07 -0400 Subject: [PATCH] Fixes #2665, message icon collapses --- RELEASE-NOTES.md | 2 ++ src/definitions/collections/message.less | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 9618d5a92..dfd635715 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -3,7 +3,9 @@ ### Version 2.0.5 - July 20, 2015 **[Reported Bugs](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A2.0.5+is%3Aclosed)** +- **API** - Data replaced in urls, `urlData`, will now be url encoded by default. Additionally checks were added to avoid double encoding already encoded values. #2394 - **Dropdown** - Fixed regression causing `multiple search dropdown` using [`search` inside menu](http://www.semantic-ui.com/modules/dropdown.html#search-in-menu) to break, caused by JS error using "split" +- **Message** - Fixed issues where icon would overlap in `icon message` when at mobile resolutions due to `flex-collapse` value being incorrect #2665 - **Additional Fixes** - **Dropdown** - `` will now produce an error to alert users selection will not be preserved correctly. Related #2573 diff --git a/src/definitions/collections/message.less b/src/definitions/collections/message.less index 2b592a127..a805d9799 100755 --- a/src/definitions/collections/message.less +++ b/src/definitions/collections/message.less @@ -219,7 +219,7 @@ } .ui.icon.message > .icon:not(.close) { display: block; - flex: 0 1 auto; + flex: 0 0 auto; width: auto; line-height: 1; vertical-align: @iconVerticalAlign;