Skip to content

Commit 886f264

Browse files
mdn-botJosh-Cena
andauthored
fix: auto-cleanup by bot (mdn#40803)
* chore: auto-fix Markdownlint, Prettier, and front-matter issues * Update index.md * Fix lint * Fix links * Revert some --------- Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
1 parent b36d73c commit 886f264

File tree

57 files changed

+106
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+106
-92
lines changed

files/en-us/learn_web_development/core/css_layout/multiple-column_layout/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ body {
386386
background-color: rgb(207 232 220);
387387
border: 2px solid rgb(79 185 227);
388388
padding: 10px;
389-
margin: 0 0 1em 0;
389+
margin-bottom: 1em;
390390
}
391391
```
392392

@@ -402,7 +402,7 @@ To control this behavior, we can use properties from the [CSS Fragmentation](/en
402402
background-color: rgb(207 232 220);
403403
border: 2px solid rgb(79 185 227);
404404
padding: 10px;
405-
margin: 0 0 1em 0;
405+
margin-bottom: 1em;
406406
}
407407
```
408408

files/en-us/learn_web_development/core/css_layout/practical_positioning_examples/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Next, we'll style the buttons to look like tabs. Add the following CSS:
162162

163163
```css
164164
.info-box [role="tab"] {
165-
padding: 0 1rem 0 1rem;
165+
padding: 0 1rem;
166166
line-height: 3rem;
167167
background: white;
168168
color: #b60000;

files/en-us/learn_web_development/core/styling_basics/images_media_forms/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ label {
235235
input[type="text"],
236236
input[type="email"] {
237237
border: 2px solid black;
238-
margin: 0 0 1em 0;
238+
margin-bottom: 1em;
239239
padding: 10px;
240240
width: 80%;
241241
}

files/en-us/learn_web_development/core/styling_basics/test_your_skills/selectors/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ ul {
348348
}
349349

350350
li {
351-
margin: 0 0 0.5em 0;
351+
margin-bottom: 0.5em;
352352
}
353353

354354
a {

files/en-us/learn_web_development/extensions/forms/how_to_build_custom_form_controls/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2032,7 +2032,7 @@ We'll do a little styling of the radio button list (not the legend/fieldset) to
20322032
.styledSelect label {
20332033
margin: 0;
20342034
line-height: 2;
2035-
padding: 0 0 0 4px;
2035+
padding-left: 4px;
20362036
}
20372037
.styledSelect:not(:focus-within) input:not(:checked) + label {
20382038
height: 0;

files/en-us/learn_web_development/extensions/forms/how_to_structure_a_web_form/example/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ input:focus {
148148
}
149149

150150
button {
151-
margin: 20px 0 0 0;
151+
margin-top: 20px;
152152
}
153153

154154
label {

files/en-us/learn_web_development/extensions/forms/how_to_structure_a_web_form/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ Let's put these ideas into practice and build a slightly more involved form —
375375
}
376376

377377
button {
378-
margin: 20px 0 0 0;
378+
margin-top: 20px;
379379
}
380380

381381
label {

files/en-us/mdn/community/community_participation_guidelines/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ MDN Community Management assesses the severity of the violation, applies the enf
8888

8989
### Appeals
9090

91-
Once an incident has been investigated and a decision has been communicated to the relevant parties, all have the opportunity to appeal this decision by sending an email to mdn-cpg-report@mozilla.com.
91+
Once an incident has been investigated and a decision has been communicated to the relevant parties, all have the opportunity to appeal this decision by sending an email to mdn-cpg-report@mozilla.com.
9292
Appeals are reviewed by a separate, impartial panel.
9393

9494
### Documentation and record keeping

files/en-us/mdn/writing_guidelines/howto/write_an_api_reference/information_contained_in_a_webidl_file/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WebIDL can be found in multiple locations:
1515

1616
- Each specification contains WebIDL inside the text: it is a very convenient way to convey precise definition. These describe the syntax of the API. Though the canonical reference, we have to keep in mind that they may differ from the actual implementation. On MDN we want to be practical and document what the Web platform really is, not what it ideally should be. So double check what is there with implementations (and don't hesitate to file bugs if you discover incoherence).
1717
- Three browser engines use (modified) WebIDL as part as their toolchain: Gecko, Chromium/Blink, and WebCore/WebKit. Pre-Chromium versions of Edge used it internally, but these are unfortunately not public.
18-
- For Gecko, all WebIDL files are grouped in a single directory: <https://searchfox.org/mozilla-central/source/dom/webidl/>. Their extension is `.webidl`. There are other `*.idl` files in the Gecko source tree but they are not WebIDL, so you can ignore them. Older versions of Gecko have some of their WebIDL scattered around somewhat, and may even use Mozilla's IDL instead of WebIDL to describe some Web interfaces, but this won't be a problem in any recent Gecko code.
18+
- For Gecko, all WebIDL files are grouped in a single directory: <https://searchfox.org/firefox-main/source/dom/webidl/>. Their extension is `.webidl`. There are other `*.idl` files in the Gecko source tree but they are not WebIDL, so you can ignore them. Older versions of Gecko have some of their WebIDL scattered around somewhat, and may even use Mozilla's IDL instead of WebIDL to describe some Web interfaces, but this won't be a problem in any recent Gecko code.
1919
- For Chromium, they are located in two locations, both subtrees of the source code's [`renderer/`](https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/) directory: [`core/`](https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/) and [`modules/`](https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/). Chromium source code has IDL files in other locations, but these are part of the testing system and not relevant to API implementations.
2020
- For WebCore, they are scattered around the source code, so you need to dig a bit more: E.g. <https://github.com/WebKit/webkit/blob/main/Source/WebCore/html/DOMTokenList.idl>
2121

files/en-us/mozilla/add-ons/webextensions/user_interface/browser_styles/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ As `browser_style` is a deprecated in Manifest V3 you may want to remove support
122122
- Does the appearance of your extensions UI change?
123123
- If the appearance doesn't change, remove the key.
124124
- If the appearance changes, experiment to determine what dependency exist and add the relevant properties in the extension's stylesheet. The styles are most likely to cause layout changes are `box-sizing:`, `border-box`, and `display: flex`.
125-
If you cannot identify the dependencies, include the content of [extension.css](https://searchfox.org/mozilla-central/source/browser/components/extensions/extension.css) with the extension and delete all parts that aren't relevant, usually the `body` and `body *` blocks as most extensions don't use the `browser-style` class.
125+
If you cannot identify the dependencies, include the content of [extension.css](https://searchfox.org/firefox-main/source/browser/components/extensions/extension.css) with the extension and delete all parts that aren't relevant, usually the `body` and `body *` blocks as most extensions don't use the `browser-style` class.
126126

127127
## Firefox panel components (legacy)
128128

0 commit comments

Comments
 (0)