Skip to content

Commit

Permalink
Fix changes
Browse files Browse the repository at this point in the history
- remove icon for non-restricted scope
- remove grey box around new scope button
  • Loading branch information
rmiccoli committed Oct 28, 2022
1 parent d09204f commit 87694b4
Showing 1 changed file with 10 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@
<!-- Current Active System Scopes Box -->
<div class="box box-primary" id="scopes-list">
<div class="box-header with-border">
<div class="well well-small">
<button class="btn btn-success" id="add-scope-btn"
ng-click="$ctrl.openAddScopeDialog()">
<i class="fa fa-plus"></i> New Scope
</button>
</div>
<button class="btn btn-success" id="add-scope-btn"
ng-click="$ctrl.openAddScopeDialog()">
<i class="fa fa-plus"></i> New Scope
</button>
</div>
<div class="box-body with-border">
<table id="scope-table" class="table table-hover table-striped">
Expand All @@ -42,9 +40,7 @@
title="This Scope is automatically assigned to newly registered clients."></i>
<i class="fa fa-ban" ng-if="scope.restricted == true"
title="This Scope can be used only by administrators. It is not available for dynamic registration."></i>
<i class="fa fa-flag-o"
ng-if="scope.restricted != true && scope.defaultScope != true"
title="This Scope is not restricted."></i></td>
<i ng-if="scope.restricted != true && scope.defaultScope != true"></i></td>
<td class="align-middle"><a ui-sref="value({id: scope.value})"
class="label label-primary"><i class="fa fa-{{scope.icon}}"></i>&nbsp;{{scope.value}}</a>
</td>
Expand All @@ -69,12 +65,10 @@
<h5>
<span><b>Legend</b></span></br>
</h5>
<i class="fa fa-flag"></i>&nbsp;&nbsp;<span>This Scope is
automatically assigned to newly registered clients.</span><br> <i
class="fa fa-flag-o"></i>&nbsp;&nbsp;<span>This Scope is not
restricted.</span><br> <i class="fa fa-ban"></i>&nbsp;&nbsp;<span>This
Scope can be used only by administrators. It is not available for
dynamic registration.</span> </br>
</br>
<i class="fa fa-flag"></i>&nbsp;&nbsp;<span>This scope is
automatically assigned to newly registered clients.</span><br>
<i class="fa fa-ban"></i>&nbsp;&nbsp;<span>This scope can be
used only by administrators. It is not available for dynamic
registration.</span> </br> </br>
</div>
</div>

0 comments on commit 87694b4

Please sign in to comment.