Skip to content

Commit 3ae311c

Browse files
Updated component to version 2.1.4
1 parent f1a37ad commit 3ae311c

6 files changed

+17
-12
lines changed

RELEASE-NOTES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### Version 2.1.4 - Sep 13, 2015
2+
3+
- **Message** - `ui list` used inside `ui message` now aligns properly in all conditions [#2958](https://github.com/Semantic-Org/Semantic-UI/issues/2958)
4+
- **Form Validation** - Validation messages in `error message` group are now correctly removed when invalid field revalidates on blur
5+
16
#### Features
27

38
- **Dropdown** - Dropdown with user additions now will use custom templated messages to distinguish added choice from preselected choice [#2923](https://github.com/Semantic-Org/Semantic-UI/issues/2923)

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.1.3"
18+
"version": "2.1.4"
1919
}

message.css

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.1.3 - Message
2+
* # Semantic UI 2.1.4 - Message
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -68,33 +68,33 @@
6868
}
6969

7070
/* List */
71-
.ui.message ul.list {
71+
.ui.message .list:not(.ui) {
7272
text-align: left;
7373
padding: 0em;
7474
opacity: 0.85;
7575
list-style-position: inside;
7676
margin: 0.5em 0em 0em;
7777
}
78-
.ui.message ul.list:first-child {
78+
.ui.message .list:not(.ui):first-child {
7979
margin-top: 0em;
8080
}
81-
.ui.message ul.list:last-child {
81+
.ui.message .list:not(.ui):last-child {
8282
margin-bottom: 0em;
8383
}
84-
.ui.message ul.list li {
84+
.ui.message .list:not(.ui) li {
8585
position: relative;
8686
list-style-type: none;
8787
margin: 0em 0em 0.3em 1em;
8888
padding: 0em;
8989
}
90-
.ui.message ul.list li:before {
90+
.ui.message .list:not(.ui) li:before {
9191
position: absolute;
9292
content: '•';
9393
left: -1em;
9494
height: 100%;
9595
vertical-align: baseline;
9696
}
97-
.ui.message ul.list li:last-child {
97+
.ui.message .list:not(.ui) li:last-child {
9898
margin-bottom: 0em;
9999
}
100100

message.min.css

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

package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Package.describe({
33
name : 'semantic:ui-message',
44
summary : 'Semantic UI - Message: Single component release',
5-
version : '2.1.3',
5+
version : '2.1.4',
66
git : 'git://github.com/Semantic-Org/UI-Message.git',
77
});
88

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.1.3",
3+
"version": "2.1.4",
44
"title": "Semantic UI - Message",
55
"description": "Single component release of message",
66
"homepage": "http://www.semantic-ui.com",

0 commit comments

Comments
 (0)