Skip to content

Commit

Permalink
fix(overview): set max height for tooltips on nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-phillips-18 committed Jan 4, 2024
1 parent f908905 commit 330b795
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@
flex-direction: column;
gap: var(--pf-v5-global--spacer--md);
text-align: left;
padding: var(--pf-v5-global--spacer--md);
padding-top: var(--pf-v5-global--spacer--md);
padding-bottom: var(--pf-v5-global--spacer--md);
padding-left: var(--pf-v5-global--spacer--md);
max-height: 600px;

&-title {
font-size: var(--pf-v5-global--icon--FontSize--md);
padding-right: var(--pf-v5-global--spacer--md);
}
&-description {
padding-right: var(--pf-v5-global--spacer--md);
}

&-status {
Expand All @@ -15,6 +22,9 @@
grid-template-columns: auto auto auto;
column-gap: var(--pf-v5-global--spacer--md);
row-gap: var(--pf-v5-global--spacer--sm);
overflow-y: auto;
padding-right: var(--pf-v5-global--spacer--md);

.pf-topology-pipelines__status-icon.pf-m-spin {
> svg {
filter: blur(0);
Expand All @@ -29,5 +39,6 @@
&-links {
display: flex;
gap: var(--pf-v5-global--spacer--md);
padding-right: var(--pf-v5-global--spacer--md);
}
}

0 comments on commit 330b795

Please sign in to comment.