mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
d040e336c1
* removed unsused grafana-icon classes, replaced grafana-icons with gicons * replaced old dashboard and datasource icons with gicon, fixed so icons on plugin list are shown * removed unsused grafana-icon classes, replaced grafana-icons with gicons * replaced old dashboard and datasource icons with gicon, fixed so icons on plugin list are shown * replaced fontawesome cog, eye, link and edit with gicons * updated snapshot * fixed color of cog in dashboard nav, removed icons from buttons, ran preitterier on some files * changed opacity on getting started icons and fixed getting started button * .5 -> 0.5 fix for prettier
25 lines
736 B
HTML
25 lines
736 B
HTML
<div ng-controller="JsonEditorCtrl">
|
|
<div class="tabbed-view-header">
|
|
<h2 class="tabbed-view-title">
|
|
JSON
|
|
</h2>
|
|
|
|
<button class="tabbed-view-close-btn" ng-click="dismiss()">
|
|
<i class="fa fa-remove"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="tabbed-view-body">
|
|
<div class="gf-form">
|
|
<code-editor content="json" data-mode="json" data-max-lines="20"></code-editor>
|
|
</div>
|
|
|
|
<div class="gf-form-button-row">
|
|
<button type="button" class="btn btn-primary" ng-show="canUpdate" ng-click="update(); dismiss();">Update</button>
|
|
<button class="btn btn-secondary" ng-if="canCopy" clipboard-button="getContentForClipboard()">
|
|
Copy to Clipboard
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|