diff --git a/docs/data/material/customization/color/color.md b/docs/data/material/customization/color/color.md index 31927855df38e3..43733e40fbac28 100644 --- a/docs/data/material/customization/color/color.md +++ b/docs/data/material/customization/color/color.md @@ -11,7 +11,7 @@ The Material Design [color system](https://m2.material.io/design/color/) can be The Material Design team has also built an awesome palette configuration tool: [material.io/resources/color/](https://m2.material.io/inline-tools/color/). This can help you create a color palette for your UI, as well as measure the accessibility level of any color combination. - + Official color tool
diff --git a/docs/data/material/discover-more/backers/backers.md b/docs/data/material/discover-more/backers/backers.md index 311c97d56f0715..fcbc9a4025059c 100644 --- a/docs/data/material/discover-more/backers/backers.md +++ b/docs/data/material/discover-more/backers/backers.md @@ -8,9 +8,9 @@ Sponsorship increases the rate of bug fixes, documentation improvements, and fea ## Diamond sponsors

- octopus - doit - marblism + octopus + doit + marblism

Diamond sponsors are those who've pledged \$1,500/month or more to the MUI organization. [Tier benefits](#diamond). @@ -20,14 +20,14 @@ Diamond sponsors are those who've pledged \$1,500/month or more to the MUI organ via [Open Collective](https://opencollective.com/mui-org) or via [the for-profit](https://www.patreon.com/oliviertassinari)

- tidelift.com - Spotify - Icons8 - RxDB - text-em-all.com - megafamous.com - dialmycalls.com - goread.io + tidelift.com + Spotify + Icons8 + RxDB + text-em-all.com + megafamous.com + dialmycalls.com + goread.io

Gold sponsors are those who've pledged \$500/month or more to the MUI organization. [Tier benefits](#gold). diff --git a/docs/src/modules/components/Ad.js b/docs/src/modules/components/Ad.js index eddd42bb79bfcf..b6ffa38090565f 100644 --- a/docs/src/modules/components/Ad.js +++ b/docs/src/modules/components/Ad.js @@ -222,6 +222,10 @@ export default function Ad() { mt: AD_MARGIN_TOP, mb: AD_MARGIN_BOTTOM, minHeight: AD_HEIGHT_MOBILE, + '& a[target="_blank"]::after': { + // Remove link arrow for ads + display: 'none', + }, [theme.breakpoints.up('sm')]: { minHeight: AD_HEIGHT, }, diff --git a/docs/src/modules/components/MarkdownElement.js b/docs/src/modules/components/MarkdownElement.js index a1d8128508fba1..360384a31abc8a 100644 --- a/docs/src/modules/components/MarkdownElement.js +++ b/docs/src/modules/components/MarkdownElement.js @@ -403,6 +403,10 @@ const Root = styled('div')( opacity: 1, transform: 'translate(1px, 0)', }, + '& a.remove-link-arrow[target="_blank"]::after': { + // Allows to remove link arrows for images + display: 'none', + }, '& a, & a code': { // Style taken from the Link component color: `var(--muidocs-palette-primary-600, ${lightTheme.palette.primary[600]})`,