你的CSS選擇器必須比默認.sapUiPanelCont一個更具體。 The most specific selector 'wins'。
所以,你可以嘗試使用選擇.sapUiPanelCont.exampleClass
和忽略的重要標誌!
.sapUiPanelCont.exampleClass
{
padding: 0px;
}
您可以將樣式添加到一個新的.css文件,並在你的組件元/描述符引用它。請參閱Table 4 of documentation。
...
"sap.ui5": {
"resources":{ //relative urls inside component
"css": [{
"uri": "myStyles.css"
}]
},
...
隨着myStyles.css一旦你的組件加載,就會被添加到html文檔中。
或者,如果你正在使用XMLViews,可以inline the styles into the view:
<mvc:View controllerName="whatever" xmlns="sap.ui.commons" xmlns:mvc="sap.ui.core.mvc"
xmlns:html="http://www.w3.org/1999/xhtml">
<html:style>
.sapUiPanelCont.exampleClass
{
padding: 0px;
}
</html:style>
<Panel class="exampleClass" text="Outer Panel">
<Panel text="Inner Panel">
</Panel>
</Panel>
</mvc:View>