fix stack name placeholder and some css styling (#10523)

pull/10545/head
Prabhat Khera 2023-10-25 08:59:10 +13:00 committed by GitHub
parent ae1726cece
commit 577eef5de0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -38,7 +38,7 @@
ng-model="ctrl.formValues.Namespace" ng-model="ctrl.formValues.Namespace"
ng-options="namespace.Name as namespace.Name for namespace in ctrl.namespaces" ng-options="namespace.Name as namespace.Name for namespace in ctrl.namespaces"
></select> ></select>
<span ng-if="ctrl.formValues.namespace_toggle">Namespaces specified in the manifest will be used</span> <span ng-if="ctrl.formValues.namespace_toggle" class="small text-muted pt-[7px]">Namespaces specified in the manifest will be used</span>
</div> </div>
</div> </div>
@ -51,7 +51,9 @@
<div class="form-group"> <div class="form-group">
<label for="name" class="col-lg-2 col-sm-3 control-label text-left">Name</label> <label for="name" class="col-lg-2 col-sm-3 control-label text-left">Name</label>
<div class="col-sm-8" ng-if="ctrl.state.BuildMethod !== ctrl.BuildMethods.HELM"> Resource names specified in the manifest will be used </div> <div class="col-sm-8 small text-muted pt-[7px]" ng-if="ctrl.state.BuildMethod !== ctrl.BuildMethods.HELM">
Resource names specified in the manifest will be used
</div>
<div class="col-sm-8" ng-if="ctrl.state.BuildMethod === ctrl.BuildMethods.HELM"> <div class="col-sm-8" ng-if="ctrl.state.BuildMethod === ctrl.BuildMethods.HELM">
<input <input
type="text" type="text"
@ -59,7 +61,7 @@
ng-model="ctrl.formValues.Name" ng-model="ctrl.formValues.Name"
id="name" id="name"
name="name" name="name"
placeholder="name" placeholder="e.g. my-app"
required="ctrl.state.BuildMethod === ctrl.BuildMethods.HELM" required="ctrl.state.BuildMethod === ctrl.BuildMethods.HELM"
/> />
<div class="small text-warning mt-2"> <div class="small text-warning mt-2">