Project

General

Profile

Bug #55604

Updated by Ernesto Puerta almost 2 years ago

!validation_icons_chrome.png!

Seems to be caused by the following CSS rule in the @styles.css@ file (it's a Boostrap rule): file:
<pre><code class="css">
.was-validated select.form-control:valid, .was-validated select.cd-form-control:valid, select.form-control.is-valid, select.is-valid.cd-form-control {
padding-right: 3rem !important;
background-position: right 1.5rem center;
}
</code></pre>

Just disabling the above code fixes the issue.

It seems that @form-control@ and @custom-select@ shouldn't be used together as both are mutually exclusive. Custom select was added "here":https://github.com/ceph/ceph/pull/25188/commits/150966875302cbcd71c4bfd7d3faa97e3ae5550f.

Back