mirror of
https://github.com/portainer/portainer.git
synced 2025-08-10 08:15:25 +02:00
feat(ui): fix icon spacing/alignment and button text color for the Docker volume browsing pages EE-3513
This commit is contained in:
parent
0141e55936
commit
4aa07bfa12
2 changed files with 5 additions and 3 deletions
|
@ -76,9 +76,11 @@
|
|||
></a>
|
||||
</span>
|
||||
<span ng-if="!item.edit && item.Dir">
|
||||
<a ng-click="$ctrl.browse({name: item.Name})"><pr-icon icon="'folder'" feather="true" class-name="space-right"></pr-icon>{{ item.Name }}</a>
|
||||
<a class="vertical-center" ng-click="$ctrl.browse({name: item.Name})">
|
||||
<pr-icon icon="'folder'" feather="true" class-name="space-right"></pr-icon>{{ item.Name }}
|
||||
</a>
|
||||
</span>
|
||||
<span ng-if="!item.edit && !item.Dir"><pr-icon icon="'file'" feather="true" class-name="space-right"></pr-icon>{{ item.Name }} </span>
|
||||
<span class="vertical-center" ng-if="!item.edit && !item.Dir"> <pr-icon icon="'file'" feather="true" class-name="space-right"></pr-icon>{{ item.Name }} </span>
|
||||
</td>
|
||||
<td>{{ item.Size | humansize }}</td>
|
||||
<td>
|
||||
|
|
|
@ -189,7 +189,7 @@
|
|||
}}</a>
|
||||
<span ng-if="$ctrl.offlineMode">{{ item.Id | truncate: 40 }}</span>
|
||||
<btn authorization="DockerAgentBrowseList" ng-if="$ctrl.showBrowseAction && !$ctrl.offlineMode">
|
||||
<a ui-sref="docker.volumes.volume.browse({ id: item.Id, nodeName: item.NodeName })" class="btn btn-xs btn-primary space-left">
|
||||
<a ui-sref="docker.volumes.volume.browse({ id: item.Id, nodeName: item.NodeName })" class="btn btn-xs btn-primary space-left !text-white">
|
||||
<pr-icon icon="'search'" feather="true"></pr-icon> browse
|
||||
</a>
|
||||
</btn>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue