Skip to content

Commit 125f8b1

Browse files
Updated component to version 2.2.11
1 parent f2e52c9 commit 125f8b1

5 files changed

+14
-10
lines changed

RELEASE-NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 2.2.11 - July 11, 2017
2+
3+
- **Message** - Fix issue with `compact icon message` not appearing compact [#4759](https://github.com/Semantic-Org/Semantic-UI/issues/4759)
4+
15
#### Dropdown
26

37
- **Search** - Fixes issue where empty results message can still appear when using setting `showNoResults: false` [#4616](https://github.com/Semantic-Org/Semantic-UI/pull/4616)

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"framework"
1616
],
1717
"license": "MIT",
18-
"version": "2.2.10"
18+
"version": "2.2.11"
1919
}

message.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.10 - Message
2+
* # Semantic UI 2.2.11 - Message
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -149,7 +149,6 @@
149149
}
150150
.ui.icon.visible.visible.visible.visible.message {
151151
display: -webkit-box;
152-
display: -webkit-flex;
153152
display: -ms-flexbox;
154153
display: flex;
155154
}
@@ -175,6 +174,11 @@
175174
.ui.compact.message {
176175
display: inline-block;
177176
}
177+
.ui.compact.icon.message {
178+
display: -webkit-inline-box;
179+
display: -ms-inline-flexbox;
180+
display: inline-flex;
181+
}
178182

179183
/*--------------
180184
Attached
@@ -209,19 +213,16 @@
209213

210214
.ui.icon.message {
211215
display: -webkit-box;
212-
display: -webkit-flex;
213216
display: -ms-flexbox;
214217
display: flex;
215218
width: 100%;
216219
-webkit-box-align: center;
217-
-webkit-align-items: center;
218220
-ms-flex-align: center;
219221
align-items: center;
220222
}
221223
.ui.icon.message > .icon:not(.close) {
222224
display: block;
223225
-webkit-box-flex: 0;
224-
-webkit-flex: 0 0 auto;
225226
-ms-flex: 0 0 auto;
226227
flex: 0 0 auto;
227228
width: auto;
@@ -233,7 +234,6 @@
233234
.ui.icon.message > .content {
234235
display: block;
235236
-webkit-box-flex: 1;
236-
-webkit-flex: 1 1 auto;
237237
-ms-flex: 1 1 auto;
238238
flex: 1 1 auto;
239239
vertical-align: middle;

message.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "semantic-ui-message",
3-
"version": "2.2.10",
3+
"version": "2.2.11",
44
"title": "Semantic UI - Message",
55
"description": "Single component release of message",
66
"homepage": "http://www.semantic-ui.com",

0 commit comments

Comments
 (0)