Browse Source

Fixes dribbble icon #4185

pull/4381/head
Jack Lukic 8 years ago
parent
commit
e19abd586b
2 changed files with 3 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 3
      src/themes/default/elements/icon.overrides

1
RELEASE-NOTES.md

@ -18,6 +18,7 @@
- **Dropdown** - `dropdown icon` no longer relies on stopping event propagation. This means using the dropdown icon will now cause other dropdowns to correctly hide. #3998
- **Dropdown** - Fixes `action: select` not working correctly since `2.2` due to incorrect use of new function signature. #4183
- **Dropdown** - Fixed typo causing selectObserver mutation observer not to disconnect **Thanks @Paklausk** #4311
- **Icon** - Fixed missing `dribbble` icon due to incorrect count of "b" (should be 3). #4185
- **Form** - `input` styles now apply to `type="file"` **thanks @coldfire79** #4074
- **Icon** - Fixes `talk` icon not working correctly **Thanks @anantogosh** #4354
- **Transition** - Removed unreachable code **Thanks @basarat** #4225

3
src/themes/default/elements/icon.overrides

@ -602,7 +602,7 @@ i.icon.apple:before { content: "\f179"; }
i.icon.windows:before { content: "\f17a"; }
i.icon.android:before { content: "\f17b"; }
i.icon.linux:before { content: "\f17c"; }
i.icon.dribble:before { content: "\f17d"; }
i.icon.dribbble:before { content: "\f17d"; }
i.icon.skype:before { content: "\f17e"; }
i.icon.foursquare:before { content: "\f180"; }
i.icon.trello:before { content: "\f181"; }
@ -833,6 +833,7 @@ i.icon.rouble:before { content: "\f158"; }
i.icon.rub:before { content: "\f158"; }
i.icon.krw:before { content: "\f159"; }
i.icon.btc:before { content: "\f15a"; }
i.icon.dribble:before { content: "\f17d"; }
i.icon.gratipay:before { content: "\f184"; }
i.icon.zip:before { content: "\f187"; }
i.icon.dot.circle.outline:before { content: "\f192"; }

Loading…
Cancel
Save