Skip to content

Commit

Permalink
Adjust step variables, fix pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Apr 10, 2015
1 parent 6a7b7ed commit b3749aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions RELEASE-NOTES.md
Expand Up @@ -9,6 +9,7 @@
- **Headers** - Added new header type `sub header`, useful for displaying small headers alongside text content. See examples [in the header docs](http://www.semantic-ui.com/elements/header.html#sub-headers)
- **Dropdown** - Added new dropdown variation `scrolling dropdown` and `scrolling menu`, see docs or try it out with the language menu in the navigation bar
- **Dimmer** - Dimmers now have a `blurring` variation which apply a glass-like effect when dimmed
- **Steps** - Steps can now be attached to other UI like `segment`

**Major Changes**
- **Colors** - Global colors defaults have been adjusted to improve contrast with white text
Expand Down Expand Up @@ -128,6 +129,7 @@
- **Search** - Search will no longer incorrectly produce an error when API settings are passed through metadata
- **Search** - Fixed `onSelect` returning the first term that matches the beginining of the selected value not the exact value.
- **Search** - Search API calls now use the same level debug settings as search
- **Steps** - Fixes bug where `ordered steps` had smaller numbers in `IE10`
- **Steps** - Fixed bug where `stackable steps` were not working correctly
- **Sticky** - Fix issue with sticky content scroll css transition causing element to scroll too slowly when cannot fit on screen.
- **Sticky** - Fixed issue with sticky content animating width on display in some cases.
Expand Down
3 changes: 2 additions & 1 deletion src/definitions/elements/step.less
Expand Up @@ -80,6 +80,7 @@


.ui.steps .step:after {
display: none;
position: absolute;
z-index: 2;
content: '';
Expand Down Expand Up @@ -218,7 +219,7 @@


/* Active Arrow */
.ui.vertical.steps .active.step:after {
.ui.steps .active.step:after {
display: block;
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/default/elements/step.variables
Expand Up @@ -31,7 +31,7 @@

/* Icon */
@iconDistance: 1rem;
@iconSize: 2.75em;
@iconSize: 2.5em;
@iconAlign: middle;

/* Title */
Expand Down

0 comments on commit b3749aa

Please sign in to comment.