diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-07-17 12:41:56 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-07-17 12:50:33 +0600 |
commit | 38fe0c00e056eb42f1abfde4b652f1352792b7b4 (patch) | |
tree | 402765422535dcade796aa2f10eb9e2e72a924d1 /server | |
parent | 6749ac98969babae70241cdbe4ba80d71d5380c7 (diff) | |
download | sonarqube-38fe0c00e056eb42f1abfde4b652f1352792b7b4.tar.gz sonarqube-38fe0c00e056eb42f1abfde4b652f1352792b7b4.zip |
SONAR-5333 Highligh markdown links
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; } |