Good Evening.
In the component “t:panelTabbedPane” I place the style “texto_negro”.
This style is codified in a file .css and it have the following sentences:
“.texto_negro {
font-family: Arial, Helvetica, sans-serif;
font-size: 8pt;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
color: #000000;
}
“
But it does not take it.
The code is the following one:
<t:panelTabbedPane bgcolor="#AAAAFF" serverSideTabSwitch="false"
width="500px" border="0" activeTabStyleClass="false" style="texto_negro">
<t:panelTab id="tab1"
label="Pestaña_1" rendered="true" >
<h:selectBooleanCheckbox
id="testCheckBox" value="chexBox"/>
<h:outputLabel
for="testCheckBox" value="A checkbox"/>
<h:inputText
id="inp1"/><f:verbatim><br></f:verbatim>
<h:inputText id="inp2"
required="true" />
</t:panelTab>
<t:panelTab id="tab2" label="Tab2"
rendered="true">
<h:selectBooleanCheckbox
id="testCheckBox2" value="chexBox"/>
<h:outputLabel
for="testCheckBox" value="A checkbox"/>
<h:inputText
id="inp11"/><f:verbatim><br></f:verbatim>
<h:inputText id="inp21"
required="true" />
<h:outputText value="Tab 2 ....
con Tomahawk" />
</t:panelTab>
</t:panelTabbedPane>
I am grateful to whom could answer me: How I do, with styles .css,
that the tab take these styles?
Thanks