Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-4.7] Bug 1970720: fix rotated pipelinerun status icon issue in safari #9216

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ $border-color: var(--pf-global--BorderColor--light-100);
&.is-linked {
cursor: pointer;
}
&--icon-stop {
transform: rotate(0);
}
&--icon-spin {
filter: blur(0);
-webkit-filter: blur(0);
transform-origin: 16.7px 15.1px;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ const TaskComponent: React.FC<TaskProps> = ({
<g
className={cx({
'fa-spin odc-pipeline-vis-task--icon-spin': status.reason === runStatus.Running,
'odc-pipeline-vis-task--icon-stop': status.reason !== runStatus.Running,
})}
>
<svg
Expand Down