deprecatedExtra.css 981 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /**
  6. * (DEPRECATED) Support for consuming icons as CSS background images
  7. */
  8. :root {
  9. --jp-icon-search-white: url('icons/toolbar/search.svg');
  10. }
  11. .jp-Icon,
  12. .jp-MaterialIcon {
  13. background-position: center;
  14. background-repeat: no-repeat;
  15. background-size: 16px;
  16. min-width: 16px;
  17. min-height: 16px;
  18. }
  19. .jp-Icon-cover {
  20. background-position: center;
  21. background-repeat: no-repeat;
  22. background-size: cover;
  23. }
  24. /**
  25. * (DEPRECATED) Support for specific CSS icon sizes
  26. */
  27. .jp-Icon-16 {
  28. background-size: 16px;
  29. min-width: 16px;
  30. min-height: 16px;
  31. }
  32. .jp-Icon-18 {
  33. background-size: 18px;
  34. min-width: 18px;
  35. min-height: 18px;
  36. }
  37. .jp-Icon-20 {
  38. background-size: 20px;
  39. min-width: 20px;
  40. min-height: 20px;
  41. }