2022-05-17 12:36:10 +03:00
|
|
|
.activity-title {
|
2025-10-09 02:06:16 +03:00
|
|
|
margin: 0 0.7vw 1vh;
|
2022-05-17 12:36:10 +03:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.reactions-popup .add-comment-reaction {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
cursor: pointer;
|
2025-10-09 02:06:16 +03:00
|
|
|
border-radius: 0.7vw;
|
|
|
|
|
font-size: clamp(18px, 4vw, 22px);
|
2022-05-17 12:36:10 +03:00
|
|
|
text-align: center;
|
2025-10-09 02:06:16 +03:00
|
|
|
line-height: 1.3;
|
|
|
|
|
width: 5vw;
|
2022-05-17 12:36:10 +03:00
|
|
|
}
|
|
|
|
|
.reactions-popup .add-comment-reaction:hover {
|
|
|
|
|
background-color: #b0c4de;
|
|
|
|
|
}
|
|
|
|
|
.activities {
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
.activities .activity {
|
2025-10-09 02:06:16 +03:00
|
|
|
margin: 0.1vh 0;
|
|
|
|
|
padding: 0.8vh 0;
|
2022-05-17 12:36:10 +03:00
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.activities .activity .member {
|
2025-10-09 02:06:16 +03:00
|
|
|
width: 4vw;
|
|
|
|
|
height: 4vw;
|
2022-05-17 12:36:10 +03:00
|
|
|
}
|
|
|
|
|
.activities .activity .activity-member {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
.activities .activity .activity-desc {
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex: 1;
|
|
|
|
|
align-self: center;
|
|
|
|
|
margin: 0;
|
2025-10-09 02:06:16 +03:00
|
|
|
margin-left: 0.4vw;
|
2022-05-17 12:36:10 +03:00
|
|
|
overflow: hidden;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
.activities .activity .activity-desc .activity-comment {
|
|
|
|
|
display: block;
|
2025-10-09 02:06:16 +03:00
|
|
|
border-radius: 0.4vw;
|
2022-05-17 12:36:10 +03:00
|
|
|
background: #fff;
|
|
|
|
|
text-decoration: none;
|
2025-10-09 02:06:16 +03:00
|
|
|
box-shadow: 0 0.2vh 0.3vh rgba(0,0,0,0.2);
|
|
|
|
|
margin-top: 0.7vh;
|
|
|
|
|
padding: 0.7vh 0.7vw;
|
2022-05-17 12:36:10 +03:00
|
|
|
}
|
|
|
|
|
.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;
|
|
|
|
|
}
|