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
I feel it would be very useful if it were possible to also style a widget that is in the loading state. While it's true that a class could be applied when the loading value is set to True, and removed when set to False, allowing it to be done fully in CSS would mean there's no need to manage multiple locations where such changes could be made on a widget. Likewise, while this could be managed by the developer with a watch on loading, that then would generally require subclassing of all widgets that need this functionality; a pure-CSS solution would mean that a couple of rules could handle all sorts of widgets.
The text was updated successfully, but these errors were encountered:
It's not uncommon to have an array of widgets where, say, the border is used to help emphasise where focus is, for example:
I feel it would be very useful if it were possible to also style a widget that is in the loading state. While it's true that a class could be applied when the
loading
value is set toTrue
, and removed when set toFalse
, allowing it to be done fully in CSS would mean there's no need to manage multiple locations where such changes could be made on a widget. Likewise, while this could be managed by the developer with a watch onloading
, that then would generally require subclassing of all widgets that need this functionality; a pure-CSS solution would mean that a couple of rules could handle all sorts of widgets.The text was updated successfully, but these errors were encountered: