Fix integrations with a long name break Host page UI (#134728)

This commit is contained in:
Pablo Machado 2022-06-20 16:05:32 +02:00 committed by GitHub
parent 42e7ab347e
commit b2ef47b2d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View file

@ -153,6 +153,7 @@ export const AppGlobalStyle = createGlobalStyle<{ theme: { eui: { euiColorPrimar
export const DescriptionListStyled = styled(EuiDescriptionList)`
${({ theme }) => `
word-break: break-word;
dt {
font-size: ${theme.eui.euiFontSizeXS} !important;
}

View file

@ -237,6 +237,10 @@ exports[`Details Panel Component DetailsPanel:HostDetails: rendering it should r
color: #535966;
}
.c2 {
word-break: break-word;
}
.c2 dt {
font-size: 12px !important;
}
@ -571,6 +575,10 @@ exports[`Details Panel Component DetailsPanel:NetworkDetails: rendering it shoul
color: #535966;
}
.c2 {
word-break: break-word;
}
.c2 dt {
font-size: 12px !important;
}

View file

@ -5,6 +5,10 @@ exports[`Expandable Host Component ExpandableHostDetails: rendering it should re
color: #535966;
}
.c2 {
word-break: break-word;
}
.c2 dt {
font-size: 12px !important;
}