From 56ff8f3f24209bc9edaece876c56bd3fde1fbf8a Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Fri, 2 Sep 2022 17:44:05 +0200 Subject: Underline `@param` tag key for more consistency (#2643) * Underline `@param` tag key for more consistency * Correct keyValue table column ratio --- plugins/base/src/main/resources/dokka/styles/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'plugins/base/src/main/resources') diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css index bbab2164..431db3b8 100644 --- a/plugins/base/src/main/resources/dokka/styles/style.css +++ b/plugins/base/src/main/resources/dokka/styles/style.css @@ -709,6 +709,12 @@ a small { display: block; } +u { + text-decoration: none; + padding-bottom: 2px; + border-bottom: 1px solid var(--border-color); +} + blockquote { border-left: 1ch solid var(--default-gray); margin: 0; @@ -1039,7 +1045,7 @@ td.content { @media print, screen and (min-width: 960px) { .keyValue { - grid-template-columns: 25% 75%; + grid-template-columns: 20% 80%; } .title-row { -- cgit