diff options
author | Konstantin Chernenko <kb.chernenko@gmail.com> | 2023-05-24 17:08:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 17:08:18 +0200 |
commit | f55e22d5fe3f9121b7ed81d0c3f8c6a094dff45c (patch) | |
tree | 977c6b9cd32d62d8ff23e660c49ea738e96abbeb /plugins/base/src/main/resources/dokka/templates/base.ftl | |
parent | d9c8c6c0035ad59dc0a5495f3247205bb8553295 (diff) | |
download | dokka-f55e22d5fe3f9121b7ed81d0c3f8c6a094dff45c.tar.gz dokka-f55e22d5fe3f9121b7ed81d0c3f8c6a094dff45c.tar.bz2 dokka-f55e22d5fe3f9121b7ed81d0c3f8c6a094dff45c.zip |
update mobile view and some bugs (#2836)
* Fix dark theme bugs: mobile TOC is visible on 1px and has white background, menu icon is black
* Refactoring css styles for header controls
* Change header responsive layout
* Change header responsive layout
* Fix scrollable columns for any header size
* Remove main content mobile spacing
* Change style for platform filters and labels
* Fix: add burger icon into dist
* Fix: long code token in mobile view
* Fix: color in filter selector
* Fix: long token in keyValue for desktop
* Fix: add spacing for iPad Mini
* Fix: dropdown for multiple versions
* update platform brand colors
* Fix: sample spacing, blockquote, playground initialize
* Safari fix outline for platform tags
* Fix non-js main content for better SEO
* Fix outline for safari browser
* Add consistent vertical spacing for header. It should normalize subpixel artifacts and centred content.
* Update manual for custom logo
* Add comment for playground
* Hide copy button for non-js user
* fix; use google fonts
* feat; change style for platform in platform-tags
* Revert Inter as defult font
* Add breaks for CONSTANTS
* incorrect non-js script position
* less specific selector for article links
Diffstat (limited to 'plugins/base/src/main/resources/dokka/templates/base.ftl')
-rw-r--r-- | plugins/base/src/main/resources/dokka/templates/base.ftl | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/plugins/base/src/main/resources/dokka/templates/base.ftl b/plugins/base/src/main/resources/dokka/templates/base.ftl index ed19d5f3..0311f9f8 100644 --- a/plugins/base/src/main/resources/dokka/templates/base.ftl +++ b/plugins/base/src/main/resources/dokka/templates/base.ftl @@ -2,13 +2,12 @@ <#import "includes/header.ftl" as header> <#import "includes/footer.ftl" as footer> <!DOCTYPE html> -<html> +<html class="no-js"> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <@page_metadata.display/> - <@template_cmd name="pathToRoot"> - <script>var pathToRoot = "${pathToRoot}";</script> - </@template_cmd> + <@template_cmd name="pathToRoot"><script>var pathToRoot = "${pathToRoot}";</script></@template_cmd> + <script>document.documentElement.classList.replace("no-js","js");</script> <#-- This script doesn't need to be there but it is nice to have since app in dark mode doesn't 'blink' (class is added before it is rendered) --> <script>const storage = localStorage.getItem("dokka-dark-mode") @@ -29,15 +28,17 @@ <@resources/> </head> <body> - <@header.display/> -<div id="container"> - <div id="leftColumn"> - <div id="sideMenu"></div> + <div class="root"> + <@header.display/> + <div id="container"> + <div class="sidebar" id="leftColumn"> + <div class="sidebar--inner" id="sideMenu"></div> + </div> + <div id="main"> + <@content/> + <@footer.display/> + </div> + </div> </div> - <div id="main"> - <@content/> - <@footer.display/> - </div> -</div> </body> </html>
\ No newline at end of file |