/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
@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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.bucket-filemanager {
|
|
padding: 10px 15px 15px 15px;
|
|
border: 1px solid $grey-light;
|
|
}
|
|
}
|