Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit e3784a3

Browse files
committed
fix(plugins/plugin-client-common): improve spacing around ProgressStep, hint bg for tips
1 parent 6774f76 commit e3784a3

File tree

2 files changed

+7
-6
lines changed
  • plugins/plugin-client-common

2 files changed

+7
-6
lines changed

plugins/plugin-client-common/src/components/Content/Markdown/components/list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function list(props: OrderedListProps | UnorderedListProps) {
6161

6262
if (lastIncompatibleIdx === -1) {
6363
return (
64-
<ProgressStepper layout={props.ordered ? 'horizontal' : 'vertical'}>
64+
<ProgressStepper layout={props.ordered ? 'horizontal' : 'vertical'} className="kui--markdown-major-paragraph">
6565
{props.children as ProgressStepperProps['children']}
6666
</ProgressStepper>
6767
)

plugins/plugin-client-common/web/scss/components/Terminal/Commentary.scss

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,14 +219,14 @@ body[kui-theme-style='light'] {
219219
--pf-c-content--heading--FontFamily: var(--font-sans-serif-title);
220220
}
221221

222-
@include MarkdownMajorParagraph {
223-
margin: 1.5em 0;
224-
}
225-
226222
@include Scrollback {
227223
@include Commentary {
228224
margin: 0 0.5em;
229225

226+
@include MarkdownMajorParagraph {
227+
margin: 1.5em 0;
228+
}
229+
230230
@include Block {
231231
--input-padding-left: 0;
232232
--input-padding-right: 0;
@@ -269,11 +269,12 @@ body[kui-theme-style='light'] {
269269
}
270270

271271
@include MarkdownTip {
272+
background-color: #e7f1fa;
273+
272274
@include ExpandableSectionButton {
273275
width: 100%;
274276
padding-top: 0.6875em;
275277
padding-bottom: 0.6875em;
276-
background-color: var(--color-base00);
277278
}
278279
}
279280
}

0 commit comments

Comments
 (0)