mirror of
https://github.com/portainer/portainer.git
synced 2025-08-09 07:45:22 +02:00
feat(ui): kube app list ui styling EE-3464 (#7247)
* feat(ui): apply app datatable changes EE-3464
This commit is contained in:
parent
ad7055ee01
commit
0da4e3ae63
8 changed files with 784 additions and 652 deletions
|
@ -1,4 +1,10 @@
|
|||
<span>
|
||||
<button type="button" class="btn btn-link nopadding" ng-click="$ctrl.copyValueText()" title="Copy Value"> <i class="fa fa-copy"></i> Copy </button>
|
||||
<span ng-class="{ 'copy-button-fadeout': $ctrl.state.isFading }" class="copy-button-copy-text"> <i class="fa fa-check" aria-hidden="true"></i> copied </span>
|
||||
<button type="button" class="btn btn-link nopadding" ng-click="$ctrl.copyValueText()" title="Copy Value">
|
||||
<pr-icon icon="'clipboard'" feather="true"></pr-icon>
|
||||
Copy
|
||||
</button>
|
||||
<span ng-class="{ 'copy-button-fadeout': $ctrl.state.isFading }" class="copy-button-copy-text">
|
||||
<pr-icon icon="'check'" feather="true"></pr-icon>
|
||||
copied
|
||||
</span>
|
||||
</span>
|
||||
|
|
|
@ -47,6 +47,10 @@
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.datatable tr > td a.actions {
|
||||
color: currentColor;
|
||||
}
|
||||
|
||||
.toolBar .actionBar {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
|
|
@ -4,6 +4,12 @@
|
|||
</div>
|
||||
|
||||
<button type="button" class="btn btn-link nopadding" ng-click="$ctrl.show = !$ctrl.show" title="Show/Hide value">
|
||||
<div ng-if="!$ctrl.show"> <i class="fa fa-eye-slash"></i> Show</div>
|
||||
<div ng-if="$ctrl.show"> <i class="fa fa-eye"></i> Hide</div>
|
||||
<div ng-if="!$ctrl.show">
|
||||
<pr-icon icon="'eye-off'" feather="true"></pr-icon>
|
||||
Show</div
|
||||
>
|
||||
<div ng-if="$ctrl.show">
|
||||
<pr-icon icon="'eye'" feather="true"></pr-icon>
|
||||
Hide</div
|
||||
>
|
||||
</button>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue