mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[ML] Fixes alignment of dedicated index checkbox (#28270)
* [ML] Aligning dedicated index checkbox * fixing-overflowing-input
This commit is contained in:
parent
1afe7c2667
commit
44143199c2
2 changed files with 8 additions and 2 deletions
|
@ -20,6 +20,12 @@
|
|||
label {
|
||||
font-weight: $euiFontWeightRegular;
|
||||
}
|
||||
.dedicated-index-label {
|
||||
margin-left: $euiSizeXS;
|
||||
}
|
||||
.model-memory-input-input {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
aria-describedby="ml_aria_description_new_job_dedicated_index"
|
||||
class='kuiCheckBox'
|
||||
ng-model ="formConfig.useDedicatedIndex" />
|
||||
<span class='kuiCheckBoxLabel__text'>
|
||||
<span class='kuiCheckBoxLabel__text dedicated-index-label'>
|
||||
<span id="ml_aria_label_new_job_dedicated_index">Use dedicated index</span>
|
||||
<i ml-info-icon="new_job_dedicated_index" ></i>
|
||||
</span>
|
||||
|
@ -80,7 +80,7 @@
|
|||
aria-describedby="ml_aria_description_new_job_model_memory_limit"
|
||||
type="text"
|
||||
ng-model='formConfig.modelMemoryLimit'
|
||||
class="kuiTextInput kuiTextInput--large" />
|
||||
class="kuiTextInput kuiTextInput--large model-memory-input-input" />
|
||||
<div ng-hide="ui.validation.checks.modelMemoryLimit.valid" class="validation-error">{{ ui.validation.checks.modelMemoryLimit.message }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue