Open
Description
Hi team,
We are using the Superhero theme which is really great!
Following upgrading from shiny 0.7.1 to 0.8.1 the input selectize ui element no longer renders correctly:
- Previously it renders with a white background and selected elements with a nice grey boarder in the selection field.
- Currently it renders with the theme background colour, the selected elements have the same colour, there is a white line between selected fields, and the selected fields are not easily visible.
Versions:
shiny: 0.8.1
shinyswatch: 0.5.1
Minimal Example:
import shiny
import shinyswatch
def server(_, __, ___):
"""Shiny main server"""
UI = shiny.ui.page_navbar(
shinyswatch.theme.superhero(),
shiny.ui.nav_panel(
"dashboard",
shiny.ui.input_selectize(
"id",
"labels",
[1, 2, 3, 4],
multiple=True,
),
)
)
app = shiny.App(UI, server)
Metadata
Metadata
Assignees
Labels
No labels