mirror of
https://github.com/grafana/grafana.git
synced 2025-02-03 12:11:09 -06:00
AlertTab style fixes
This commit is contained in:
parent
2eeba9dae1
commit
f749ced36e
@ -25,7 +25,7 @@ export interface EditorToolbarView {
|
||||
icon?: string;
|
||||
disabled?: boolean;
|
||||
onClick?: () => void;
|
||||
render?: (closeFunction?: any) => JSX.Element | JSX.Element[];
|
||||
render?: () => JSX.Element;
|
||||
action?: () => void;
|
||||
buttonType: ToolbarButtonType;
|
||||
}
|
||||
|
@ -69,9 +69,8 @@ class StateHistory extends PureComponent<Props, State> {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div style={{ margin: '0 auto', maxWidth: '720px' }}>
|
||||
{stateHistoryItems.length > 0 && (
|
||||
<div style={{ marginBottom: '15px' }}>
|
||||
<div className="p-b-1">
|
||||
<span className="muted">Last 50 state changes</span>
|
||||
<button className="btn btn-mini btn-danger pull-right" onClick={this.clearHistory}>
|
||||
<i className="fa fa-trash" /> {` Clear history`}
|
||||
@ -104,7 +103,6 @@ class StateHistory extends PureComponent<Props, State> {
|
||||
)}
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -107,6 +107,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user