Skip to content

Commit

Permalink
Fix icons
Browse files Browse the repository at this point in the history
  • Loading branch information
pantsel committed Oct 7, 2017
1 parent a69d526 commit 9fe77c2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/js/app/consumers/apis/consumer-apis.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!--</div>-->
<!--</div>-->
<div class="panel-body">
<h4>Accessible APIs</h4>
<h4>APIs</h4>
<p class="text-muted">A list of APIs this consumer can access depending on assigned Groups.</p>

</div>
Expand Down
6 changes: 4 additions & 2 deletions assets/js/app/plugins/modals/add-plugin-modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h5 class="modal-title" id="modal-title">
<p class="no-margin">
<strong class="pull-left">{{cf_key}}</strong>
<button data-ng-click="removeCustomField(value,cf_key)" class="btn btn-sm btn-flat btn-danger pull-right" style="margin-top: -15px">
<i class="material-icons no-margin">clear</i>
<i class="mdi mdi-close"></i>
</button>
</p>
<div class="clearfix"></div>
Expand All @@ -65,7 +65,9 @@ <h5 class="modal-title" id="modal-title">
my-enter="doSomething()"
placeholder="add an object to limit...">
<span class="input-group-btn">
<button data-ng-click="addCustomField(value)" class="btn btn-primary" type="button">add</button>
<button data-ng-click="addCustomField(value)" class="btn btn-primary" type="button">
<i class="mdi mdi-plus"></i>
</button>
</span>
</div>
<!--<pre>{{value.custom_fields | json}}</pre>-->
Expand Down
6 changes: 4 additions & 2 deletions assets/js/app/plugins/modals/edit-plugin-modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h5 class="modal-title" id="modal-title">
<label>{{key}}</label>
<div data-ng-if="value.schema.flexible">
<button data-ng-click="removeField(value.schema.fields,key)" class="btn btn-sm btn-flat btn-danger" style="position: absolute;top: 0px;right: 15px">
<i class="material-icons no-margin">clear</i>
<i class="mdi mdi-close"></i>
</button>
<div class="row margin-top">

Expand Down Expand Up @@ -105,7 +105,9 @@ <h5 class="modal-title" id="modal-title">
my-enter="doSomething()"
placeholder="add an object to limit...">
<span class="input-group-btn">
<button data-ng-click="addFlexField(value.schema.fields,value)" class="btn btn-primary" type="button">add</button>
<button data-ng-click="addFlexField(value.schema.fields,value)" class="btn btn-primary" type="button">
<i class="mdi mdi-plus"></i>
</button>
</span>
</div>
</div>
Expand Down

0 comments on commit 9fe77c2

Please sign in to comment.