Hi, there’s a way to remove the dark background around the image from dbc.Tooltip?
The simple code is:
dbc.Row([
html.Div([
dbc.Button(
"Data das pêntadas",
id="pêntadas",
n_clicks=0,
color='success',
className="me-2 mb-2"
),
dbc.Tooltip(
html.Img(src=dash.get_asset_url('pentadas.png'), style={'width': '300%'}),
id='pentadas-tooltip',
target="pêntadas",
# is_open=False,
placement="bottom",
style={'border': 'none'}
),
dbc.Button(
"Região de estudo",
id="seb",
n_clicks=0,
color='success',
className="me-2 mb-2"
),
dbc.Tooltip(
html.Img(src=dash.get_asset_url('seb_brasil.png'), style={'width': '300%'}),
target="seb",
placement="bottom",
),
dbc.Button(
"Limites utilizados",
id="limites",
n_clicks=0,
color='success',
className="me-2 mb-2"
),
dbc.Tooltip(
html.P('Limiar de chuva: 3.54 mm Limite ONSET: 5 pêntadas Limite DEMISE: 7 pêntadas'),
target="limites",
placement="bottom",
),
])
]),
Thanks.