All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.skin.web.resources.formattedtextfield.xml Maven / Gradle / Ivy

The newest version!
<skin xmlns="http://weblookandfeel.com/XmlSkin">

    <!-- com.alee.laf.text.WebFormattedTextField -->

    <!-- Formatted text field -->
    <style type="formattedtextfield" padding="2">
        <component>
            <opaque>false</opaque>
            <foreground>black</foreground>
            <selectedTextColor>black</selectedTextColor>
            <selectionColor>154,178,206</selectionColor>
            <caretColor>gray</caretColor>
        </component>
        <painter>
            <inputPromptHorizontalPosition>10</inputPromptHorizontalPosition>
            <inputPromptVerticalPosition>1</inputPromptVerticalPosition>
            <inputPromptForeground>160,160,160</inputPromptForeground>
            <inputPromptOnlyWhenEditable>true</inputPromptOnlyWhenEditable>
            <hideInputPromptOnFocus>false</hideInputPromptOnFocus>
            <decorations>
                <decoration>
                    <WebShape round="2" />
                    <WebShadow type="outer" width="2" />
                    <LineBorder color="170,170,170" />
                    <ColorBackground color="white" />
                </decoration>
                <decoration states="focused">
                    <LineBorder color="85,130,190" />
                </decoration>
                <decoration states="disabled">
                    <WebShadow type="outer" opacity="0" />
                    <LineBorder color="lightGray" />
                </decoration>
            </decorations>
        </painter>
    </style>

    <!-- Non-opaque formatted text field -->
    <style type="formattedtextfield" id="non-opaque">
        <component>
            <opaque>false</opaque>
        </component>
        <painter>
            <decorations overwrite="true">
                <decoration>
                    <BoundsShape />
                    <ColorBackground color="white" />
                </decoration>
            </decorations>
        </painter>
    </style>

    <!-- Transparent formatted text field -->
    <style type="formattedtextfield" id="transparent" extends="non-opaque">
        <painter>
            <decorations overwrite="true" />
        </painter>
    </style>

    <!-- Formatted text field without focus decoration -->
    <style type="formattedtextfield" id="nofocus">
        <painter>
            <decorations>
                <decoration states="focused">
                    <LineBorder color="170,170,170" />
                </decoration>
            </decorations>
        </painter>
    </style>

</skin>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy