Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ActionCard/Comment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Comment = ({avatarUrl, authorName, date, children, active, self}) => (
{date}
</div>
</div>
<div className="comment-body">
<div className="comment-body draftjs-post">
<p>
{children}
</p>
Expand Down
22 changes: 18 additions & 4 deletions src/components/FileList/FileList.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// reset styles of panel class, we need panel class to activate the modal-overlay
border: none;
box-shadow: none;
> h4 {

> h4 {
@include roboto-medium;
font-size: 15px;
color: $tc-gray-50;
Expand All @@ -20,45 +20,56 @@
padding: 15px 0;
width: 100%;
align-items: stretch;

.icon-col {
padding-top: 3px;
width: 60px;
}

.content-col {
flex: 2;

h4 {
@include roboto-bold;
font-size: 15px;
color: $tc-gray-80;
max-width: 380px;
}

p {
@include roboto;
font-size: 13px;
color: $tc-gray-60;
line-height: 25px;
font-weight: 400;
color: $tc-gray-70;
line-height: 20px;
}

.title {
width: 100%;
display: flex;
line-height: 25px;
}

.size {
@include roboto;
font-size: 15px;
color: $tc-gray-60;
margin-left: auto;
}

.edit-icons {
margin-left: 5px;

i {
cursor: pointer;
}
}

.title-edit {
display: flex;
align-items: center;
margin-bottom: 10px;

input {
@include roboto-bold;
font-size: 15px;
Expand All @@ -83,22 +94,25 @@
resize: none;
}
}

.icon-trash,
.icon-edit {
margin-left: 13px;
vertical-align: middle;
}

.icon-trash {
margin-left: 22px;
}

.icon-save {
margin-right: 25px;
}

.icon-close {
margin-right: 10px;
}
}

.delete-file-modal {

}
Loading