diff options
author | Konstantin Chernenko <kb.chernenko@gmail.com> | 2023-05-30 22:23:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 22:23:42 +0200 |
commit | 0cad056d84bf1dbe285ca008be17ca5fbb224818 (patch) | |
tree | f68164b0c0cfce822565a53d46d295ff6562edfc /plugins | |
parent | e715664ecfbcf3a24e2b85f5751d1d16a0001aa8 (diff) | |
download | dokka-0cad056d84bf1dbe285ca008be17ca5fbb224818.tar.gz dokka-0cad056d84bf1dbe285ca008be17ca5fbb224818.tar.bz2 dokka-0cad056d84bf1dbe285ca008be17ca5fbb224818.zip |
Incorrectly handles a click on a method and other elements in the mobile version (#3021)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/base/src/main/resources/dokka/styles/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css index 5a49842d..30f3b176 100644 --- a/plugins/base/src/main/resources/dokka/styles/style.css +++ b/plugins/base/src/main/resources/dokka/styles/style.css @@ -1159,6 +1159,12 @@ td.content { fill: var(--hover-link-color); } +@media (hover: none) { + .main-subrow .anchor-icon { + display: none; + } +} + .main-subrow .anchor-wrapper { position: relative; width: 24px; |