我有一個包含分組對象列表項的列表。 Like here in the Explored App,點擊Samples。現在,所有這些項目都有一個填充1rem
,由CSS與選擇器.sapMLIB.sapMObjLItem
給出。如何從對象列表項中刪除填充?
現在我想減少頂部和底部填充到0.25rem
,所以增加了一個 類對象和進口的自定義的CSS(經由manifest.json
),所有所描述的in the Walkthrough。它不工作,因爲正常的CSS覆蓋我的自定義的。
另一個嘗試是將類sapUiNoContentPadding
添加到元素,但也是後面的css規則會被第一段中描述的規則覆蓋。
我在做什麼錯?如何刪除該填充而不重寫渲染器?
MyView的:
<mvc:View
controllerName="sap.ui.xxxx.someapp.controller.MyList"
xmlns="sap.m"
xmlns:mvc="sap.ui.core.mvc">
<StandardListItem title="Titel"/>
<List class="sapUiResponsiveMargin sapUiNoContentPadding"
width="auto"
items="{path : '//elementsSet',
sorter : {
path : 'attribute1}',
group : true
}
}">
<items>
<ObjectListItem title="{= ${attribute1} === '' ? 'Enter Text Please' : ${attribute1}}"
icon="{= ${attribute1} === '' ? 'sap-icon://alert' : 'sap-icon://sys-enter'}"
number="{attribute4}"
numberUnit="$"
numberState="{= ${attribute4} > 10 ? 'Error' : 'Success' }"
type="Active" press="onItemPress"
markFlagged="true" markFavorite="true"
showMarkers="true"
class="sapUiNoContentPadding myownclassforpadding">
<firstStatus>
<ObjectStatus
text="some text" />
</firstStatus>
<attributes>
<ObjectAttribute text="{attribute1}" visible="false"/>
<ObjectAttribute text="{attribute2}"/>
<ObjectAttribute text="{attribute3}" visible="false"/>
<ObjectAttribute text="{attribute4}" visible="false"/>
</attributes>
</ObjectListItem>
</items>
</List>
</mvc:View>
我的CSS
.myownclassforpadding{
padding: 0;
background-color: green;
}
爲什麼?有什麼想法? – inetphantom
使其更具體。請參閱此文檔以瞭解詳細信息:https://openui5beta.hana.ondemand.com/#docs/guide/723f4b2334e344c08269159797f6f796.html – Saddamhussain