deprecatedExtra.css 911 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. .jp-Icon,
  9. .jp-MaterialIcon {
  10. background-position: center;
  11. background-repeat: no-repeat;
  12. background-size: 16px;
  13. min-width: 16px;
  14. min-height: 16px;
  15. }
  16. .jp-Icon-cover {
  17. background-position: center;
  18. background-repeat: no-repeat;
  19. background-size: cover;
  20. }
  21. /**
  22. * (DEPRECATED) Support for specific CSS icon sizes
  23. */
  24. .jp-Icon-16 {
  25. background-size: 16px;
  26. min-width: 16px;
  27. min-height: 16px;
  28. }
  29. .jp-Icon-18 {
  30. background-size: 18px;
  31. min-width: 18px;
  32. min-height: 18px;
  33. }
  34. .jp-Icon-20 {
  35. background-size: 20px;
  36. min-width: 20px;
  37. min-height: 20px;
  38. }