Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
85bebb1
style: enhance markdown blockquote styling for better overflow handling
barbara-celi May 7, 2026
5450a1b
style: refine blockquote layout and overflow properties for improved …
barbara-celi May 7, 2026
695ebab
style: update blockquote styles to improve layout and overflow handling
barbara-celi May 7, 2026
2ffb6f7
style: adjust table and blockquote styles for improved layout and ove…
barbara-celi May 7, 2026
72a7945
style: update table and blockquote styles for better alignment and ov…
barbara-celi May 7, 2026
c4be9ea
style: enhance blockquote styles for improved width management and ov…
barbara-celi May 7, 2026
fea4e0c
chore: update build
carolinamenezes May 7, 2026
27d34e8
style: update blockquote grid properties for improved layout consistency
barbara-celi May 8, 2026
1c5366d
Merge branch 'EDU-17643-blockquote' of https://github.com/vtexdocs/co…
barbara-celi May 8, 2026
7a43dd8
style: update blockquote scrollbar styles and overflow handling for i…
barbara-celi May 8, 2026
a7d2b6f
style: refine blockquote scrollbar styles and overflow handling for e…
barbara-celi May 8, 2026
6c33d03
style: enhance blockquote scrollbar styles and overflow properties fo…
barbara-celi May 8, 2026
0807de3
style: refine blockquote overflow properties for enhanced scrollbar f…
barbara-celi May 8, 2026
5f3c2a4
style: simplify blockquote overflow handling by consolidating scrollb…
barbara-celi May 8, 2026
94c9fab
style: adjust blockquote overflow properties to improve scrollbar beh…
barbara-celi May 8, 2026
ad07be4
style: update color scheme for blockquote overflow properties to enha…
barbara-celi May 8, 2026
287cd52
style: change table background color to enhance visual contrast in ma…
barbara-celi Jun 3, 2026
f4dddb9
style: update background color for table in markdown renderer to impr…
barbara-celi Jun 3, 2026
3149944
style: update blockquote background color to transparent for improved…
barbara-celi Jun 3, 2026
4ef5b15
style: update blockquote background color to #1b1e28 for improved vis…
barbara-celi Jun 9, 2026
8f90024
style: reset background color for table and blockquote to improve vis…
barbara-celi Jun 9, 2026
15f94f8
style: reset background color for code blocks and blockquote code to …
barbara-celi Jun 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions dist/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7861,7 +7861,8 @@ var SidebarElements = ({ slugPrefix, items, subItemLevel }) => {
const handleClick = (e, pathSuffix, slug) => {
e.preventDefault();
const hasEndpointQuery = router.query.endpoint;
router.push(getHref(slugPrefix || "", pathSuffix, slug)).then(() => {
const href = getHref(slugPrefix || "", pathSuffix, slug);
router.push(href, href, { locale }).then(() => {
if (hasEndpointQuery)
router.reload();
});
Expand Down Expand Up @@ -7940,7 +7941,7 @@ var SidebarElements = ({ slugPrefix, items, subItemLevel }) => {
},
href: getHref(slugPrefix || "", pathSuffix, localizedSlug),
target: isEditorPreview === true ? "_blank" : "_self",
locale: false,
locale,
children: [
method && /* @__PURE__ */ jsx17(
method_category_default,
Expand Down
2 changes: 1 addition & 1 deletion dist/index.mjs.map

Large diffs are not rendered by default.

21 changes: 17 additions & 4 deletions src/lib/markdown-renderer/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.code {
background-color: #f6f8fa;
background-color: unset;
background-color: var(--md-code-background, #f6f8fa);
border-radius: 4px;
color: var(--md-code-text);
Expand All @@ -37,7 +37,7 @@ table .code {
align-items: center;
border: 1px solid #ccced8;
grid-template-columns: 20px 1fr;
grid-template-rows: 1fr;
grid-template-rows: auto;
word-break: break-word;
}

Expand All @@ -53,6 +53,19 @@ table .code {
grid-row: 1 / 1;
}

.blockquote > div {
width: 100%;
max-width: 100%;
min-width: 0;
}

.blockquote ch-code-scroll-parent {
width: 100% !important;
overflow-x: auto !important;
overflow-y: hidden !important;
background-color: unset !important;
}

.blockquote a {
color: #e31c58 !important;
text-decoration: underline 1px solid;
Expand Down Expand Up @@ -102,7 +115,7 @@ table .code {
}

.blockquoteInfo code {
background-color: #ecebf3;
background-color: unset;
}

.blockquoteWarning:before {
Expand Down Expand Up @@ -137,4 +150,4 @@ table .code {

.svgContainer {
width: 100%;
}
}
Loading