From c885e971f7e68a7f563a9e56f962b7b96095886c Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 9 Dec 2014 16:22:51 -0500 Subject: [PATCH] Fix ordered step alignment --- RELEASE-NOTES.md | 7 +++++++ src/definitions/elements/step.less | 3 ++- src/themes/default/elements/step.variables | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e9463c40f..e2ec6c9ce 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,12 @@ ## RELEASE NOTES +### Version 1.2.1 - December 09, 2014 + +**Bugs** + +- **Step** - Fix issue with completed ordered step icon alignment + + ### Version 1.2.0 - December 08, 2014 [Browse Closed Issues](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A1.1.3+is%3Aclosed) diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less index 16c05362f..77012cac6 100755 --- a/src/definitions/elements/step.less +++ b/src/definitions/elements/step.less @@ -109,10 +109,11 @@ .ui.ordered.steps .step:before { display: table-cell; position: static; + content: counters(ordered, "."); + vertical-align: @iconVerticalAlign; padding-right: @iconDistance; font-size: @iconSize; counter-increment: ordered; - content: counters(ordered, "."); } .ui.ordered.steps .step > * { diff --git a/src/themes/default/elements/step.variables b/src/themes/default/elements/step.variables index 7f2255448..d923d38a0 100644 --- a/src/themes/default/elements/step.variables +++ b/src/themes/default/elements/step.variables @@ -25,7 +25,7 @@ @backgroundColor: #FFFFFF; @background: @backgroundColor; @borderRadius: 0em; -@boxShadow: 0px 0px 0px 1px @borderColor; +@boxShadow: 0px 0px 0px 1px @solidBorderColor; /* Icon */ @iconDistance: 0.6em;