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
If you use Bootswatch's Quartz theme, the input fields have a white background and can't be read.
If you click on the field, it renders properly and you can read the text.
It should be possible to use a theme and have it render the same way it does on bootswatch.com.
Create a new app with the Quartz theme. I discovered the issue with the JDL below.
application { config { baseName gateway reactive true packageName org.jhipster.gateway applicationType gateway authenticationType oauth2 buildTool gradle clientFramework angular clientTheme quartz prodDatabaseType postgresql serviceDiscoveryType consul testFrameworks [cypress] microfrontends [blog, store] } } application { config { baseName blog reactive true packageName org.jhipster.blog applicationType microservice authenticationType oauth2 buildTool gradle clientFramework angular databaseType neo4j enableHibernateCache false serverPort 8081 serviceDiscoveryType consul testFrameworks [cypress] } entities Blog, Post, Tag } application { config { baseName store reactive true packageName org.jhipster.store applicationType microservice authenticationType oauth2 buildTool gradle clientFramework angular databaseType mongodb enableHibernateCache false serverPort 8082 serviceDiscoveryType consul testFrameworks [cypress] } entities Product } entity Blog { name String required minlength(3) handle String required minlength(2) } entity Post { title String required content TextBlob required date Instant required } entity Tag { name String required minlength(2) } entity Product { title String required price BigDecimal required min(0) image ImageBlob } relationship ManyToOne { Blog{user(login)} to User with builtInEntity Post{blog(name)} to Blog } relationship ManyToMany { Post{tag(name)} to Tag{post} } paginate Post, Tag with infinite-scroll paginate Product with pagination deployment { deploymentType docker-compose serviceDiscoveryType consul appsFolders [gateway, blog, store] dockerRepositoryName "mraible" } deployment { deploymentType kubernetes appsFolders [gateway, blog, store] clusteredDbApps [store] kubernetesNamespace demo kubernetesUseDynamicStorage true kubernetesStorageClassName "" serviceDiscoveryType consul dockerRepositoryName "mraible" }
main branch
main
The text was updated successfully, but these errors were encountered:
qmonmert
Successfully merging a pull request may close this issue.
Overview of the issue
If you use Bootswatch's Quartz theme, the input fields have a white background and can't be read.
If you click on the field, it renders properly and you can read the text.
Motivation for or Use Case
It should be possible to use a theme and have it render the same way it does on bootswatch.com.
Reproduce the error
Create a new app with the Quartz theme. I discovered the issue with the JDL below.
JHipster Version(s)
main
branchThe text was updated successfully, but these errors were encountered: