Skip to content

Commit beeebbe

Browse files
author
Martin Lopes
authored
Merge branch 'main' into 5765-private-profile
2 parents b26f74d + 440b127 commit beeebbe

File tree

412 files changed

+8809
-4228
lines changed

Some content is hidden

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

412 files changed

+8809
-4228
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "test",
3+
4+
"settings": {
5+
"terminal.integrated.shell.linux": "/bin/csh",
6+
},
7+
8+
// Visual Studio Code extensions which help authoring for docs.github.com.
9+
"extensions": [
10+
"dbaeumer.vscode-eslint",
11+
"sissel.shopify-liquid"
12+
],
13+
14+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
15+
"forwardPorts": [5000],
16+
17+
// Use 'postCreateCommand' to run commands after the container is created.
18+
"postCreateCommand": "echo test > aaa-TEST.txt"
19+
20+
}

.github/workflows/optimize-images.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ permissions:
1616

1717
jobs:
1818
optimize-images-on-pr:
19-
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
19+
# We can't make commits on forks
20+
if: github.repository == 'github/docs-internal'
2021
runs-on: ubuntu-latest
2122
steps:
2223
- name: Check out repo on head ref
77.5 KB
Loading
55.8 KB
Loading
462 KB
Loading
250 KB
Loading
9.88 KB
Loading
11.4 KB
Loading
168 KB
Loading

components/rest/RestReferencePage.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,13 @@ export const RestReferencePage = ({
127127
as="li"
128128
key={item.contents}
129129
className={item.platform}
130-
sx={{ listStyle: 'none', padding: '2px' }}
130+
sx={{
131+
listStyle: 'none',
132+
padding: '2px',
133+
':hover': {
134+
bg: 'var(--color-canvas-inset)',
135+
},
136+
}}
131137
>
132138
<div className={cx('lh-condensed d-block width-full')}>
133139
<div className="d-inline-flex" dangerouslySetInnerHTML={{ __html: item.contents }} />

0 commit comments

Comments
 (0)