Skip to content

Commit

Permalink
Updated component to version 2.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Mar 29, 2017
1 parent e24b578 commit 98f8ba1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
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.2.9"
"version": "2.2.10"
}
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name : 'semantic:ui-segment',
summary : 'Semantic UI - Segment: Single component release',
version : '2.2.9',
version : '2.2.10',
git : 'git://github.com/Semantic-Org/UI-Segment.git',
});

Expand Down
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-segment",
"version": "2.2.9",
"version": "2.2.10",
"title": "Semantic UI - Segment",
"description": "Single component release of segment",
"homepage": "http://www.semantic-ui.com",
Expand Down
8 changes: 7 additions & 1 deletion segment.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.9 - Segment
* # Semantic UI 2.2.10 - Segment
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -233,13 +233,15 @@
/* Compact Group */
.ui.compact.segments {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
}
.ui.compact.segments .segment,
.ui.segments .compact.segment {
display: block;
-webkit-box-flex: 0;
-webkit-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
}
Expand Down Expand Up @@ -275,6 +277,7 @@
.ui.segments {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
Expand Down Expand Up @@ -340,10 +343,12 @@
/* Horizontal Group */
.ui.horizontal.segments {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
background-color: transparent;
Expand All @@ -369,6 +374,7 @@
/* Horizontal Segment */
.ui.horizontal.segments > .segment {
-webkit-box-flex: 1;
-webkit-flex: 1 1 auto;
flex: 1 1 auto;
-ms-flex: 1 1 0px;

Expand Down
Loading

0 comments on commit 98f8ba1

Please sign in to comment.