We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When opened from mobile devices, the page have features like when opened through desktop.
The other thing is it doesn't have toggle to switch between light and dark theme like desktop when opened with mobile.
Expected behaviour The page doesn't have dark/light theme switches, and the menu just plain white
Screenshots
To Reproduce Just build your applicatioin using dokkaHtmlMultiModule and display it with mobile devices
dokkaHtmlMultiModule
Dokka configuration Configuration of dokka used to reproduce the bug
tasks.withType(DokkaMultiModuleTask::class.java).configureEach { moduleName.set("DevBase") outputDirectory.set(file("$rootDir/docs/src/reference")) pluginConfiguration<DokkaBase, DokkaBaseConfiguration> { footerMessage = "© 2021 Telkom DEV" customAssets = listOf(file("logo-icon.svg")) } }
Installation
Additional context Please support GFM format too, I see many improvement in HTML format but not in GFM. Thanks
Are you willing to provide a PR? No.
The text was updated successfully, but these errors were encountered:
workaround for menu on mobile:
/* fix for dokka, wrong colors in dark-mode */ @media screen and (max-width: 759px) { :root.theme-dark #container #leftColumn { background: var(--background-color); } :root.theme-dark #leftToggler { color: var(--default-font-color); } }
Sorry, something went wrong.
The problem with the menu is fixed in #2836, and it's going to be released in 1.9.0
I've created a separate issue for the missing theme switcher button: #3000
The issue has been fixed, and it will be released in 1.9.0 🎉
Successfully merging a pull request may close this issue.
Describe the bug
When opened from mobile devices, the page have features like when opened through desktop.
The other thing is it doesn't have toggle to switch between light and dark theme like desktop when opened with mobile.
Expected behaviour
The page doesn't have dark/light theme switches, and the menu just plain white
Screenshots
To Reproduce
Just build your applicatioin using
dokkaHtmlMultiModule
and display it with mobile devicesDokka configuration
Configuration of dokka used to reproduce the bug
Installation
Additional context
Please support GFM format too, I see many improvement in HTML format but not in GFM. Thanks
Are you willing to provide a PR?
No.
The text was updated successfully, but these errors were encountered: