mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 01:41:24 -06:00
hide overflow content for single left pane (#54882)
This commit is contained in:
parent
22c937340e
commit
d5e28426ee
@ -94,7 +94,7 @@ export class SplitPaneWrapper extends PureComponent<Props> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return leftPaneComponents;
|
return <div className={styles.singleLeftPane}>{leftPaneComponents}</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
@ -163,6 +163,12 @@ const getStyles = stylesFactory((theme: GrafanaTheme) => {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
singleLeftPane: css`
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
`,
|
||||||
resizerV: cx(
|
resizerV: cx(
|
||||||
resizer,
|
resizer,
|
||||||
css`
|
css`
|
||||||
|
Loading…
Reference in New Issue
Block a user