focalboard/webapp/src/components/comment.scss

48 lines
791 B
SCSS
Raw Normal View History

2020-10-24 20:37:09 +02:00
.Comment {
display: flex;
flex-direction: column;
margin: 5px 0;
&:hover {
.MenuWrapper {
display: block;
}
}
2020-10-24 20:37:09 +02:00
.MenuWrapper {
display: none;
position: absolute;
right: 0;
}
.comment-header {
display: flex;
flex-direction: row;
position: relative;
}
.comment-avatar {
width: 20px;
height: 20px;
border-radius: 100%;
box-shadow: rgba(15, 15, 15, 0.1) 0px 2px 4px;
}
.comment-username {
font-weight: bold;
margin: 0 5px;
}
.comment-date {
color: #cccccc;
font-size: 12px;
}
.comment-text {
2020-10-27 11:40:32 +01:00
color: rgb(var(--main-fg));
width: 100%;
padding-left: 25px;
2020-10-24 20:37:09 +02:00
}
}