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
3 years ago
3 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. @mixin component__file-table()
  7. {
  8. .filemanager-actions__selected {
  9. padding: 5px 10px 15px 0;
  10. display: inline-block;
  11. }
  12. .file-table {
  13. display: block;
  14. width: 100%;
  15. &__row {
  16. display: flex;
  17. flex-wrap: wrap;
  18. padding: 5px 0;
  19. border-bottom: 1px solid $grey;
  20. &:hover {
  21. background-color: lighten($grey, 45%);
  22. }
  23. }
  24. &__inner {
  25. width: 100%;
  26. }
  27. &__column {
  28. display: flex;
  29. flex: 2;
  30. align-items: center;
  31. &--select {
  32. max-width: 30px;
  33. input[type=checkbox] {
  34. margin: -17px 0 0 0;
  35. }
  36. }
  37. &--actions {
  38. max-width: 180px;
  39. button {
  40. border: 0;
  41. padding: 0;
  42. .icon {
  43. width: 2.4em;
  44. height: 2.4em;
  45. }
  46. &:disabled {
  47. .icon {
  48. opacity: 0.3;
  49. &:hover {
  50. cursor: not-allowed;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }
  58. }