feat: shared folder file listing

This commit is contained in:
Ramires Viana
2020-11-03 19:17:22 +00:00
parent 1ce3068a99
commit e119bc55ea
4 changed files with 89 additions and 26 deletions

View File

@@ -1,29 +1,58 @@
.share__box {
text-align: center;
box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
background: #fff;
display: block;
border-radius: 0.2em;
width: 90%;
max-width: 25em;
margin: 6em auto;
.share {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
}
.share__box__download {
@media (max-width: 736px) {
.share {
display: block;
}
}
.share__box {
box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
background: #fff;
border-radius: 0.2em;
margin: 5px;
overflow: hidden;
}
.share__box__header {
width: 100%;
padding: 1em;
cursor: pointer;
background: #ffffff;
color: rgba(0, 0, 0, 0.5);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.share__box__info {
.share__box__body {
padding: 2em 3em;
}
.share__box__title {
margin-top: .2em;
margin: 0 0 2em;
overflow: hidden;
text-overflow: ellipsis;
}
.share__box__info {
text-align: center;
flex: 1 1 auto;
}
.share__box__items {
text-align: left;
flex: 10 0 15em;
}
.share__box__items #listing.list .item {
cursor: auto;
border-left: 0;
border-right: 0;
}
.share__box__items #listing.list .item .name {
width: auto;
}