Support Article
Skin Format of Tree and Grid is not working
SA-30178
Summary
Skin Format spreadsheet of Tree&Grids is not picking the styles defined in the skin.
Right, bottom border is not getting applied when select "Apply to all sides" for border.
Error Messages
Not applicable
Steps to Reproduce
- Open skin rule, select Tree&Grids and create a format.
- Try to apply borders for all sides for spreadsheet format.
Root Cause
As the styles were getting overrided by "div.gridDefault div.spreadsheet #gridLayoutTable, div.gridDefault div.spreadsheet #gridHeaderTable" class, it is not picking the rules as defined in the skin.
Resolution
Note: A bug is raised for addressing in future releases.
As a local-change, the below piece of code can be placed in UserWorkForm or to the style sheet in the harness rule:
<style>
div.gridDefault div.spreadsheet #gridLayoutTable, div.gridDefault div.spreadsheet #gridHeaderTable {
border-bottom-color: #ffffff !important; /* change here */
border-bottom-style: solid !important;
border-bottom-width: 1px !important;
border-right-color: #ffffff !important; /* change here */
border-right-style: solid !important;
border-right-width: 1px !important;
}
</style>
Published November 17, 2016 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.