-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable accessing svg color property for IE, update readme, bump version
- Loading branch information
Showing
8 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>SVG Icon Sprite Development</title><base href="ng-svg-icon-sprite"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/x-icon" href="favicon.ico"><link href="styles.5d376d7361968661fcd5.bundle.css" rel="stylesheet"/></head><body><app-root></app-root><script type="text/javascript" src="inline.56acb15d48939681a4b1.bundle.js"></script><script type="text/javascript" src="polyfills.1d5f4c55ee6ec254f48c.bundle.js"></script><script type="text/javascript" src="main.862dae64275db188e923.bundle.js"></script></body></html> | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>SVG Icon Sprite Development</title><base href="ng-svg-icon-sprite"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/x-icon" href="favicon.ico"><link href="styles.5d376d7361968661fcd5.bundle.css" rel="stylesheet"/></head><body><app-root></app-root><script type="text/javascript" src="inline.4c0d9c335fdf512c4d4f.bundle.js"></script><script type="text/javascript" src="polyfills.1d5f4c55ee6ec254f48c.bundle.js"></script><script type="text/javascript" src="main.e9fe4a6f8b12b50e3341.bundle.js"></script></body></html> |
2 changes: 1 addition & 1 deletion
2
docs/inline.56acb15d48939681a4b1.bundle.js → docs/inline.4c0d9c335fdf512c4d4f.bundle.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
docs/main.862dae64275db188e923.bundle.js → docs/main.e9fe4a6f8b12b50e3341.bundle.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
div ::ng-deep svg.some-icon-class { | ||
height: 75px; | ||
width: 75px; | ||
fill: orange; /* IE 11 support by polyfill */ | ||
} | ||
|
||
div ::ng-deep svg.some-icon-class use { | ||
fill: orange; | ||
fill: orange; /* evergreen browser symbol styling */ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
:host use { | ||
:host use, | ||
:host svg { | ||
fill: currentColor; | ||
} |