mirror of
https://github.com/goharbor/harbor
synced 2025-04-13 21:15:53 +00:00
Merge pull request #5950 from pureshine/replication_dialog
Make the replication dialog a little bit wider
This commit is contained in:
commit
1173955200
|
@ -81,7 +81,7 @@
|
|||
<!--Targets-->
|
||||
<div class="form-group form-group-override">
|
||||
<label class="form-group-label-override required">{{'DESTINATION.ENDPOINT' | translate}}</label>
|
||||
<div formArrayName="targets">
|
||||
<div formArrayName="targets" class="form-select">
|
||||
<div class="select endpointSelect pull-left" *ngFor="let target of targets.controls; let i= index" [formGroupName]="i">
|
||||
<select id="ruleTarget" (change)="targetChange($event)" formControlName="id">
|
||||
<option *ngFor="let target of targetList" value="{{target.id}}">{{target.name}}-{{target.endpoint}}</option>
|
||||
|
@ -105,7 +105,7 @@
|
|||
</select>
|
||||
</div>
|
||||
<!--on push-->
|
||||
<div formGroupName="schedule_param">
|
||||
<div formGroupName="schedule_param" class="schedule-style">
|
||||
<div class="select floatSet" [hidden]="!isScheduleOpt">
|
||||
<select name="scheduleType" formControlName="type" (change)="selectSchedule($event)">
|
||||
<option value="Daily">{{'REPLICATION.DAILY' | translate}}</option>
|
||||
|
|
|
@ -74,6 +74,10 @@ h4 {
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.schedule-style {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.floatSet {
|
||||
display: inline-block;
|
||||
width: 82px;
|
||||
|
@ -150,6 +154,10 @@ h4 {
|
|||
width: 6.5rem;
|
||||
}
|
||||
|
||||
.form-select {
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.goLink {
|
||||
color: blue;
|
||||
border-bottom: 1px solid blue;
|
||||
|
@ -167,7 +175,7 @@ h4 {
|
|||
|
||||
clr-modal {
|
||||
::ng-deep div.modal-dialog {
|
||||
width: 25rem;
|
||||
width: 29rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user