status.css 768 B

12345678910111213141516171819202122232425262728
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /*
  6. * icons for light themes
  7. */
  8. [data-theme-light='true'] .jp-StatusItem-untrusted {
  9. background-image: url('./not-trusted-icon-light.svg');
  10. }
  11. [data-theme-light='true'] .jp-StatusItem-trusted {
  12. background-image: url('./trusted-icon-light.svg');
  13. }
  14. /*
  15. * icons for dark themes
  16. */
  17. [data-theme-light='false'] .jp-StatusItem-untrusted {
  18. background-image: url('./not-trusted-icon-dark.svg');
  19. }
  20. [data-theme-light='false'] .jp-StatusItem-trusted {
  21. background-image: url('./trusted-icon-dark.svg');
  22. }