diff options
author | Muhammad Hamza <47357913+hamza1311@users.noreply.github.com> | 2020-08-24 01:54:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-24 10:54:27 +0200 |
commit | 3081432fc836392abc9b013eb89103a22fb51b0f (patch) | |
tree | f059c7920f70b4f1d3541836a581ece91d13d195 /plugins/base/src/main/resources | |
parent | 8b0b4604f834ac5edd4f9569647fdfd0a966e768 (diff) | |
download | dokka-3081432fc836392abc9b013eb89103a22fb51b0f.tar.gz dokka-3081432fc836392abc9b013eb89103a22fb51b0f.tar.bz2 dokka-3081432fc836392abc9b013eb89103a22fb51b0f.zip |
Set cursor value to pointer for various buttons (#1369)
* Set cursor value to pointer nav button and copy-icon
* Set cursor to pointer for search button
Diffstat (limited to 'plugins/base/src/main/resources')
-rw-r--r-- | plugins/base/src/main/resources/dokka/styles/style.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css index f40aa33d..51165883 100644 --- a/plugins/base/src/main/resources/dokka/styles/style.css +++ b/plugins/base/src/main/resources/dokka/styles/style.css @@ -225,6 +225,7 @@ code.paragraph { display: flex; justify-content: flex-end; padding-right: 24px; + cursor: pointer; } .strikethrough { @@ -247,6 +248,10 @@ code.paragraph { line-height: 24px; } +.copy-icon { + cursor: pointer; +} + .symbol span.copy-icon path { fill: #637282; } @@ -1060,4 +1065,4 @@ div.runnablesample { box-shadow: 0 0 0 0.2em #c8e1ff; margin-top: 0.2em; margin-bottom: 0.2em; -}
\ No newline at end of file +} |