Window tag xml Font colour and Size change

Hi,

How can i set the custom Font Size or Font colour or any other Css properties of the Caption name mention in window tag of XML file.

<window xmlns="http://jmix.io/schema/ui/window"
        xmlns:c="http://jmix.io/schema/ui/jpql-condition"
    **caption="msg://Browse.caption"**>

Hi,

you cannot style individual Screen captions because their display is delegated to MainTabSheet Tab/DialogWindow/etc. You can only globally style screen captions, e.g.:

.v-tabsheet-jmix-main-tabsheet .v-captiontext {
  color: red;
}

Regards,
Gleb

1 Like