I have a strange problem in my ASP.NET MVC application: bootstrap glyphicons not shown in IE and Safari,but successfully shown in the Google Chrome and FireFox.
I'v checked that in less files I have right path to files with fonts(.eot and other). But it does't work in IE and Safari. When view html and css in browser inspector, I see that class for glyphicon has attribute content that striked, but in Chrome it is not striked. I'v also swith on allow font load in the IE setting but it does't help. I'm using Bootstrap 3.3.6.
I have this issue in the IE 11 and the Edge and the Safari.
Please, tell me how to figure it out?
Update.
<p class="input-group">
<input name="startDate" type="text" uib-datepicker-popup="{{format}}" ng-model="startDate" is-open="status.startDateOpened" datepicker-options="dateOptions" close-text="Close" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="openStartDate($event)"><i class="glyphicon glyphicon-calendar"></i></button>
</span>
</p>