Skip to content

Commit

Permalink
fix(ui): ClipboardText tooltip properly positioned (#11946)
Browse files Browse the repository at this point in the history
  • Loading branch information
agilgur5 authored Oct 4, 2023
1 parent 52f6675 commit 05c6db1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
line-height: 24px;
display: inline-block;
vertical-align: middle;
overflow-x: auto !important; // override `.workflow-details__atribute-grid pre` selector
}

&__artifact-details span {
Expand Down Expand Up @@ -61,7 +62,7 @@
span {
color: $argo-color-teal-5;
}

i {
float: right;
font-size: 1.5em;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ interface Props {
const AttributeRow = (attr: {title: string; value: any}) => (
<React.Fragment key={attr.title}>
<div>{attr.title}</div>
<div style={{overflow: 'auto hidden'}}>{attr.value}</div>
<div>{attr.value}</div>
</React.Fragment>
);
const AttributeRows = (props: {attributes: {title: string; value: any}[]}) => (
Expand Down

0 comments on commit 05c6db1

Please sign in to comment.