From: Stas Vilchik Date: Tue, 10 Jan 2017 09:22:33 +0000 (+0100) Subject: SONAR-8548 Workaround Edge bug when copying token X-Git-Tag: 5.6.5~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3a7eb9c4c13fbd480d61ba76310ad809c955c643;p=sonarqube.git SONAR-8548 Workaround Edge bug when copying token --- diff --git a/server/sonar-web/src/main/js/apps/account/templates/account-tokens.hbs b/server/sonar-web/src/main/js/apps/account/templates/account-tokens.hbs index 53c0d18271c..cb8ef24cd88 100644 --- a/server/sonar-web/src/main/js/apps/account/templates/account-tokens.hbs +++ b/server/sonar-web/src/main/js/apps/account/templates/account-tokens.hbs @@ -72,7 +72,7 @@ - {{newToken.token}} +
{{newToken.token}}
diff --git a/server/sonar-web/src/main/less/init/type.less b/server/sonar-web/src/main/less/init/type.less index dc62037b49e..d090e8ebcc3 100644 --- a/server/sonar-web/src/main/less/init/type.less +++ b/server/sonar-web/src/main/less/init/type.less @@ -132,3 +132,12 @@ small, .text-warning { .text-emphasis-variant(@orange); } .text-info { .text-emphasis-variant(@blue); } .text-success { .text-emphasis-variant(@green); } + + +// Font + +.monospaced { + line-height: @monoLineHeight; + font-family: @monoFontFamily; + font-size: @monoFontSize; +}