ModuleItem.css 623 B

12345678910111213141516171819202122232425262728293031
  1. .container {
  2. background: no-repeat left center;
  3. cursor: pointer;
  4. margin-bottom: 4px;
  5. padding-left: 18px;
  6. position: relative;
  7. white-space: nowrap;
  8. }
  9. .container.module {
  10. background-image: url('../assets/icon-module.svg');
  11. background-position-x: 1px;
  12. }
  13. .container.folder {
  14. background-image: url('../assets/icon-folder.svg');
  15. }
  16. .container.chunk {
  17. background-image: url('../assets/icon-chunk.svg');
  18. }
  19. .container.invisible:hover::before {
  20. background: url('../assets/icon-invisible.svg') no-repeat left center;
  21. content: "";
  22. height: 100%;
  23. left: 0;
  24. top: 1px;
  25. position: absolute;
  26. width: 13px;
  27. }