Merge branch 'develop' into 'snackbar-action-link'

# Conflicts:
#   app/soapbox/features/edit_profile/index.js
This commit is contained in:
marcin mikołajczak
2022-02-01 08:27:38 +00:00
45 changed files with 2168 additions and 286 deletions

View File

@ -33,6 +33,7 @@
.datepicker .react-datepicker {
box-shadow: 0 0 6px 0 rgb(0 0 0 / 30%);
font-family: inherit;
font-size: 12px;
border: 0;
border-radius: 10px;

View File

@ -89,3 +89,18 @@
padding-bottom: 8px !important;
}
}
.notification-birthday span[type="button"] {
&:focus,
&:hover,
&:active {
text-decoration: underline;
cursor: pointer;
}
}
.columns-area .notification-birthday {
.notification__message {
padding-top: 0;
}
}

View File

@ -22,7 +22,8 @@
flex-wrap: wrap;
}
&__join-date {
&__join-date,
&__birthday {
display: flex;
font-size: 14px;
color: var(--primary-text-color--faint);

View File

@ -804,6 +804,12 @@ a.status-card.compact:hover {
}
&__content {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
max-height: 114px;
margin-top: 5px;
font-size: 14px;
@ -820,4 +826,14 @@ a.status-card.compact:hover {
.attachment-thumbs .media-gallery {
margin-top: 5px !important;
}
&-tombstone {
margin-top: 14px;
padding: 12px;
border: 1px solid var(--brand-color--med);
border-radius: 10px;
color: var(--primary-text-color--faint);
font-size: 14px;
text-align: center;
}
}