Text Field
- Usage
- Styling
Style Properties
The following style properties can be used in CSS stylesheets to customize the appearance of this component.
To apply values to these properties globally in your application UI, place them in a CSS block using the html {…}
selector.
See Lumo Style Properties for more information on style properties.
Note
|
Input Field Components Shared Styles
Style properties whose names start with --vaadin-input-field are shared among all input field components. To apply them only to a specific type of component, use an element selector like vaadin-text-field {…}
|
Field Surface
Feature | Property | Default Value |
---|---|---|
Background |
|
|
Background, invalid |
|
|
Background, hover highlight color |
|
|
Background, invalid hover highlight color |
|
|
Border width |
|
|
Border color |
|
|
Hover highlight opacity |
|
|
Height |
|
|
Value text color |
|
|
Value font size |
|
|
Value font weight |
|
|
Placeholder text color |
|
|
Border radius |
|
|
Read-only border |
|
|
Label
Feature | Property | Default Value |
---|---|---|
Color |
|
|
Focused color |
|
|
Hovered color |
|
|
Font size |
|
|
Font weight |
|
|
Helper
Feature | Property | Default Value |
---|---|---|
Font size |
|
|
Font weight |
|
|
Color |
|
|
Top margin |
|
|
CSS Selectors
The following CSS selectors can be used in stylesheets to target the various parts and states of the component. See the Styling documentation for more details on how to style components.
- Root element
-
vaadin-text-field
States
- Required
-
vaadin-text-field
[required] - Focused
-
vaadin-text-field
[focused] - Keyboard focused
-
vaadin-text-field
[focus-ring] - Read-only
-
vaadin-text-field
[readonly] - Disabled
-
vaadin-text-field
[disabled] - Not empty
-
vaadin-text-field
[has-value] - Hovered
-
vaadin-text-field
:hover
Field
- Field surface (background, border)
-
vaadin-text-field
::part(input-field) - Native input element
-
vaadin-text-field
> input - Input field with placeholder shown
-
vaadin-text-field
> input:placeholder-shown - Clear button
-
vaadin-text-field
::part(clear-button) - Clear button icon
-
vaadin-text-field
::part(clear-button)::before - Prefix element
-
vaadin-text-field
> [slot="prefix"] - Suffix element
-
vaadin-text-field
> [slot="suffix"]
Label
- Field with label
-
vaadin-text-field
[has-label] - Label
-
vaadin-text-field
::part(label) - Label text
-
vaadin-text-field
> label - Required indicator
-
vaadin-text-field
::part(required-indicator)
Helper and Validation Error
- Field with helper
-
vaadin-text-field
[has-helper] - Helper
-
vaadin-text-field
::part(helper-text) - Helper text
-
vaadin-text-field
> [slot="helper"] - Invalid field
-
vaadin-text-field
[invalid] - Error message
-
vaadin-text-field
::part(error-message) - Error message text
-
vaadin-text-field
> [slot="error-message"]