Skip to content

Commit

Permalink
Add arrow indicator icon (#15)
Browse files Browse the repository at this point in the history
* Add arrow indicator icon

* Bump up version
  • Loading branch information
Christine Schatz authored Mar 19, 2019
1 parent 52bf4bf commit 07d70f8
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 8 deletions.
1 change: 1 addition & 0 deletions dist/fonts/fender-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dist/fonts/fender-icons.ttf
Binary file not shown.
Binary file modified dist/fonts/fender-icons.woff
Binary file not shown.
3 changes: 2 additions & 1 deletion dist/icon-library.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@font-face { font-family: 'fender-icons'; src: url( 'fonts/fender-icons.ttf?3ewomn' ) format( 'truetype' ), url( 'fonts/fender-icons.woff?3ewomn' ) format( 'woff' ), url( 'fonts/fender-icons.svg?3ewomn#fender-icons' ) format( 'svg' ); font-weight: normal; font-style: normal; }
@font-face { font-family: 'fender-icons'; src: url( 'fonts/fender-icons.ttf?45ccct' ) format( 'truetype' ), url( 'fonts/fender-icons.woff?45ccct' ) format( 'woff' ), url( 'fonts/fender-icons.svg?45ccct#fender-icons' ) format( 'svg' ); font-weight: normal; font-style: normal; }
[class^="icon-"], [class*=" icon-"] {/* use !important to prevent issues with browser extensions that change fonts */ font-family: 'fender-icons' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.icon-arrow-indicator:before { content: "\e986"; }
.icon-elipsis-alt:before { content: "\e985"; }
.icon-search-thin:before { content: "\e983"; }
.icon-elipsis-more:before { content: "\e984"; }
Expand Down
2 changes: 1 addition & 1 deletion dist/icon-library.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "icon-library",
"version": "1.4.0",
"version": "1.5.0",
"description": "Fender Icon Library",
"main": "dist/icon-library.css",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion selection.json

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src-icons/arrow-indicator.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/fonts/fender-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/fonts/fender-icons.ttf
Binary file not shown.
Binary file modified src/fonts/fender-icons.woff
Binary file not shown.
9 changes: 6 additions & 3 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@font-face {
font-family: 'fender-icons';
src:
url('fonts/fender-icons.ttf?3ewomn') format('truetype'),
url('fonts/fender-icons.woff?3ewomn') format('woff'),
url('fonts/fender-icons.svg?3ewomn#fender-icons') format('svg');
url('fonts/fender-icons.ttf?45ccct') format('truetype'),
url('fonts/fender-icons.woff?45ccct') format('woff'),
url('fonts/fender-icons.svg?45ccct#fender-icons') format('svg');
font-weight: normal;
font-style: normal;
}
Expand All @@ -23,6 +23,9 @@
-moz-osx-font-smoothing: grayscale;
}

.icon-arrow-indicator:before {
content: "\e986";
}
.icon-elipsis-alt:before {
content: "\e985";
}
Expand Down

0 comments on commit 07d70f8

Please sign in to comment.