file-icon.css 513 B

12345678910111213141516171819202122232425
  1. [data-component="file-icon"] {
  2. flex-shrink: 0;
  3. width: 16px;
  4. height: 16px;
  5. }
  6. /*
  7. File tree: show monochrome weak icons by default.
  8. On hover, show the original file-type colors.
  9. */
  10. [data-component="filetree"] .filetree-icon--mono {
  11. color: var(--icon-base);
  12. }
  13. [data-component="filetree"] .filetree-iconpair {
  14. position: relative;
  15. display: inline-flex;
  16. width: 16px;
  17. height: 16px;
  18. }
  19. [data-component="filetree"] .filetree-iconpair [data-component="file-icon"] {
  20. position: absolute;
  21. inset: 0;
  22. }