Skip to content

Commit 07f9410

Browse files
authored
[Accessibility Improvements] Add underline for all links (#55500)
1 parent 7ede6cc commit 07f9410

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

data/ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ search:
4343
view_all_search_results: View more results
4444
no_results_found: No results found
4545
search_docs_with_query: Search docs for "{{query}}"
46-
privacy_disclaimer: For product and service improvement purposes, the GitHub Docs team will retain questions and answers generated in the Docs search function. Please see the <a href="https://docs.github.com/privacy">GitHub Privacy Statement</a> to review how GitHub collects and uses your data.
46+
privacy_disclaimer: For product and service improvement purposes, the GitHub Docs team will retain questions and answers generated in the Docs search function. Please see the <a href="https://docs.github.com/privacy"><u>GitHub Privacy Statement</u></a> to review how GitHub collects and uses your data.
4747
ai:
4848
disclaimer: <a href="https://docs.github.com/en/copilot/responsible-use-of-github-copilot-features/responsible-use-of-github-copilot-chat-in-githubcom"}>Copilot</a> uses AI. Check for mistakes.
4949
references: Additional docs

src/fixtures/fixtures/data/ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ search:
4343
view_all_search_results: View more results
4444
no_results_found: No results found
4545
search_docs_with_query: Search docs for "{{query}}"
46-
privacy_disclaimer: For product and service improvement purposes, the GitHub Docs team will retain questions and answers generated in the Docs search function. Please see the <a href="https://docs.github.com/privacy">GitHub Privacy Statement</a> to review how GitHub collects and uses your data.
46+
privacy_disclaimer: For product and service improvement purposes, the GitHub Docs team will retain questions and answers generated in the Docs search function. Please see the <a href="https://docs.github.com/privacy"><u>GitHub Privacy Statement</u></a> to review how GitHub collects and uses your data.
4747
ai:
4848
disclaimer: <a href="https://docs.github.com/en/copilot/responsible-use-of-github-copilot-features/responsible-use-of-github-copilot-chat-in-githubcom"}>Copilot</a> uses AI. Check for mistakes.
4949
references: Additional docs

src/frame/components/ui/MarkdownContent/UnrenderedMarkdownContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const UnrenderedMarkdownContent = ({
6666
data-group-key={eventGroupKey}
6767
data-group-id={eventGroupId}
6868
>
69-
{props.children}
69+
<u>{props.children}</u>
7070
</a>
7171
)
7272
}

src/search/components/input/SearchOverlay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ export function SearchOverlay({
800800
}}
801801
as="button"
802802
>
803-
{t('search.overlay.give_feedback')}
803+
<u>{t('search.overlay.give_feedback')}</u>
804804
</Link>
805805
</Box>
806806
<Text

0 commit comments

Comments
 (0)