Support Article
Font size getting changed under tabbed layout
SA-18741
Summary
After user upgraded CMFMKIntegration 7.11 to CMFMKIntegration 7.13, and witnessed the UI issue related to font size getting changed, under tabbed layout.
Error Messages
No error messages.
Steps to Reproduce
Upgrade the CMFMKIntegration 7.11 to CMFMKIntegration 7.13. Issue not reproducible in-house.
Root Cause
An issue in the custom application code or rules due to custom CSS.
Resolution
Add the following code snippet in UserWorkForm to override the CSS attribute.
<!-- SR-A16403 - Font for readonly value-->
<style>
.field-item.dataValueRead {
font-family: Arial, sans-serif !important;
font-size: 13px!important;
font-weight: bold!important;
text-decoration: inherit;
text-transform: none;
color: #000000;
line-height: 1.3;
padding: 0px 2px 0px 0px
}
</style>
Published January 31, 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.