Mal formating if toogle, text input, smart select in same UL

Dear all
is it possible to have a toogle switch and a input field in one UL tag? I tried it, but it seems not to work.
For the toogle switch I need the class “simple-list” but this causes formating issues in the text-area / smart select.

Without simple list, the toogle switch is not correctly formated…

To summarize: The toggle switch requires “simple-list” while text/area input or smart select do not work together with “simple-list” - at least this is my impression.

From my point of view some CSS formating is missing to ensure that the toogle switch is correctly formated also without “simple-list” class

Best regards
Andreas

<div class="list simple-list inline-labels no-hairlines-md">
   <ul>
      <li class="item-content item-input">
         <div class="item-inner">
            <div class="item-title item-label">text input</div>
            <div class="item-input-wrap">
               <textarea class=""></textarea>
            </div>
         </div>
     </li>
     <li>
        <a class="item-link smart-select smart-select-init" data-open-in="sheet"> 
           <select id="dummyId" name="dummyId"></select>
           <div class="item-content">
              <div class="item-inner">
                 <div class="item-title">Select</div>
                 <div class="item-after"></div>
              </div>
           </div>
       </a>
    </li>
    <li>
       <span>Switch</span>
       <label class="toggle toggle-init">
          <input type="checkbox">
          <span class="toggle-icon"></span>
       </label>
    </li>
  </ul>
</div>

Why? It is not mandatory. Just put it in item-after

<li class="item-content">
         <div class="item-inner">
            <div class="item-title">Switch</div>
            <div class="item-after">
               <label class="toggle toggle-init">...</label>
            </div>
         </div>
     </li>

Many thanks. Works perfect…

Proposal: I guess pretty often the developpers use an example and change it according to their needs.

Would it make sense to add your example (without smart list) on the page dealing with toogles & on the page dealing with input elements (with reference to toogles)?

Many thanks
Andreas