Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions dotcom-rendering/src/layouts/FullPageInteractiveLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import type { ArticleDeprecated } from '../types/article';
import type { ServerSideTests, Switches } from '../types/config';
import type { FEElement } from '../types/content';
import type { RenderingTarget } from '../types/renderingTarget';
import { temporaryBodyCopyColourOverride } from './InteractiveLayout';
import { interactiveGlobalStyles } from './lib/interactiveLegacyStyling';
import { BannerWrapper, Stuck } from './lib/stickiness';

Expand Down Expand Up @@ -210,7 +209,6 @@ export const FullPageInteractiveLayout = (props: WebProps | AppsProps) => {
<Island priority="critical">
<InteractivesDisableArticleSwipe />
</Island>
<Global styles={temporaryBodyCopyColourOverride} />
</>
)}
{isWeb && (
Expand Down
8 changes: 0 additions & 8 deletions dotcom-rendering/src/layouts/InteractiveLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,6 @@ const starWrapper = css`
margin-left: -10px;
`;

export const temporaryBodyCopyColourOverride = css`
.content__main-column--interactive p {
/* stylelint-disable-next-line declaration-no-important */
color: ${themePalette('--article-text')} !important;
}
`;

interface CommonProps {
article: ArticleDeprecated;
format: ArticleFormat;
Expand Down Expand Up @@ -253,7 +246,6 @@ export const InteractiveLayout = (props: WebProps | AppsProps) => {
<Island priority="critical">
<InteractivesDisableArticleSwipe />
</Island>
<Global styles={temporaryBodyCopyColourOverride} />
</>
)}
{article.isLegacyInteractive && (
Expand Down