RinteRface / shinybulma

🌐 Bulma.io for Shiny
https://rinterface.github.io/shinybulma/
Other
111 stars 15 forks source link

selectizeInput with bulma UI? #41

Open tylerlittlefield opened 1 year ago

tylerlittlefield commented 1 year ago

I would like to use shiny::selectizeInput for server side processing. Is there an easy way to apply some of the bulma UI to shiny::selectizeInput?

tylerlittlefield commented 1 year ago

Looks like I can get it to look somewhat similar with:

.control-label {
  margin-bottom: 0.5em;
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.selectize-input {
  padding: 9px 12px;
}
DivadNojnarg commented 1 year ago

Yes you can play with this: https://bulma.io/documentation/form/select/ and apply bulma classes with htmltools. Also wondering if you can’t use selectize JS on a bulma select.