KT-22815: Use gray color for filename

This commit is contained in:
Simon Ogorodnik
2018-07-09 20:22:28 +03:00
parent 84b299d7dc
commit 1918836340
2 changed files with 4 additions and 4 deletions
@@ -391,9 +391,9 @@ class KotlinQuickDocumentationProvider : AbstractDocumentationProvider() {
if (!fqName.isRoot) {
append(" ")
}
append("(")
append(fileName)
append(")")
wrap("<font color=\"808080\"><i>", "</i></font>") {
append(fileName)
}
}
if (fileName != null || !fqName.isRoot) {
append("<br>")
@@ -166,7 +166,7 @@ object KDocRenderer {
private fun renderTag(tag: KDocTag?, title: String, to: StringBuilder) {
if (tag != null) {
to.renderSection(title) {
markdownToHtml(tag.getContent())
append(markdownToHtml(tag.getContent()))
}
}
}