Hi Jonas,
I think you need to separate the CSS classes.
.sapzencrosstab-HeaderCellDefault .sapzencrosstab-DataArea, .sapzencrosstab-DimensionHeaderArea, .sapzencrosstab-ColumnHeaderArea
{
font-size : 7px;
height : 10px;
}
The declaration above means that the font-size and height will be applied to these CSS classes: .sapzencrosstab-HeaderCellDefault , .sapzencrosstab-DataArea, .sapzencrosstab-DimensionHeaderArea and .sapzencrosstab-ColumnHeaderArea
If you seperate the header classes and the data/cell classes, you will be able to apply different properties. For example:
.sapzencrosstab-HeaderCellDefault .sapzencrosstab-DimensionHeaderArea, .sapzencrosstab-ColumnHeaderArea
{
font-size : 7px;
height : 10px;
}
.sapzencrosstab-DataArea,
{
font-size : 10px;
height : 12px;
}
Regards,
Jean-Guillaume