mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.3 KiB
101 lines
2.3 KiB
.activity-title {
|
|
margin: 0 0.5em 0.8em;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.reactions-popup .add-comment-reaction {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
font-size: 22px;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
width: 40px;
|
|
}
|
|
.reactions-popup .add-comment-reaction:hover {
|
|
background-color: #b0c4de;
|
|
}
|
|
.activities {
|
|
clear: both;
|
|
}
|
|
.activities .activity {
|
|
margin: 0.5px 0;
|
|
padding: 6px 0;
|
|
display: flex;
|
|
}
|
|
.activities .activity .member {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
.activities .activity .activity-member {
|
|
font-weight: 700;
|
|
}
|
|
.activities .activity .activity-desc {
|
|
word-wrap: break-word;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
align-self: center;
|
|
margin: 0;
|
|
margin-left: 3px;
|
|
overflow: hidden;
|
|
word-break: break-word;
|
|
}
|
|
.activities .activity .activity-desc .activity-comment {
|
|
display: block;
|
|
border-radius: 3px;
|
|
background: #fff;
|
|
text-decoration: none;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
|
|
margin-top: 5px;
|
|
padding: 5px;
|
|
}
|
|
.activities .activity .activity-desc .reactions {
|
|
display: flex;
|
|
margin-top: 5px;
|
|
gap: 5px;
|
|
}
|
|
.activities .activity .activity-desc .reactions .open-comment-reaction-popup {
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
height: 24px;
|
|
}
|
|
.activities .activity .activity-desc .reactions .open-comment-reaction-popup i.fa.fa-smile-o {
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
margin-left: 2px;
|
|
}
|
|
.activities .activity .activity-desc .reactions .open-comment-reaction-popup i.fa.fa-plus {
|
|
font-size: 8px;
|
|
margin-top: -7px;
|
|
margin-left: 1px;
|
|
}
|
|
.activities .activity .activity-desc .reactions .reaction {
|
|
cursor: pointer;
|
|
border: 1px solid #808080;
|
|
border-radius: 15px;
|
|
display: flex;
|
|
padding: 2px 5px;
|
|
}
|
|
.activities .activity .activity-desc .reactions .reaction.selected {
|
|
background-color: #b0c4de;
|
|
}
|
|
.activities .activity .activity-desc .reactions .reaction:hover {
|
|
background-color: #b0c4de;
|
|
}
|
|
.activities .activity .activity-desc .reactions .reaction .reaction-count {
|
|
font-size: 12px;
|
|
}
|
|
.activities .activity .activity-desc .activity-checklist {
|
|
display: block;
|
|
border-radius: 3px;
|
|
background: #fff;
|
|
text-decoration: none;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
|
|
margin-top: 5px;
|
|
padding: 5px;
|
|
}
|
|
.activities .activity .activity-desc .activity-meta {
|
|
font-size: 0.8em;
|
|
color: #999;
|
|
}
|
|
|