Support Article
Scrollbar does not show in "custom style" section of skin rule
SA-30127
Summary
Scrollbar does not appear in "custom style" section of skin rule in Pega 7.2.1, but is appearing in the lower versions.
Error Messages
Not applicable
Steps to Reproduce
1. Open Skin rule.
2. Go to "Custom Styles".
3. See right panel.
Root Cause
Issue is because of the CSS in pz-skin-rule.css file. Due to below CSS the issue occurs:
div[data-node-id="RuleFormLayout"] > .headerTabbed {
overflow: hidden!important;
flex: 0 1 auto;
}
Resolution
Paste below CSS in UserWorkForm:
<style>
.pega-skin-cols.active > .item-1 {
z-index: 1;
}
.pega-skin-cols > .content-item.content-layout.item-2.remove-all-spacing {
top: 106px;
overflow: auto;
}
.pega-skin-cols > .item-2 {
position: fixed;
bottom: 0;
left: 0;
}
</style>
Published November 15, 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.