aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src
diff options
context:
space:
mode:
authorAndrzej Ratajczak <andrzej.ratajczak98@gmail.com>2020-06-25 12:24:04 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-06-25 14:56:46 +0200
commitdd958697b061a838aeb307de5c96ffa023c2b049 (patch)
tree2295c2ae98b7ae43148e8b34dccef05f45c34da6 /plugins/base/src
parent0b0650079ad5df7965e929cfadc0abe95882c7a9 (diff)
downloaddokka-dd958697b061a838aeb307de5c96ffa023c2b049.tar.gz
dokka-dd958697b061a838aeb307de5c96ffa023c2b049.tar.bz2
dokka-dd958697b061a838aeb307de5c96ffa023c2b049.zip
Javadoc single signature fix
Diffstat (limited to 'plugins/base/src')
-rw-r--r--plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt4
-rw-r--r--plugins/base/src/main/resources/dokka/styles/style.css3
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
index 8c7707f8..ecc7cf1a 100644
--- a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
+++ b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
@@ -370,8 +370,8 @@ open class DefaultPageCreator(
}.run {
documentable.sourceSets.forEach { sourceSet ->
this[sourceSet]?.also { tag ->
- group(sourceSets = setOf(sourceSet)) {
- header(4, (tag as CustomTagWrapper).name)
+ group(sourceSets = setOf(sourceSet), kind = ContentKind.Comment, styles = setOf(TextStyle.Block)) {
+ header(4, tag.name)
comment(tag.root)
}
}
diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css
index 118d247a..4acf6cb2 100644
--- a/plugins/base/src/main/resources/dokka/styles/style.css
+++ b/plugins/base/src/main/resources/dokka/styles/style.css
@@ -816,7 +816,8 @@ td.content {
}
.brief-with-platform-tags {
- display: inline-block;
+ display: flex;
+ flex-direction: column;
width: 100%;
}