Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
6 changes: 6 additions & 0 deletions packages/module/src/DeepThinking/DeepThinking.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@
.pf-chatbot__deep-thinking-body {
color: var(--pf-t--global--text--color--subtle);
}

:root:where(.pf-v6-theme-high-contrast) {
.pf-chatbot__deep-thinking {
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--high-contrast);
}
}
8 changes: 7 additions & 1 deletion packages/module/src/ToolCall/ToolCall.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.pf-chatbot__tool-call {
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--control--read-only);
--pf-v6-c-card--BorderRadius: var(--pf-t--global--border--radius--small);
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--control--read-only);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i wonder if these should just use our border--color--default token instead of read-only? they would get the HC shade automatically if so.

@kaylachumley is there a reason why this is using the border--color--control--read-only token?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I improperly applied the read only token here! lets use the default token lucia suggested

Copy link
Member Author

@rebeccaalpert rebeccaalpert Nov 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated color! Was able to drop some styles.


overflow: unset;
row-gap: var(--pf-t--global--spacer--sm);
Expand Down Expand Up @@ -35,3 +35,9 @@
justify-content: flex-end;
}
}

:root:where(.pf-v6-theme-high-contrast) {
.pf-chatbot__tool-call {
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--high-contrast);
}
}
11 changes: 11 additions & 0 deletions packages/module/src/ToolResponse/ToolResponse.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,14 @@
--pf-v6-c-divider--Color: var(--pf-t--global--border--color--control--read-only);
}
}

:root:where(.pf-v6-theme-high-contrast) {
.pf-chatbot__tool-response,
.pf-chatbot__tool-response-card {
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--high-contrast);

.pf-v6-c-divider {
--pf-v6-c-divider--Color: var(--pf-t--global--border--color--high-contrast);
}
}
}
Loading