Quote Posts: Add notifications for DMs and private posts (#36696)

This commit is contained in:
Echo
2025-11-04 17:32:52 +01:00
committed by GitHub
parent 4a9460f7bd
commit 3ab5ae1e4a
14 changed files with 236 additions and 27 deletions

View File

@@ -5744,6 +5744,34 @@ a.status-card {
}
}
.visibility-modal {
&__quote-warning {
color: var(--nested-card-text);
background:
/* This is a bit of a silly hack for layering two background colours
* since --nested-card-background is too transparent for a tooltip */
linear-gradient(
var(--nested-card-background),
var(--nested-card-background)
),
linear-gradient(var(--background-color), var(--background-color));
border: var(--nested-card-border);
padding: 16px;
border-radius: 4px;
h3 {
font-weight: 500;
margin-bottom: 4px;
color: $darker-text-color;
}
p {
font-size: 0.8em;
color: $dark-text-color;
}
}
}
.visibility-dropdown {
&__overlay[data-popper-placement] {
z-index: 9999;