From 3a7eb9c4c13fbd480d61ba76310ad809c955c643 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 10 Jan 2017 10:22:33 +0100 Subject: [PATCH] SONAR-8548 Workaround Edge bug when copying token --- .../main/js/apps/account/templates/account-tokens.hbs | 2 +- server/sonar-web/src/main/less/init/type.less | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) 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; +} -- 2.39.5