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.

71 lines
1.4 KiB

3 years ago
3 years ago
3 years ago
3 years ago
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. &--actions {
  34. max-width: 180px;
  35. button {
  36. border: 0;
  37. padding: 0;
  38. .icon {
  39. width: 2.4em;
  40. height: 2.4em;
  41. }
  42. &:disabled {
  43. .icon {
  44. opacity: 0.3;
  45. &:hover {
  46. cursor: not-allowed;
  47. }
  48. }
  49. }
  50. }
  51. }
  52. }
  53. }
  54. .bucket-filemanager {
  55. padding: 10px 15px 15px 15px;
  56. border: 1px solid $grey-light;
  57. }
  58. }