selector on child

selector on child

hello, i can't find the good selector for my problem:
I've:
  1. <div class="edit">
  2.       <span class="editable>/<span>
  3.       <div class="edit-input" style="display:none;"></div>
  4.       <div class="edit-input" style="display:none;"></div>
  5. </div> 
when i do :
  1. $(".edit").click(function() {
  2.       var di = $(this).siblings('.edit-input');
  3.       di.fadeIn();
  4. }
there is no problem, all the "edit input" display. but if i have a list of "edit input" like :
  1. <div class="edit">
  2.       <span class="editable>/<span>
  3.       <ul>
  4.             <li>
  5.                    <div class="edit-input" style="display:none;"></div>
  6.             </li>
  7.              <li>

  8.                    <div class="edit-input" style="display:none;"></div>
  9.             </li>
  10. </div> 
and i want displaying all the "edit-input" div, perhaps i don't must use "siblings" but i don't find the good selecor to make what i want

Help me please

Ro