You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
818 B

3 years ago
3 years ago
3 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. @mixin component__file-table()
  7. {
  8. .file-table {
  9. display: block;
  10. width: 100%;
  11. &__row {
  12. display: flex;
  13. flex-wrap: wrap;
  14. padding: 5px 0;
  15. border-bottom: 1px solid $grey;
  16. &:hover {
  17. background-color: lighten($grey, 45%);
  18. }
  19. }
  20. &__inner {
  21. width: 100%;
  22. }
  23. &__column {
  24. display: flex;
  25. flex: 2;
  26. align-items: center;
  27. &--select {
  28. max-width: 30px;
  29. input[type=checkbox] {
  30. margin: -17px 0 0 0;
  31. }
  32. }
  33. }
  34. }
  35. .bucket-filemanager {
  36. padding: 10px 15px 15px 15px;
  37. border: 1px solid $grey-light;
  38. }
  39. }