CyberAP
Well-known member
We have duplicates in CSS code:
They both do the same thing but with one difference: #content .pageContent can be styled in the style properties (General -> content) but #content .pageWidth only accepts @contentBackground color from the color palette. IMO there should be only one background (#content .pageContent) or at least #content .pageWidth should be customized the same as the #content .pageContent. Otherwise it's a problem when styling with style properties.
Code:
#content .pageContent {
background-color: rgb(252, 252, 255);
}
Code:
#content .pageWidth {
background-color: rgb(252, 252, 255);
}
They both do the same thing but with one difference: #content .pageContent can be styled in the style properties (General -> content) but #content .pageWidth only accepts @contentBackground color from the color palette. IMO there should be only one background (#content .pageContent) or at least #content .pageWidth should be customized the same as the #content .pageContent. Otherwise it's a problem when styling with style properties.