Skip to content

Commit 91d5258

Browse files
Updated component to version 2.2.10
1 parent 3ab6722 commit 91d5258

5 files changed

+24
-8
lines changed

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

package.js

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

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

statistic.css

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.8 - Statistic
2+
* # Semantic UI 2.2.10 - Statistic
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -17,10 +17,12 @@
1717
/* Standalone */
1818
.ui.statistic {
1919
display: -webkit-inline-box;
20+
display: -webkit-inline-flex;
2021
display: -ms-inline-flexbox;
2122
display: inline-flex;
2223
-webkit-box-orient: vertical;
2324
-webkit-box-direction: normal;
25+
-webkit-flex-direction: column;
2426
-ms-flex-direction: column;
2527
flex-direction: column;
2628
margin: 1em 0em;
@@ -45,30 +47,37 @@
4547
/* Grouped */
4648
.ui.statistics {
4749
display: -webkit-box;
50+
display: -webkit-flex;
4851
display: -ms-flexbox;
4952
display: flex;
5053
-webkit-box-align: start;
54+
-webkit-align-items: flex-start;
5155
-ms-flex-align: start;
5256
align-items: flex-start;
53-
-ms-flex-wrap: wrap;
54-
flex-wrap: wrap;
57+
-webkit-flex-wrap: wrap;
58+
-ms-flex-wrap: wrap;
59+
flex-wrap: wrap;
5560
}
5661
.ui.statistics > .statistic {
5762
display: -webkit-inline-box;
63+
display: -webkit-inline-flex;
5864
display: -ms-inline-flexbox;
5965
display: inline-flex;
6066
-webkit-box-flex: 0;
67+
-webkit-flex: 0 1 auto;
6168
-ms-flex: 0 1 auto;
6269
flex: 0 1 auto;
6370
-webkit-box-orient: vertical;
6471
-webkit-box-direction: normal;
72+
-webkit-flex-direction: column;
6573
-ms-flex-direction: column;
6674
flex-direction: column;
6775
margin: 0em 1.5em 2em;
6876
max-width: auto;
6977
}
7078
.ui.statistics {
7179
display: -webkit-box;
80+
display: -webkit-flex;
7281
display: -ms-flexbox;
7382
display: flex;
7483
margin: 1em -1.5em -2em;
@@ -268,15 +277,19 @@
268277
.ui.horizontal.statistic {
269278
-webkit-box-orient: horizontal;
270279
-webkit-box-direction: normal;
280+
-webkit-flex-direction: row;
271281
-ms-flex-direction: row;
272282
flex-direction: row;
273283
-webkit-box-align: center;
284+
-webkit-align-items: center;
274285
-ms-flex-align: center;
286+
-ms-grid-row-align: center;
275287
align-items: center;
276288
}
277289
.ui.horizontal.statistics {
278290
-webkit-box-orient: vertical;
279291
-webkit-box-direction: normal;
292+
-webkit-flex-direction: column;
280293
-ms-flex-direction: column;
281294
flex-direction: column;
282295
margin: 0em;
@@ -285,10 +298,13 @@
285298
.ui.horizontal.statistics .statistic {
286299
-webkit-box-orient: horizontal;
287300
-webkit-box-direction: normal;
301+
-webkit-flex-direction: row;
288302
-ms-flex-direction: row;
289303
flex-direction: row;
290304
-webkit-box-align: center;
305+
-webkit-align-items: center;
291306
-ms-flex-align: center;
307+
-ms-grid-row-align: center;
292308
align-items: center;
293309
max-width: none;
294310
margin: 1em 0em;

0 commit comments

Comments
 (0)