com.alee.skin.web.resources.textfield.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weblaf-ui Show documentation
Show all versions of weblaf-ui Show documentation
WebLaf is a Java Swing Look and Feel and extended components library for cross-platform applications
<skin> <!-- com.alee.laf.text.WebTextField --> <!-- Text field --> <style type="textfield" padding="2"> <component> <opaque>false</opaque> <foreground>black</foreground> <selectedTextColor>black</selectedTextColor> <selectionColor>210,210,210</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> <!-- Text field undecorated --> <style type="textfield" id="undecorated"> <painter> <decorations> <decoration visible="false" /> </decorations> </painter> </style> <!-- Text field without focus decoration --> <style type="textfield" id="nofocus"> <painter> <decorations> <decoration states="focused"> <LineBorder color="170,170,170" /> </decoration> </decorations> </painter> </style> </skin>