I have looked all throughout and searched for a solution to changing the blue border that displays when the input box is active.I would like to change it to “warning”. I have also looked at the Dash Mantine input but there appears to be no option for this.
Is there a way to change this?
import dash_bootstrap_components as dbc
from dash import Input, Output, html
text_input = html.Div(
[
dbc.Input(id="input", placeholder="Type something...", type="text"),
html.Br(),
html.P(id="output"),
]
)
@app.callback(Output("output", "children"), [Input("input", "value")])
def output_text(value):
return value