Skip to content

Commit

Permalink
fix(dedicated,vps): margin issues around sshkey component
Browse files Browse the repository at this point in the history
ref: MANAGER-15969
Signed-off-by: Jean-Baptiste Delon <[email protected]>
  • Loading branch information
JayBeeDe committed Mar 5, 2025
1 parent 4ccd65b commit 3cfc2ab
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ <h5 data-translate="server_configuration_installation_inputs_title"></h5>
>
<!-- all header -->
<label class="oui-field__label">
<span data-ng-bind="input.description"></span
<h6><span data-ng-bind="input.description"></span
><span
data-ng-if="input.mandatory"
class="oui-color-ae-500"
oui-tooltip="{{:: 'server_configuration_installation_inputs_item_mandatory' | translate }}"
oui-tooltip-placement="right"
>&nbsp;*</span
>
></h6>
</label>
<!-- enum -->
<select
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</div>
</div>

<div class="mt-4">
<div>
<p data-ng-if="$ctrl.currentNetboot.type === $ctrl.RESCUE">
<i class="fa fa-info-circle" aria-hidden="true"></i>
<span
Expand All @@ -59,22 +59,16 @@
</span>
</a>
</p>
</div>

<p
data-ng-if="$ctrl.currentNetboot.type === $ctrl.RESCUE || $ctrl.currentNetboot.type === $ctrl.NETWORK"
>
<strong
data-translate="server_configuration_netboot_configuration"
></strong>
</p>

<div class="mt-5">
<div data-ng-if="$ctrl.currentNetboot.type === $ctrl.RESCUE">
<oui-field
label="{{:: 'server_configuration_netboot_rescue_choice' | translate}}"
size="xl"
>
<select
class="form-control"
class="form-control mt-3"
id="rescue"
name="rescue"
data-ng-options="rescue as rescue.kernel + ' - ' + rescue.description for rescue in $ctrl.netboots.rescue track by rescue.kernel"
Expand All @@ -90,7 +84,7 @@
</select>
</oui-field>

<div class="row mb-2">
<div class="row mb-5">
<div
class="col-md-4"
data-ng-repeat="(key, data) in $ctrl.rescueAuthMethods"
Expand All @@ -117,7 +111,7 @@
size="xl"
>
<input
class="oui-input"
class="oui-input mt-3"
type="email"
id="rescueMail"
name="rescueMail"
Expand All @@ -136,7 +130,7 @@
size="xl"
>
<select
class="form-control"
class="form-control mt-3"
id="kernel"
name="kernel"
data-ng-options="network as network.description group by network.kernel for network in $ctrl.netboots.network"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"server_configuration_netboot_option_harddisk": "Booter sur le disque dur",
"server_configuration_netboot_option_rescue": "Booter en mode rescue",
"server_configuration_netboot_option_network": "Booter en mode network",
"server_configuration_netboot_configuration": "Configuration :",
"server_configuration_netboot_rescue_help": "Le rescue peut-être utile pour diagnostiquer des dysfonctionnements matériels sur un serveur dédié.",
"server_configuration_netboot_rescue_help_link": "Accéder au guide de diagnostic matériel.",
"server_configuration_netboot_rescue_choice": "Rescue disponible :",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
data-label="{{ ::'vps_configuration_reinstall_step1_question' | translate }}"
data-help-text="{{(!$ctrl.summary.windowsActivated ? 'vps_configuration_reinstall_windows_option' : '') | translate}}"
>
<div class="oui-select">
<div class="oui-select mt-3">
<select
name="templates"
id="templates"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<oui-select
id="imageId"
name="imageId"
class="mt-3"
data-items="$ctrl.availableImages"
data-match="name"
data-model="$ctrl.image"
Expand Down

0 comments on commit 3cfc2ab

Please sign in to comment.