I have several input fields which are inside a listview entry. So now i´m trying to style the CSS of the input fields in such a way that it looks like a normal listview entry.
The input field will be filled out by angular´s ng-model, but this is not really important.
This is what i did so far, but i think i need help with margin/padding etc.
// CSS input
.ui-input-text{
border: none !important;
box-shadow: none !important;
background-color : transparent;
}
// HTML
<ul data-role="listview" data-divider-theme="b">
<li data-role="list-divider">Verbraucher</li>
<li data-mini="true"> <a href="#">
// This should look like a "normal" listview entry!
<input type="text" ng-model="cust.firstname" name="cust_firstname" required>
</a></li>
...

Both should look like the same!