mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[8.10][Security Solution][Bug] Fix a11y bug in Safari (#165210)
## Summary Fixes a bug showing the Dashboard card description texts in white color, making it impossible to read. The bug is caused by misuse of the `color="text"` prop of `EuiText`. This has no effect on other browsers, Safari however displays white text. This is an 8.10-only fix, in 8.11 we don't use `EuiText` anymore.  
This commit is contained in:
parent
7d2a8baf48
commit
0d7f6c5430
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ export const LandingLinksImageCards: React.FC<LandingLinksImagesProps> = React.m
|
|||
</div>
|
||||
}
|
||||
description={
|
||||
<EuiText size="s" color="text" css={styles.description}>
|
||||
<EuiText size="s" css={styles.description}>
|
||||
{description}
|
||||
</EuiText>
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue