diff options
Diffstat (limited to 'plugins/base/src/main')
-rw-r--r-- | plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt | 2 | ||||
-rw-r--r-- | plugins/base/src/main/resources/dokka/styles/style.css | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt b/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt index b586b95e..5bfe5f64 100644 --- a/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt +++ b/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt @@ -248,7 +248,7 @@ open class HtmlRenderer( } }.stripDiv() sourceSet to createHTML(prettyPrint = false).prepareForTemplates() - .div(classes = "content sourceset-depenent-content") { + .div(classes = "content sourceset-dependent-content") { if (counter++ == 0) attributes["data-active"] = "" attributes["data-togglable"] = sourceSet.sourceSetIDs.merged.toString() unsafe { diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css index 7e9761a6..a2b2c995 100644 --- a/plugins/base/src/main/resources/dokka/styles/style.css +++ b/plugins/base/src/main/resources/dokka/styles/style.css @@ -204,18 +204,18 @@ html ::-webkit-scrollbar-thumb { flex-direction: column; } -.cover .platform-hinted.with-platform-tabs .sourceset-depenent-content > .block ~ .symbol { +.cover .platform-hinted.with-platform-tabs .sourceset-dependent-content > .block ~ .symbol { padding-top: 16px; padding-left: 0; } -.cover .sourceset-depenent-content > .block { +.cover .sourceset-dependent-content > .block { padding: 16px 0; font-size: 18px; line-height: 28px; } -.cover .platform-hinted.with-platform-tabs .sourceset-depenent-content > .block { +.cover .platform-hinted.with-platform-tabs .sourceset-dependent-content > .block { padding: 0; font-size: var(--default-font-size); } @@ -977,8 +977,8 @@ td.content { padding-bottom: 8px; } -.table-row .with-platform-tabs .sourceset-depenent-content .brief, -.table-row .with-platform-tabs .sourceset-depenent-content .inline-comment { +.table-row .with-platform-tabs .sourceset-dependent-content .brief, +.table-row .with-platform-tabs .sourceset-dependent-content .inline-comment { padding: 8px; } |