You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of Ipywidgets 8.0, Ipywidgets removes the class attribute from HTML in the description attribute (#2785). This seems like important functionality.
i = interactive(func, val=False)
circle='<span class="projectname_circle" style="background:#d73229"></span>' if circle is not None else ''
i.children[0].description_allow_html = True
i.children[0].description = circle+'Title'
As of Ipywidgets 8.0, Ipywidgets removes the
class
attribute from HTML in thedescription
attribute (#2785). This seems like important functionality.The resulting markup:
The text was updated successfully, but these errors were encountered: