aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-11-13 10:18:17 +0100
committerStas Vilchik <vilchiks@gmail.com>2015-11-13 10:21:22 +0100
commit3348f196c986cfc9db1cfeb2a57ae847c2f4df63 (patch)
treea7b229a419abb8c56c0bbc1388228ab7cc1eeca5 /server/sonar-web
parent664f867dd6fc0fb9fc6c50d337f7e99a0be611f8 (diff)
downloadsonarqube-3348f196c986cfc9db1cfeb2a57ae847c2f4df63.tar.gz
sonarqube-3348f196c986cfc9db1cfeb2a57ae847c2f4df63.zip
fix escaping of encoded svg icons
Diffstat (limited to 'server/sonar-web')
-rw-r--r--server/sonar-web/gulp/styles.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/gulp/styles.js b/server/sonar-web/gulp/styles.js
index a027a45cd0e..f807d7adb1d 100644
--- a/server/sonar-web/gulp/styles.js
+++ b/server/sonar-web/gulp/styles.js
@@ -34,7 +34,7 @@ module.exports.styles = function (output, production, dev) {
'IE 11'
]
}))
- .pipe(gulpif(production, minifyCss()))
+ .pipe(gulpif(production, minifyCss({ rebase: false })))
.pipe(concat('sonar.css'))
.pipe(gulpif(dev, sourcemaps.write({ includeContent: true })))
.pipe(gulp.dest(path.join(output, 'css')));