Thank you for your hint, I'll try it as soon as I can.
It seems that I'm not quite there yet, I'm two steps behind.
I'm using a skin extending the simple-desktop:
<skins xmlns="http://myfaces.apache.org/trinidad/skin">
<skin>
<id>stp.desktop</id>
<family>stp</family>
<render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
<style-sheet-name>
resources/css/skin-stp.css
</style-sheet-name>
<extends>simple.desktop</extends>
</skin>
</skins>
and in skin-stp.css I define some things, such as
.AFDefaultFont:alias {
font-size : 18px;
}
and
af|inputText::label {
background-color: red;
font-weight: bold;
}
And none of them is working. The text is overall very small (nowhere near
the 18px I put there to test) and tr:inputText labels are neither red nor
bold. It seems like it is ignoring my skin-stp.css definitions. What could
cause this?
On 5/11/07, Simon Lessard <[EMAIL PROTECTED]> wrote:
Hello Francisco,
You could try the following:
af|inputText::label.myStyleClass {
font-weight : bold;
}
<tr:inputText styleClass="myStyleClass"/>
I think it might work.
Regards,
~ Simon
On 5/11/07, Francisco Passos <[EMAIL PROTECTED]> wrote:
>
> Hello there!
>
> I'd like most of my inputTexts to be rendered as they are by default.
>
> However, I'd like a few of them to have a bold label.
>
> I tried this:
>
> af|inputText::label {
> font-weight : bold;
> }
>
> But as you know this leads every inputText to have their labels in bold.
>
> Is there any way to reference ::label from within the inlineStyle
> property and define this property on the spot?
>