diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/hbs/common/_markdown-tips.hbs | 4 | ||||
-rw-r--r-- | server/sonar-web/src/main/less/style.less | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/hbs/common/_markdown-tips.hbs b/server/sonar-web/src/main/hbs/common/_markdown-tips.hbs index 948a55e77ac..fe5edc9fc35 100644 --- a/server/sonar-web/src/main/hbs/common/_markdown-tips.hbs +++ b/server/sonar-web/src/main/hbs/common/_markdown-tips.hbs @@ -1,4 +1,4 @@ <div class="markdown-tips"> - <a href="#" onclick="window.open(baseUrl + '/markdown/help','markdown','height=300,width=600,scrollbars=1,resizable=1');return false;">{{t 'markdown.helplink'}}</a> : + <a href="#" class="underlined-link" onclick="window.open(baseUrl + '/markdown/help','markdown','height=300,width=600,scrollbars=1,resizable=1');return false;">{{t 'markdown.helplink'}}</a> : *{{t 'bold'}}* ``{{t 'code'}}`` * {{t 'bulleted_point'}} -</div>
\ No newline at end of file +</div> diff --git a/server/sonar-web/src/main/less/style.less b/server/sonar-web/src/main/less/style.less index 93f7217dd76..76bc189793b 100644 --- a/server/sonar-web/src/main/less/style.less +++ b/server/sonar-web/src/main/less/style.less @@ -1924,9 +1924,9 @@ ul.bullet li { width: 100%; } -.markdown-tips, .markdown-tips a { - font-size: 12px; - color: #777; +.markdown-tips { + font-size: @smallFontSize; + color: @secondFontColor; } |