From: Stas Vilchik Date: Mon, 20 Oct 2014 11:23:45 +0000 (+0200) Subject: SONAR-5255 Make sure SonarQube compatible with IE 11 X-Git-Tag: 4.5.1-RC1~17 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=520415e5f77ed04d8441a2fe97f51badc5b0f8fd;p=sonarqube.git SONAR-5255 Make sure SonarQube compatible with IE 11 --- diff --git a/server/sonar-web/src/main/coffee/coding-rules/views/coding-rules-detail-view.coffee b/server/sonar-web/src/main/coffee/coding-rules/views/coding-rules-detail-view.coffee index 16ba0bb7925..7a10db2512f 100644 --- a/server/sonar-web/src/main/coffee/coding-rules/views/coding-rules-detail-view.coffee +++ b/server/sonar-web/src/main/coffee/coding-rules/views/coding-rules-detail-view.coffee @@ -335,5 +335,5 @@ define [ isEditable: (@options.app.canWrite and (isManual or isCustom)) qualityProfilesVisible: qualityProfilesVisible subcharacteristic: @options.app.getSubcharacteristicName(@model.get 'debtSubChar') - createdAt: new Date(@model.get 'createdAt') + createdAt: moment(@model.get 'createdAt').toDate() allTags: _.union @model.get('sysTags'), @model.get('tags') diff --git a/server/sonar-web/src/main/less/icons.less b/server/sonar-web/src/main/less/icons.less index fa174f8b19b..1212069bb00 100644 --- a/server/sonar-web/src/main/less/icons.less +++ b/server/sonar-web/src/main/less/icons.less @@ -271,7 +271,9 @@ a[class^="icon-"], a[class*=" icon-"] { &:after { content: "\e60d"; position: absolute; - top: 0; left: 0; +// top: 0; + left: 0; + margin-top: 2px; } &.icon-checkbox-single:after { content: "\e60e"; }