Skip to content

Commit

Permalink
Updated component to version 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Jun 18, 2018
1 parent 0264c7e commit 998fc7d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 30 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 2.3.2 - June 18, 2018

- **Statistics** - Fix issue where grouped statistics would have excess bottom margin if they are `:last-child`

### Version 2.2.0 - June 26, 2016

- **Statistic** - statistic receives incorrect size when using `tiny` `large` etc inside a statistic group [#3116](https://github.com/Semantic-Org/Semantic-UI/issues/3116)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"framework"
],
"license": "MIT",
"version": "2.3.1"
"version": "2.3.2"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-statistic",
"version": "2.3.1",
"version": "2.3.2",
"title": "Semantic UI - Statistic",
"description": "Single component release of statistic",
"homepage": "http://www.semantic-ui.com",
Expand Down
49 changes: 23 additions & 26 deletions statistic.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.3.1 - Statistic
* # Semantic UI 2.3.2 - Statistic
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -64,14 +64,14 @@
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: 0em 1.5em 2em;
margin: 0em 1.5em 1em;
max-width: auto;
}
.ui.statistics {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 1em -1.5em -2em;
margin: 1em -1.5em -1em;
}

/* Clearing */
Expand All @@ -86,9 +86,6 @@
.ui.statistics:first-child {
margin-top: 0em;
}
.ui.statistics:last-child {
margin-bottom: 0em;
}


/*******************************
Expand Down Expand Up @@ -191,74 +188,74 @@
---------------*/

.ui.ten.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.ten.statistics .statistic {
min-width: 10%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.nine.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.nine.statistics .statistic {
min-width: 11.11111111%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.eight.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.eight.statistics .statistic {
min-width: 12.5%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.seven.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.seven.statistics .statistic {
min-width: 14.28571429%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.six.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.six.statistics .statistic {
min-width: 16.66666667%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.five.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.five.statistics .statistic {
min-width: 20%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.four.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.four.statistics .statistic {
min-width: 25%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.three.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.three.statistics .statistic {
min-width: 33.33333333%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.two.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.two.statistics .statistic {
min-width: 50%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}
.ui.one.statistics {
margin: 0em 0em -2em;
margin: 0em 0em -1em;
}
.ui.one.statistics .statistic {
min-width: 100%;
margin: 0em 0em 2em;
margin: 0em 0em 1em;
}

/*--------------
Expand Down
Loading

0 comments on commit 998fc7d

Please sign in to comment.