Browse Source

Fixes #2665, message icon collapses

pull/2710/head
jlukic 9 years ago
parent
commit
e07369ae29
2 changed files with 3 additions and 1 deletions
  1. 2
      RELEASE-NOTES.md
  2. 2
      src/definitions/collections/message.less

2
RELEASE-NOTES.md

@ -3,7 +3,9 @@
### Version 2.0.5 - July 20, 2015 ### 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)** **[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" - **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** - **Additional Fixes**
- **Dropdown** - `<select>` dropdowns intialized without `multiple` property set on `<select>` will now produce an error to alert users selection will not be preserved correctly. Related #2573 - **Dropdown** - `<select>` dropdowns intialized without `multiple` property set on `<select>` will now produce an error to alert users selection will not be preserved correctly. Related #2573

2
src/definitions/collections/message.less

@ -219,7 +219,7 @@
} }
.ui.icon.message > .icon:not(.close) { .ui.icon.message > .icon:not(.close) {
display: block; display: block;
flex: 0 1 auto;
flex: 0 0 auto;
width: auto; width: auto;
line-height: 1; line-height: 1;
vertical-align: @iconVerticalAlign; vertical-align: @iconVerticalAlign;

Loading…
Cancel
Save