Skip to content

Commit

Permalink
Updated component to version 2.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Jan 29, 2018
1 parent 93c1184 commit 82ff18a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 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.13"
"version": "2.2.14"
}
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-step",
"version": "2.2.13",
"version": "2.2.14",
"title": "Semantic UI - Step",
"description": "Single component release of step",
"homepage": "http://www.semantic-ui.com",
Expand Down
19 changes: 11 additions & 8 deletions step.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.12 - Step
* # Semantic UI 2.2.14 - Step
* http://github.com/semantic-org/semantic-ui/
*
*
Expand All @@ -26,7 +26,8 @@
align-items: stretch;
margin: 1em 0em;
background: '';
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
line-height: 1.14285714em;
border-radius: 0.28571429rem;
border: 1px solid rgba(34, 36, 38, 0.15);
Expand Down Expand Up @@ -72,12 +73,15 @@
padding: 1.14285714em 2em;
background: #FFFFFF;
color: rgba(0, 0, 0, 0.87);
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0em;
border: none;
border-right: 1px solid rgba(34, 36, 38, 0.15);
-webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
-webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
}

/* Arrow */
Expand All @@ -95,8 +99,10 @@
border-style: solid;
border-color: rgba(34, 36, 38, 0.15);
border-width: 0px 1px 1px 0px;
-webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
-webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
-webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
transform: translateY(-50%) translateX(50%) rotate(-45deg);
}
Expand Down Expand Up @@ -163,7 +169,6 @@
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-ms-flex-item-align: middle;
-ms-grid-row-align: middle;
align-self: middle;
}
.ui.steps .step > .icon ~ .content {
Expand Down Expand Up @@ -202,7 +207,6 @@
text-align: center;
content: counters(ordered, ".");
-ms-flex-item-align: middle;
-ms-grid-row-align: middle;
align-self: middle;
margin-right: 1rem;
font-size: 2.5em;
Expand All @@ -213,7 +217,6 @@
.ui.ordered.steps .step > * {
display: block;
-ms-flex-item-align: middle;
-ms-grid-row-align: middle;
align-self: middle;
}

Expand Down
Loading

0 comments on commit 82ff18a

Please sign in to comment.