mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-20 09:15:19 +01:00
Fix cron input box and select box not in one line
Signed-off-by: FangyuanCheng <fangyuanc@vmware.com>
This commit is contained in:
parent
fd353a8f7f
commit
73e408b851
@ -33,7 +33,7 @@
|
||||
</select>
|
||||
</div>
|
||||
<span [hidden]="scheduleType!==SCHEDULE_TYPE.CUSTOM">{{ "SCHEDULE.CRON" | translate }} :</span>
|
||||
<div [hidden]="scheduleType!==SCHEDULE_TYPE.CUSTOM">
|
||||
<div [hidden]="scheduleType!==SCHEDULE_TYPE.CUSTOM" class="cron-input">
|
||||
<label for="targetCron" aria-haspopup="true" role="tooltip" [class.invalid]="dateInvalid" class="tooltip tooltip-validation tooltip-md tooltip-top-right cron-label">
|
||||
<input type="text" (blur)="blurInvalid()" (input)="inputInvalid()" name=targetCron id="targetCron" #cronStringInput="ngModel" required class="form-control"
|
||||
[(ngModel)]="cronString">
|
||||
|
@ -37,6 +37,12 @@
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.cron-input {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 270px;
|
||||
}
|
||||
|
||||
.cron-label {
|
||||
width: 195px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user