Browse Source

Fix ordered step alignment

pull/1481/head
jlukic 10 years ago
parent
commit
c885e971f7
3 changed files with 10 additions and 2 deletions
  1. 7
      RELEASE-NOTES.md
  2. 3
      src/definitions/elements/step.less
  3. 2
      src/themes/default/elements/step.variables

7
RELEASE-NOTES.md

@ -1,5 +1,12 @@
## RELEASE NOTES ## 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 ### 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) [Browse Closed Issues](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A1.1.3+is%3Aclosed)

3
src/definitions/elements/step.less

@ -109,10 +109,11 @@
.ui.ordered.steps .step:before { .ui.ordered.steps .step:before {
display: table-cell; display: table-cell;
position: static; position: static;
content: counters(ordered, ".");
vertical-align: @iconVerticalAlign;
padding-right: @iconDistance; padding-right: @iconDistance;
font-size: @iconSize; font-size: @iconSize;
counter-increment: ordered; counter-increment: ordered;
content: counters(ordered, ".");
} }
.ui.ordered.steps .step > * { .ui.ordered.steps .step > * {

2
src/themes/default/elements/step.variables

@ -25,7 +25,7 @@
@backgroundColor: #FFFFFF; @backgroundColor: #FFFFFF;
@background: @backgroundColor; @background: @backgroundColor;
@borderRadius: 0em; @borderRadius: 0em;
@boxShadow: 0px 0px 0px 1px @borderColor; @boxShadow: 0px 0px 0px 1px @solidBorderColor;
/* Icon */ /* Icon */
@iconDistance: 0.6em; @iconDistance: 0.6em;

|||||||
100:0
Loading…
Cancel
Save