Applying CSS style to in_place_editor_field?

I have a simple in_place_editor_field but the default style when
clicking it isn’t quite acceptable for my needs.

I tried using options that in_place_editor can take advantage of but I’m
still getting a small field with a very close “Ok” button.

I’m currently using:

  <% for note in status_notes.notes %>
    <li>
      <% @note = note %>
      <%= in_place_editor_field :note, :body %>
    </li>
  <% end %>

That works great but if I could span it to be much wider and make it
expand to a text area with 3-4 rows I would like to be able to do that.

Any thoughts would be appreciated.