Skip to content

Commit 38c4090

Browse files
Updated component to version 2.2.7
1 parent 1729838 commit 38c4090

5 files changed

+8
-24
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.6"
18+
"version": "2.2.7"
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.6',
5+
version : '2.2.7',
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.6",
3+
"version": "2.2.7",
44
"title": "Semantic UI - Statistic",
55
"description": "Single component release of statistic",
66
"homepage": "http://www.semantic-ui.com",

statistic.css

+3-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.6 - Statistic
2+
* # Semantic UI 2.2.7 - Statistic
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -17,12 +17,10 @@
1717
/* Standalone */
1818
.ui.statistic {
1919
display: -webkit-inline-box;
20-
display: -webkit-inline-flex;
2120
display: -ms-inline-flexbox;
2221
display: inline-flex;
2322
-webkit-box-orient: vertical;
2423
-webkit-box-direction: normal;
25-
-webkit-flex-direction: column;
2624
-ms-flex-direction: column;
2725
flex-direction: column;
2826
margin: 1em 0em;
@@ -47,37 +45,30 @@
4745
/* Grouped */
4846
.ui.statistics {
4947
display: -webkit-box;
50-
display: -webkit-flex;
5148
display: -ms-flexbox;
5249
display: flex;
5350
-webkit-box-align: start;
54-
-webkit-align-items: flex-start;
5551
-ms-flex-align: start;
5652
align-items: flex-start;
57-
-webkit-flex-wrap: wrap;
58-
-ms-flex-wrap: wrap;
59-
flex-wrap: wrap;
53+
-ms-flex-wrap: wrap;
54+
flex-wrap: wrap;
6055
}
6156
.ui.statistics > .statistic {
6257
display: -webkit-inline-box;
63-
display: -webkit-inline-flex;
6458
display: -ms-inline-flexbox;
6559
display: inline-flex;
6660
-webkit-box-flex: 0;
67-
-webkit-flex: 0 1 auto;
6861
-ms-flex: 0 1 auto;
6962
flex: 0 1 auto;
7063
-webkit-box-orient: vertical;
7164
-webkit-box-direction: normal;
72-
-webkit-flex-direction: column;
7365
-ms-flex-direction: column;
7466
flex-direction: column;
7567
margin: 0em 1.5em 2em;
7668
max-width: auto;
7769
}
7870
.ui.statistics {
7971
display: -webkit-box;
80-
display: -webkit-flex;
8172
display: -ms-flexbox;
8273
display: flex;
8374
margin: 1em -1.5em -2em;
@@ -277,19 +268,15 @@
277268
.ui.horizontal.statistic {
278269
-webkit-box-orient: horizontal;
279270
-webkit-box-direction: normal;
280-
-webkit-flex-direction: row;
281271
-ms-flex-direction: row;
282272
flex-direction: row;
283273
-webkit-box-align: center;
284-
-webkit-align-items: center;
285274
-ms-flex-align: center;
286-
-ms-grid-row-align: center;
287275
align-items: center;
288276
}
289277
.ui.horizontal.statistics {
290278
-webkit-box-orient: vertical;
291279
-webkit-box-direction: normal;
292-
-webkit-flex-direction: column;
293280
-ms-flex-direction: column;
294281
flex-direction: column;
295282
margin: 0em;
@@ -298,13 +285,10 @@
298285
.ui.horizontal.statistics .statistic {
299286
-webkit-box-orient: horizontal;
300287
-webkit-box-direction: normal;
301-
-webkit-flex-direction: row;
302288
-ms-flex-direction: row;
303289
flex-direction: row;
304290
-webkit-box-align: center;
305-
-webkit-align-items: center;
306291
-ms-flex-align: center;
307-
-ms-grid-row-align: center;
308292
align-items: center;
309293
max-width: none;
310294
margin: 1em 0em;

0 commit comments

Comments
 (0)