Skip to content

Commit abd8f63

Browse files
[docs] Fix 301 links
1 parent 0646444 commit abd8f63

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Diff for: docs/data/base/getting-started/support/support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ and
120120
<a
121121
data-ga-event-category="support"
122122
data-ga-event-action="tidelift"
123-
href="https://tidelift.com/solutions/schedule-demo?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.
123+
href="https://www.sonarsource.com/tidelift-request-demo/?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.

Diff for: docs/data/joy/getting-started/support/support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ and
120120
<a
121121
data-ga-event-category="support"
122122
data-ga-event-action="tidelift"
123-
href="https://tidelift.com/solutions/schedule-demo?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.
123+
href="https://www.sonarsource.com/tidelift-request-demo/?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.

Diff for: docs/data/material/customization/css-theme-variables/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
You can implement them to improve Material UI's theming and customization experience.
77

88
:::info
9-
If this is your first time encountering CSS variables, you should check out [the MDN Web Docs on CSS custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) before continuing here.
9+
If this is your first time encountering CSS variables, you should check out [the MDN Web Docs on CSS custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascading_variables/Using_CSS_custom_properties) before continuing here.
1010
:::
1111

1212
## Introduction

Diff for: docs/data/material/customization/how-to-customize/how-to-customize.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Target the `.Mui-selected` global class name to customize the special state of t
9292
<MenuItem selected className="MenuItem">
9393
```
9494

95-
If you'd like to learn more about this topic, we recommend checking out [the MDN Web Docs on CSS Specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity).
95+
If you'd like to learn more about this topic, we recommend checking out [the MDN Web Docs on CSS Specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascade/Specificity).
9696

9797
#### Why do I need to increase specificity to override one component state?
9898

Diff for: docs/data/material/getting-started/support/support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ and
129129
<a
130130
data-ga-event-category="support"
131131
data-ga-event-action="tidelift"
132-
href="https://tidelift.com/solutions/schedule-demo?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.
132+
href="https://www.sonarsource.com/tidelift-request-demo/?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.

Diff for: docs/data/system/experimental-api/css-theme-variables/css-theme-variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[CSS variables](https://www.w3.org/TR/css-variables-1/) are a modern cross-browser feature that let you declare variables in CSS and reuse them in other properties.
66

77
:::info
8-
If this is your first time encountering CSS variables, you should check out [the MDN Web Docs on CSS custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) before continuing here.
8+
If this is your first time encountering CSS variables, you should check out [the MDN Web Docs on CSS custom properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascading_variables/Using_CSS_custom_properties) before continuing here.
99
:::
1010

1111
## Introduction

Diff for: docs/data/system/getting-started/support/support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ and
120120
<a
121121
data-ga-event-category="support"
122122
data-ga-event-action="tidelift"
123-
href="https://tidelift.com/solutions/schedule-demo?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.
123+
href="https://www.sonarsource.com/tidelift-request-demo/?utm_source=npm-material-ui&utm_medium=referral&utm_campaign=enterprise">request a demo today</a>.

Diff for: docs/pages/blog/making-customizable-components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Feel free to skip this section and move on to [Logic modification](#logic-modifi
2424
### Good old CSS
2525

2626
Let's start with the easiest part: modifying the style.
27-
This will necessarily involve CSS—especially the notion of [specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity), which says that if an element is targeted by two CSS selectors, the browser will apply the more specific one.
27+
This will necessarily involve CSS—especially the notion of [specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascade/Specificity), which says that if an element is targeted by two CSS selectors, the browser will apply the more specific one.
2828
Usually this means that the selector with more classes applied to it is more specific and therefore takes precedence.
2929

3030
For example, if we look at the Material UI `Switch` component, we have multiple subcomponents that we could expect to modify.

Diff for: docs/pages/blog/mui-core-v5-migration-update.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ All prop descriptions are now written in TypeScript, which means that you can ac
7878

7979
### 5. Upcoming CSS variables support
8080

81-
[CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) will help us solve a lot of customization issues in the future.
81+
[CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascading_variables/Using_CSS_custom_properties) will help us solve a lot of customization issues in the future.
8282
One of them is the dark mode flashing issue that has been requested for a long time.
8383

8484
More importantly, this feature is opt-in if you are using Material UI v5!

0 commit comments

Comments
 (0)