Commit ddb6464b by Ryan McKinley Committed by GitHub

Alerts: set zindex above the panel inspector (#24354)

* set alert zindex

* use tooltip zindex
parent 26f15233
...@@ -39,6 +39,10 @@ ...@@ -39,6 +39,10 @@
background: $alert-warning-bg; background: $alert-warning-bg;
} }
.alert-container {
z-index: $zindex-tooltip;
}
.page-alert-list { .page-alert-list {
z-index: 8000; z-index: 8000;
min-width: 400px; min-width: 400px;
......
...@@ -104,7 +104,6 @@ export class InspectJSONTab extends PureComponent<Props, State> { ...@@ -104,7 +104,6 @@ export class InspectJSONTab extends PureComponent<Props, State> {
onClipboardCopied = () => { onClipboardCopied = () => {
appEvents.emit(AppEvents.alertSuccess, ['Content copied to clipboard']); appEvents.emit(AppEvents.alertSuccess, ['Content copied to clipboard']);
alert('TODO... the notice is behind the inspector!');
}; };
onApplyPanelModel = () => { onApplyPanelModel = () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment