Skip to content

Commit 09f228b

Browse files
Updated component to version 2.5.0
1 parent 2058257 commit 09f228b

File tree

4 files changed

+16
-48
lines changed

4 files changed

+16
-48
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"authors": [{
66
"name": "Jack Lukic",
77
"email": "[email protected]",
8-
"web": "http://www.jacklukic.com",
8+
"homepage": "http://www.jacklukic.com",
99
"role": "Creator"
1010
}],
1111
"keywords": ["semantic", "ui", "css", "framework"],
1212
"license": "MIT",
13-
"version": "2.4.1"
13+
"version": "2.5.0"
1414
}

package.json

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

statistic.css

+11-43
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.4.1 - Statistic
2+
* # Semantic UI 2.5.0 - Statistic
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -16,13 +16,8 @@
1616

1717
/* Standalone */
1818
.ui.statistic {
19-
display: -webkit-inline-box;
20-
display: -ms-inline-flexbox;
2119
display: inline-flex;
22-
-webkit-box-orient: vertical;
23-
-webkit-box-direction: normal;
24-
-ms-flex-direction: column;
25-
flex-direction: column;
20+
flex-direction: column;
2621
margin: 1em 0em;
2722
max-width: auto;
2823
}
@@ -44,32 +39,18 @@
4439

4540
/* Grouped */
4641
.ui.statistics {
47-
display: -webkit-box;
48-
display: -ms-flexbox;
4942
display: flex;
50-
-webkit-box-align: start;
51-
-ms-flex-align: start;
52-
align-items: flex-start;
53-
-ms-flex-wrap: wrap;
54-
flex-wrap: wrap;
43+
align-items: flex-start;
44+
flex-wrap: wrap;
5545
}
5646
.ui.statistics > .statistic {
57-
display: -webkit-inline-box;
58-
display: -ms-inline-flexbox;
5947
display: inline-flex;
60-
-webkit-box-flex: 0;
61-
-ms-flex: 0 1 auto;
62-
flex: 0 1 auto;
63-
-webkit-box-orient: vertical;
64-
-webkit-box-direction: normal;
65-
-ms-flex-direction: column;
66-
flex-direction: column;
48+
flex: 0 1 auto;
49+
flex-direction: column;
6750
margin: 0em 1.5em 1em;
6851
max-width: auto;
6952
}
7053
.ui.statistics {
71-
display: -webkit-box;
72-
display: -ms-flexbox;
7354
display: flex;
7455
margin: 1em -1.5em -1em;
7556
}
@@ -263,30 +244,17 @@
263244
---------------*/
264245

265246
.ui.horizontal.statistic {
266-
-webkit-box-orient: horizontal;
267-
-webkit-box-direction: normal;
268-
-ms-flex-direction: row;
269-
flex-direction: row;
270-
-webkit-box-align: center;
271-
-ms-flex-align: center;
272-
align-items: center;
247+
flex-direction: row;
248+
align-items: center;
273249
}
274250
.ui.horizontal.statistics {
275-
-webkit-box-orient: vertical;
276-
-webkit-box-direction: normal;
277-
-ms-flex-direction: column;
278-
flex-direction: column;
251+
flex-direction: column;
279252
margin: 0em;
280253
max-width: none;
281254
}
282255
.ui.horizontal.statistics .statistic {
283-
-webkit-box-orient: horizontal;
284-
-webkit-box-direction: normal;
285-
-ms-flex-direction: row;
286-
flex-direction: row;
287-
-webkit-box-align: center;
288-
-ms-flex-align: center;
289-
align-items: center;
256+
flex-direction: row;
257+
align-items: center;
290258
max-width: none;
291259
margin: 1em 0em;
292260
}

0 commit comments

Comments
 (0)