diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-11-01 16:44:51 +0100 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-11-01 17:33:51 +0100 |
commit | 8547398bd05a6d42ab22e71e0650384df8e98439 (patch) | |
tree | 01eeac524eb1c0f45e0434abc8a21389cd30a008 /server | |
parent | 44c99f89c63a9beb0071989c2f66e77be58f90dd (diff) | |
download | sonarqube-8547398bd05a6d42ab22e71e0650384df8e98439.tar.gz sonarqube-8547398bd05a6d42ab22e71e0650384df8e98439.zip |
fix fonts path
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/app/styles/init/icons.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/app/styles/init/icons.css b/server/sonar-web/src/main/js/app/styles/init/icons.css index 52920bdccf9..7fdffc1f0be 100644 --- a/server/sonar-web/src/main/js/app/styles/init/icons.css +++ b/server/sonar-web/src/main/js/app/styles/init/icons.css @@ -19,11 +19,11 @@ */ @font-face { font-family: 'sonar'; - src: url('../../fonts/sonar-5.2.eot?'); - src: url('../../fonts/sonar-5.2.eot?#iefix') format('embedded-opentype'), - url('../../fonts/sonar-5.2.woff?') format('woff'), - url('../../fonts/sonar-5.2.ttf?') format('truetype'), - url('../../fonts/sonar-5.2.svg?#sonar') format('svg'); + src: url('../fonts/sonar-5.2.eot?'); + src: url('../fonts/sonar-5.2.eot?#iefix') format('embedded-opentype'), + url('../fonts/sonar-5.2.woff?') format('woff'), + url('../fonts/sonar-5.2.ttf?') format('truetype'), + url('../fonts/sonar-5.2.svg?#sonar') format('svg'); font-weight: normal; font-style: normal; } |