Skip to Content
0
Former Member
Feb 05, 2009 at 03:57 PM

How to .. change fontsize in tables

39 Views

Hi, we modify css used in mxlm file the visual composer.

Path :

/usr/sap/PRD/JC00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/portalapps/com.sap.vc.mmcompiler/res/root/vc/skins/

Files :

default.css

defaultSkins.css

<mx:Application pageTitle="{LANG.CjhEfBJEEEhdkeGmDApBf}" initialize="initEngine()" creationComplete="VC.initIframes()" styleName="plain" width="100%" height="100%" xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns:vc="vc.controls.*" xmlns:vi="vc.interactors.*" xmlns:vg="*">
	<mx:Script source="/vc/base/Config.as"/>
	<mx:Style source="/vc/skins/default.css"/>
	<mx:Style source="/vc/skins/defaultSkins.css"/>
	<mx:Style source="/vc/skins/shared.css"/>

Changing Font Type in File : default.css

@font-face {
	font-family: chartLabelFont;
	src: local("Calibri");
}

Stting Font Sizes & Colors in File : defaultSkins.css

Panel
{
	headerColors:#82A4CE,#92B5E0,#95B7E2,#97BAE4;  
	headerColors2: #9BB9D4,#BAD2E8; 
	headerBorderColor: #87A3C0;
	fontSize: 10;
}

Problem in Label area, files mxml use static fontsize value

<mx:Label styleName="Label" text="{LANG.BeBlHDdFiCiaeCGIdeEIJ}:" fontWeight="normal" fontSize="12" disabledColor="#999999"/>

Try using in css font-size for try overwrite static value

.Label {
    color: #656565;
    font-size: 10;
}