Skip to content

Commit 5357929

Browse files
committed
resolved #63
1 parent 2444884 commit 5357929

File tree

9 files changed

+42
-34
lines changed

9 files changed

+42
-34
lines changed

angular/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
"sweetalert": "^1.1.3",
6666
"toastr": "^2.1.2",
6767
"ts-helpers": "^1.1.2",
68+
"web-animations-js": "^2.3.1",
6869
"zone.js": "0.8.7"
6970
},
7071
"devDependencies": {

angular/src/polyfills.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@
1919
*/
2020

2121
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
22-
// import 'core-js/es6/symbol';
23-
// import 'core-js/es6/object';
24-
// import 'core-js/es6/function';
25-
// import 'core-js/es6/parse-int';
26-
// import 'core-js/es6/parse-float';
27-
// import 'core-js/es6/number';
28-
// import 'core-js/es6/math';
29-
// import 'core-js/es6/string';
30-
// import 'core-js/es6/date';
31-
// import 'core-js/es6/array';
32-
// import 'core-js/es6/regexp';
33-
// import 'core-js/es6/map';
34-
// import 'core-js/es6/set';
22+
import 'core-js/es6/symbol';
23+
import 'core-js/es6/object';
24+
import 'core-js/es6/function';
25+
import 'core-js/es6/parse-int';
26+
import 'core-js/es6/parse-float';
27+
import 'core-js/es6/number';
28+
import 'core-js/es6/math';
29+
import 'core-js/es6/string';
30+
import 'core-js/es6/date';
31+
import 'core-js/es6/array';
32+
import 'core-js/es6/regexp';
33+
import 'core-js/es6/map';
34+
import 'core-js/es6/set';
3535

3636
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
3737
// import 'classlist.js'; // Run `npm install --save classlist.js`.
3838

3939
/** IE10 and IE11 requires the following to support `@angular/animation`. */
40-
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
40+
import 'web-animations-js'; // Run `npm install --save web-animations-js`.
4141

4242

4343
/** Evergreen browsers require these. **/
Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
/* fallback */
22
@font-face {
3-
font-family: 'Material Icons';
4-
font-style: normal;
5-
font-weight: 400;
6-
src: local('Material Icons'), local('MaterialIcons-Regular'), url(materialicons.woff2) format('woff2');
3+
font-family: 'Material Icons';
4+
font-style: normal;
5+
font-weight: 400;
6+
src: url(materialicons.eot); /* For IE6-8 */
7+
src: local('Material Icons'), local('MaterialIcons-Regular'), url(materialicons.woff2) format('woff2'), url(materialicons.woff) format('woff'), url(materialicons.ttf) format('truetype');
78
}
89

910
.material-icons {
10-
font-family: 'Material Icons';
11-
font-weight: normal;
12-
font-style: normal;
13-
font-size: 24px;
14-
line-height: 1;
15-
letter-spacing: normal;
16-
text-transform: none;
17-
display: inline-block;
18-
white-space: nowrap;
19-
word-wrap: normal;
20-
direction: ltr;
21-
-webkit-font-feature-settings: 'liga';
22-
-webkit-font-smoothing: antialiased;
23-
}
11+
font-family: 'Material Icons';
12+
font-weight: normal;
13+
font-style: normal;
14+
font-size: 24px; /* Preferred icon size */
15+
display: inline-block;
16+
line-height: 1;
17+
text-transform: none;
18+
letter-spacing: normal;
19+
word-wrap: normal;
20+
white-space: nowrap;
21+
direction: ltr;
22+
/* Support for all WebKit browsers. */
23+
-webkit-font-smoothing: antialiased;
24+
/* Support for Safari and Chrome. */
25+
text-rendering: optimizeLegibility;
26+
/* Support for Firefox. */
27+
-moz-osx-font-smoothing: grayscale;
28+
/* Support for IE. */
29+
font-feature-settings: 'liga';
30+
}

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/wwwroot/view-resources/Views/_Bundles/account-layout.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/wwwroot/view-resources/Views/_Bundles/shared-layout.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)