Skip to content

Commit

Permalink
Fix rem sizing on icon #3782
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Mar 7, 2016
1 parent e9aca44 commit 6552df0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- **Dropdown** - Fixed issue where long dropdown text entry with `allowAdditions` would cause input to mistakingly drop to next line early #3743
- **Form** - Fixed issue where grouped `fields` and `field` would cause different margin collapse, making `fields` include larger gaps between content #3717
- **Form** - Fixed use of deprecated `size()` method in `prompt` #3655 **Thanks @SimonArdrey**
- **Icon** - Fixed issue where sizes smaller tham `small` were using with `rem` #3782
- **Input** - Fixes issue with `dropdown` or button on the left side of an `action` input not properly rounding
- **List** - Fixed issue where `relaxed` and `very relaxed` lists included unnecessary padding on the first and last items #3710
- **List** - Fixed issue where bullets would be affected by font weight, or whether the list item was a link #3715 #3721
Expand All @@ -42,7 +43,6 @@
- **Table** - Fixed issue where `striped selectable` table would not correctly show hover color on striped rows

**Enhancements**

- **Dropdown** - Using API with dropdown will now
- **Rating** - Added new setting `fireOnInit` for rating, which defaults to `false`. When set to true `onRate` will fire when rating is initialized #3712
- **Site** `@px` and `@relativepx` i.e. `@relative12px` which can be used to return EM value of pixels are now extended to `@relative40px`
Expand Down
4 changes: 3 additions & 1 deletion src/themes/default/elements/icon.variables
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@
@cornerIconStroke @cornerIconStroke 0 @black
;

@small: @relativeSmall;
@mini: 0.4em;
@tiny: 0.5em;
@small: 0.75em;
@medium: 1em;
@large: 1.5em;
@big: 2em;
Expand Down

0 comments on commit 6552df0

Please sign in to comment.