mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 11:48:06 +01:00
Change Content Warning design to match upstream's (#2890)
This commit is contained in:
parent
eb68d81013
commit
40b3c206e4
3 changed files with 18 additions and 45 deletions
|
@ -1,6 +1,4 @@
|
||||||
/* Significantly rewritten from upstream to keep the old design for now */
|
import { StatusBanner, BannerVariant } from './status_banner';
|
||||||
|
|
||||||
import { FormattedMessage } from 'react-intl';
|
|
||||||
|
|
||||||
export const ContentWarning: React.FC<{
|
export const ContentWarning: React.FC<{
|
||||||
text: string;
|
text: string;
|
||||||
|
@ -8,26 +6,12 @@ export const ContentWarning: React.FC<{
|
||||||
onClick?: () => void;
|
onClick?: () => void;
|
||||||
icons?: React.ReactNode[];
|
icons?: React.ReactNode[];
|
||||||
}> = ({ text, expanded, onClick, icons }) => (
|
}> = ({ text, expanded, onClick, icons }) => (
|
||||||
<p>
|
<StatusBanner
|
||||||
<span dangerouslySetInnerHTML={{ __html: text }} className='translate' />{' '}
|
expanded={expanded}
|
||||||
<button
|
onClick={onClick}
|
||||||
type='button'
|
variant={BannerVariant.Warning}
|
||||||
className='status__content__spoiler-link'
|
>
|
||||||
onClick={onClick}
|
{icons}
|
||||||
aria-expanded={expanded}
|
<p dangerouslySetInnerHTML={{ __html: text }} />
|
||||||
>
|
</StatusBanner>
|
||||||
{expanded ? (
|
|
||||||
<FormattedMessage
|
|
||||||
id='content_warning.hide'
|
|
||||||
defaultMessage='Hide post'
|
|
||||||
/>
|
|
||||||
) : (
|
|
||||||
<FormattedMessage
|
|
||||||
id='content_warning.show_more'
|
|
||||||
defaultMessage='Show more'
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{icons}
|
|
||||||
</button>
|
|
||||||
</p>
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -378,7 +378,7 @@ class StatusContent extends PureComponent {
|
||||||
)).reduce((aggregate, item) => [...aggregate, item, ' '], []);
|
)).reduce((aggregate, item) => [...aggregate, item, ' '], []);
|
||||||
|
|
||||||
let spoilerIcons = [];
|
let spoilerIcons = [];
|
||||||
if (hidden && mediaIcons) {
|
if (mediaIcons) {
|
||||||
const mediaComponents = {
|
const mediaComponents = {
|
||||||
'link': LinkIcon,
|
'link': LinkIcon,
|
||||||
'picture-o': ImageIcon,
|
'picture-o': ImageIcon,
|
||||||
|
|
|
@ -1399,9 +1399,9 @@ body > [data-popper-placement] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.status__content__spoiler-link {
|
.status__content__spoiler-link {
|
||||||
display: inline-flex; // glitch: media icon in spoiler button
|
display: inline-block;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background: $action-button-color; // glitch: design used in more places
|
background: transparent;
|
||||||
border: 0;
|
border: 0;
|
||||||
color: $inverted-text-color;
|
color: $inverted-text-color;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
@ -1411,23 +1411,6 @@ body > [data-popper-placement] {
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
align-items: center; // glitch: content indicator
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
// glitch: design used in more places
|
|
||||||
background: lighten($action-button-color, 7%);
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.status__content__spoiler-icon {
|
|
||||||
display: inline-block;
|
|
||||||
margin-inline-start: 5px;
|
|
||||||
border-inline-start: 1px solid currentColor;
|
|
||||||
padding: 0;
|
|
||||||
padding-inline-start: 4px;
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status__wrapper--filtered {
|
.status__wrapper--filtered {
|
||||||
|
@ -11683,4 +11666,10 @@ noscript {
|
||||||
color: $secondary-text-color;
|
color: $secondary-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status__content__spoiler-icon {
|
||||||
|
float: inline-end;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue