mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Panel: Fix text aliasing bug when panel is loading (#89538)
* place loading bar animation in its own stacking context to prevent aliasing of text * add comment
This commit is contained in:
parent
89337ea01f
commit
3c15781788
@ -423,6 +423,10 @@ const getStyles = (theme: GrafanaTheme2) => {
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
width: '100%',
|
||||
// this is to force the loading bar container to create a new stacking context
|
||||
// otherwise, in webkit browsers on windows/linux, the aliasing of panel text changes when the loading bar is shown
|
||||
// see https://github.com/grafana/grafana/issues/88104
|
||||
zIndex: 1,
|
||||
}),
|
||||
containNone: css({
|
||||
contain: 'none',
|
||||
|
Loading…
Reference in New Issue
Block a user