mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-12 13:35:00 +01:00
Fix overlapping for repo cardview (#16125)
Signed-off-by: AllForNothing <sshijun@vmware.com>
This commit is contained in:
parent
f3d1468458
commit
d9a4f34819
@ -1,6 +1,6 @@
|
||||
.grid-content {
|
||||
position: relative;
|
||||
top: 36px;
|
||||
top: 66px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
|
@ -96,10 +96,10 @@
|
||||
<clr-icon shape="caret down"></clr-icon>
|
||||
</button>
|
||||
<clr-dropdown-menu clrPosition="top-left" *clrIfOpen>
|
||||
<button *ngIf="withAdmiral" type="button" class="btn btn-link" clrDropdownItem (click)="itemAddInfoEvent($event, item)" [disabled]="!hasProjectAdminRole">
|
||||
<button *ngIf="withAdmiral" type="button" class="btn btn-link" clrDropdownItem (click)="itemAddInfoEvent($event, item);$event.stopPropagation();$event.preventDefault()" [disabled]="!hasProjectAdminRole">
|
||||
{{'REPOSITORY.ADDITIONAL_INFO' | translate}}
|
||||
</button>
|
||||
<button type="button" class="btn btn-link" clrDropdownItem (click)="deleteItemEvent($event, item)" [disabled]="!hasDeleteRepositoryPermission">
|
||||
<button type="button" class="btn btn-link" clrDropdownItem (click)="deleteItemEvent($event, item);$event.stopPropagation();$event.preventDefault()" [disabled]="!hasDeleteRepositoryPermission">
|
||||
{{'REPOSITORY.DELETE' | translate}}
|
||||
</button>
|
||||
</clr-dropdown-menu>
|
||||
|
@ -42,7 +42,7 @@
|
||||
|
||||
.rightPos{
|
||||
@include grid-right-top-pos;
|
||||
top: 22px;
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
|
Loading…
Reference in New Issue
Block a user