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
Some elements like toolbars and notifications are not properly colored.
The reason is: those elements use their own CSS property that fallback to the JupyterLab theme CSS property. Unfortunately as we set the CSS properties on the body element, those properties are not updated and keep the value of the JupyterLab theme CSS property initially loaded.
Possible solutions:
overwrite those CSS properties -> not very robust as their list may change in future version
properly inject a CSS style sheet with custom values
The text was updated successfully, but these errors were encountered:
Description
Some elements like toolbars and notifications are not properly colored.
The reason is: those elements use their own CSS property that fallback to the JupyterLab theme CSS property. Unfortunately as we set the CSS properties on the body element, those properties are not updated and keep the value of the JupyterLab theme CSS property initially loaded.
Possible solutions:
The text was updated successfully, but these errors were encountered: