|
|
- /**
- *
- *
- *
- */
-
- @mixin component__file-table()
- {
- .file-table {
- display: block;
- width: 100%;
-
- &__row {
- display: flex;
- flex-wrap: wrap;
-
- padding: 5px 0;
- border-bottom: 1px solid $grey;
-
- &:hover {
- background-color: lighten($grey, 45%);
- }
- }
-
- &__inner {
- width: 100%;
- }
-
- &__column {
- display: flex;
- flex: 2;
- align-items: center;
-
- &--select {
- max-width: 30px;
-
- input[type=checkbox] {
- margin: -17px 0 0 0;
- }
- }
-
- &--actions {
- max-width: 180px;
-
- button {
- border: 0;
- padding: 0;
-
- .icon {
- width: 2.4em;
- height: 2.4em;
- }
-
- &:disabled {
- .icon {
- opacity: 0.3;
-
- &:hover {
- cursor: not-allowed;
- }
- }
- }
- }
- }
- }
- }
-
- .bucket-filemanager {
- padding: 10px 15px 15px 15px;
- border: 1px solid $grey-light;
- }
- }
|