From e19abd586b15a76b7722f853a256047e48912374 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Sun, 31 Jul 2016 18:12:29 -0400 Subject: [PATCH] Fixes dribbble icon #4185 --- RELEASE-NOTES.md | 1 + src/themes/default/elements/icon.overrides | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index df6356b8b..60d3748dc 100644 --- a/RELEASE-NOTES.md +++ b/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 diff --git a/src/themes/default/elements/icon.overrides b/src/themes/default/elements/icon.overrides index 812fc8828..fd1f3efea 100644 --- a/src/themes/default/elements/icon.overrides +++ b/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"; }