我有几个输入字段位于列表视图条目中。所以现在我正在尝试以一种看起来像普通列表视图条目的方式设置输入字段的 CSS 样式。
输入字段将由 angular 的 ng-model 填充,但这并不重要。
这是我到目前为止所做的,但我认为我需要边距/填充等方面的帮助。
// 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>
...
两者应该看起来一样!