mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* 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
26 lines
837 B
HTML
26 lines
837 B
HTML
<div class="share-modal-header">
|
|
<div class="share-modal-big-icon">
|
|
<i class="fa fa-cloud-upload"></i>
|
|
</div>
|
|
<div>
|
|
<gf-form-switch
|
|
class="gf-form"
|
|
label="Export for sharing externally"
|
|
label-class="width-16"
|
|
checked="ctrl.shareExternally"
|
|
tooltip="Useful for sharing dashboard publicly on grafana.com. Will templatize data source names. Can then only be used with the specific dashboard import API.">
|
|
</gf-form-switch>
|
|
|
|
<div class="gf-form-button-row">
|
|
<button type="button" class="btn gf-form-btn width-10 btn-primary" ng-click="ctrl.saveDashboardAsFile()">
|
|
Save to file
|
|
</button>
|
|
<button type="button" class="btn gf-form-btn width-10 btn-secondary" ng-click="ctrl.viewJson()">
|
|
View JSON
|
|
</button>
|
|
<a class="btn btn-link" ng-click="ctrl.dismiss()">Cancel</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|