mirror of
https://github.com/portainer/portainer.git
synced 2025-08-08 23:35:31 +02:00
fix(docker): ui link style [EE-4184] (#7655)
* EE-4184 fix(docker): ui link style
This commit is contained in:
parent
6078234d07
commit
f71fe87ba7
6 changed files with 30 additions and 17 deletions
|
@ -101,9 +101,14 @@
|
|||
{{ item.URL }}
|
||||
</td>
|
||||
<td>
|
||||
<a class="vertical-center" ng-if="$ctrl.canManageAccess(item)" ng-click="$ctrl.redirectToManageAccess(item)">
|
||||
<pr-icon icon="'users'" feather="true"></pr-icon> Manage access
|
||||
</a>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-link hover:no-underline !ml-0 px-0 vertical-center"
|
||||
ng-if="$ctrl.canManageAccess(item)"
|
||||
ng-click="$ctrl.redirectToManageAccess(item)"
|
||||
>
|
||||
<pr-icon icon="'users'" feather="true"></pr-icon>Manage access
|
||||
</button>
|
||||
<be-feature-indicator feature="$ctrl.limitedFeature" ng-if="$ctrl.canBrowse(item)">
|
||||
<span class="text-muted space-left" style="padding-right: 5px"> <pr-icon icon="'search'" feather="true"></pr-icon> Browse </span>
|
||||
</be-feature-indicator>
|
||||
|
|
|
@ -14,8 +14,10 @@
|
|||
></environment-variables-simple-mode>
|
||||
|
||||
<div ng-if="$ctrl.mode == 'advanced'" class="environment-variables-panel--advanced">
|
||||
<div class="col-sm-12">
|
||||
<a class="small interactive" ng-click="$ctrl.switchEnvMode()"> <pr-icon icon="'list'" feather="true"></pr-icon> Simple mode </a>
|
||||
<div class="col-sm-12 text-clickable">
|
||||
<button type="button" class="btn btn-link btn-sm hover:no-underline !ml-0 p-0 vertical-center" ng-click="$ctrl.switchEnvMode()">
|
||||
<pr-icon icon="'list'" feather="true"></pr-icon> Simple mode
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-sm-12 small text-muted">
|
||||
<pr-icon icon="'alert-circle'" mode="'primary'" feather="true"></pr-icon>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<div class="environment-variables-simple-mode">
|
||||
<div class="col-sm-12">
|
||||
<a class="small interactive" ng-click="$ctrl.onSwitchModeClick()"> <pr-icon icon="'list'" feather="true"></pr-icon> Advanced mode </a>
|
||||
<button type="button" class="btn btn-link btn-sm hover:no-underline !ml-0 p-0" ng-click="$ctrl.onSwitchModeClick()">
|
||||
<pr-icon icon="'edit'" feather="true"></pr-icon> Advanced mode
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-sm-12 small text-muted">
|
||||
<pr-icon icon="'alert-circle'" mode="'primary'" feather="true"></pr-icon>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue