diff options
author | Filip Zybała <fzybala@virtuslab.com> | 2020-05-21 09:51:54 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-05-28 16:07:46 +0200 |
commit | 0f1c461d20336444bc667713954ea2879cc0a396 (patch) | |
tree | d1adc3fa2b4178f78147bde1fa0e06875d4b1930 /plugins/base/src/main/resources/dokka/styles | |
parent | 5f9299b074355e3f636da6eb6e1f9283f06ab8c7 (diff) | |
download | dokka-0f1c461d20336444bc667713954ea2879cc0a396.tar.gz dokka-0f1c461d20336444bc667713954ea2879cc0a396.tar.bz2 dokka-0f1c461d20336444bc667713954ea2879cc0a396.zip |
Added filtering to HTML pages
Diffstat (limited to 'plugins/base/src/main/resources/dokka/styles')
-rw-r--r-- | plugins/base/src/main/resources/dokka/styles/style.css | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css index 671dfe8a..d9927046 100644 --- a/plugins/base/src/main/resources/dokka/styles/style.css +++ b/plugins/base/src/main/resources/dokka/styles/style.css @@ -62,6 +62,11 @@ padding: 24px 0 } +.cover { + display: flex; + flex-direction: column; +} + .tabbedcontent { padding: 24px 0; } @@ -483,9 +488,11 @@ footer { display: flex; flex-direction: row; padding: 4px 8px; - height: 16px; + height: 24px; border-radius: 100px; - + box-sizing: border-box; + border: 1px solid transparent; + margin: 2px; font-family: Inter, Arial, sans-serif; font-size: 12px; font-weight: 400; @@ -494,6 +501,7 @@ footer { line-height: normal; letter-spacing: normal; text-align: center; + outline: none; color: #fff @@ -528,6 +536,27 @@ footer { color: white; } +.filter-section { + display: flex; + display: flex; + flex-direction: row; + align-self: flex-end; + min-height: 30px; +} + +.platform-selector:hover { + border: 1px solid #A6AFBA !important; +} + +[data-filterable-current=''] { + display: none !important; +} +.platform-selector:not([data-active]) { + border: 1px solid #DADFE6; + background-color: white; + color: #637282; +} + td.content { padding-left: 24px; padding-top: 16px; |