Browse Source

Adjust step variables, fix pointers

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

2
RELEASE-NOTES.md

@ -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
@ -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.

3
src/definitions/elements/step.less

@ -80,6 +80,7 @@
.ui.steps .step:after {
display: none;
position: absolute;
z-index: 2;
content: '';
@ -218,7 +219,7 @@
/* Active Arrow */
.ui.vertical.steps .active.step:after {
.ui.steps .active.step:after {
display: block;
}

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

@ -31,7 +31,7 @@
/* Icon */
@iconDistance: 1rem;
@iconSize: 2.75em;
@iconSize: 2.5em;
@iconAlign: middle;
/* Title */

Loading…
Cancel
Save