Add a way to know why a status has been filtered, and show it anyway

This commit is contained in:
Thibaut Girka
2019-07-12 16:01:33 +02:00
committed by ThibG
parent e9fac2def9
commit bde7a415b9
6 changed files with 147 additions and 5 deletions

View File

@@ -820,3 +820,33 @@
left: 0;
}
}
.filtered-status-info {
text-align: start;
.spoiler__text {
margin-top: 20px;
}
.account {
border-bottom: 0;
}
.account__display-name strong {
color: $inverted-text-color;
}
.status__content__spoiler {
display: none;
&--visible {
display: flex;
}
}
ul {
padding: 10px;
margin-left: 12px;
list-style: disc inside;
}
}

View File

@@ -996,3 +996,19 @@ a.status-card.compact:hover {
}
}
}
.status__wrapper--filtered__button {
display: block;
font-size: 15px;
line-height: 20px;
color: lighten($ui-highlight-color, 8%);
border: 0;
background: transparent;
padding: 0;
padding-top: 8px;
&:hover,
&:active {
text-decoration: underline;
}
}