Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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: 3 additions & 3 deletions src/components/logs/Logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ const Logs: FC<LogsProps> = ({
}, [logData, activeStep, findTargetRowForActiveStep]);

return (
<div className="pf-v5-u-h-100 pf-v5-u-w-100">
<div className="pf-v6-u-h-100 pf-v6-u-w-100">
{error && (
<Alert
variant="danger"
Expand All @@ -422,8 +422,8 @@ const Logs: FC<LogsProps> = ({
<LogViewer
useAnsiClasses={true}
header={
<Banner className="pf-v5-l-flex pf-v5-l-gap-md">
<span data-test-id="logs-taskName" className="pf-v5-u-font-size-md">
<Banner className="pf-v6-l-flex pf-v6-l-gap-md">
<span data-test-id="logs-taskName" className="pf-v6-u-font-size-md">
{taskName}
</span>
{stillFetching ? (
Expand Down
2 changes: 1 addition & 1 deletion src/components/logs/TektonTaskRunLog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.odc-tekton-taskrun-log {
overflow: hidden;

.pf-v5-c-log-viewer__text {
.pf-v6-c-log-viewer__text {
white-space: pre;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/pipelineRuns-details/PipelineRunLogs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
bottom: 0;
overflow: hidden;

.pf-v5-c-log-viewer__text {
.pf-v6-c-log-viewer__text {
white-space: pre;
}

Expand Down
12 changes: 7 additions & 5 deletions src/components/pipelines-metrics/PipelinesAverageDurationK8s.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const PipelinesAverageDurationK8s: FC<PipelinesAverageDurationProps> = ({
interval,
parentName,
namespace,
width = 530
width = 530,
}) => {
const { t } = useTranslation('plugin__pipelines-console-plugin');
const startTimespan = timespan - parsePrometheusDuration('1d');
Expand Down Expand Up @@ -299,16 +299,18 @@ const PipelinesAverageDurationK8s: FC<PipelinesAverageDurationProps> = ({
<>
<Card
className={classNames({
'pf-v6-u-h-100 pipeline-overview__min-width-full pipeline-overview__overflow-hidden pf-v6-u-display-flex pf-v6-u-flex-direction-column': !averageDurationError,
'pf-v6-u-h-100 pipeline-overview__min-width-full pipeline-overview__overflow-hidden pf-v6-u-display-flex pf-v6-u-flex-direction-column':
!averageDurationError,
'card-border': bordered,
})}
>
<CardTitle className="pf-v6-u-pb-0">
<span>{t('Average duration')}</span>
</CardTitle>
<CardBody
<CardBody
className={classNames({
'pf-v6-u-flex-1 pipeline-overview__min-height-0 pf-v6-u-display-flex pf-v6-u-flex-direction-column pf-v6-u-justify-content-flex-end pf-v6-u-align-items-flex-start pf-v6-u-p-0': !averageDurationError,
'pf-v6-u-flex-1 pipeline-overview__min-height-0 pf-v6-u-display-flex pf-v6-u-flex-direction-column pf-v6-u-justify-content-flex-end pf-v6-u-align-items-flex-start pf-v6-u-p-0':
!averageDurationError,
})}
>
{averageDurationError ? (
Expand Down Expand Up @@ -357,7 +359,7 @@ const PipelinesAverageDurationK8s: FC<PipelinesAverageDurationProps> = ({
</ChartGroup>
</Chart>
) : (
<div className="pipeline-overview__number-of-plr-card__loading pf-v5-u-h-100">
<div className="pipeline-overview__number-of-plr-card__loading pf-v6-u-h-100">
<LoadingInline />
</div>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const PipelinesOverviewPageK8s: FC = () => {
<PageSection hasBodyWrapper={false} className="pf-v6-u-pl-md">
<Title headingLevel="h2">{t('Overview')}</Title>
</PageSection>
<div className="pf-v5-u-m-md">
<div className="pf-v6-u-m-md">
<K8sDataLimitationAlert />
</div>
<Flex className="pf-v6-u-pl-md pf-v6-u-pr-md pf-v6-u-mb-md">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
flex: 1;
padding: var(--pf-t--global--spacer--xl);

.pf-v5-c-log-viewer__text {
.pf-v6-c-log-viewer__text {
white-space: pre;
}

Expand Down
7 changes: 5 additions & 2 deletions src/components/quick-search/QuickSearchBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@
margin-left: auto !important;
}
&__icon {
background-color: var(--pf-t--global--background--color--secondary--default);
border-bottom: solid var(--pf-v5-global--BorderWidth--sm) var(--pf-v5-global--BorderColor--200);
background-color: var(
--pf-t--global--background--color--secondary--default
);
border-bottom: solid var(--pf-v6-global--BorderWidth--sm)
var(--pf-v6-global--BorderColor--200);
}
}
Loading