Are you an LLM? You can read better optimized documentation at /api/css/form-field-messages.md for this page in Markdown format
CSS: form-field-messages
.instui-form-field-messages — Field help and validation messages — hint, error, success, and screen-reader-only — with a glyph on error and success.
Source: form-field-messages.css
Accessibility
A -type-screenreader-only message is visually hidden but stays in the accessibility tree, so it's still announced; pair error and success messages with the field via aria-describedby so assistive tech reads them with the control.
Usage
css
@import "@pantoken/components/components.css";
@import "@pantoken/components/form-field-messages.css";Examples
html
<div class="instui-form-field-messages">
<span class="instui-form-field-message -type-hint">We'll never share it.</span>
<span class="instui-form-field-message -type-error">Enter a valid email address.</span>
</div>We'll never share it.Enter a valid email address.
Structure
text
.instui-form-field-messages
.instui-form-field-messageflowchart TD
n0[".instui-form-field-messages"]:::cssdoc-root
n1(".instui-form-field-message"):::cssdoc-part
n0 --> n1
classDef cssdoc-root stroke-width:1px;
classDef cssdoc-part stroke-width:1px;
classDef cssdoc-slot stroke-width:1px;
classDef cssdoc-component stroke-width:1px;
Modifiers
| Modifier | Description |
|---|---|
.-type-new-error | Deprecated — use .-type-error. |
Parts
| Part | Description |
|---|---|
.instui-form-field-message | An individual message; its -type-* picks the hint, error, success, or screen-reader-only variant. |
Pseudo-elements
| Pseudo-element | Description |
|---|---|
::before | Renders the leading status glyph on error and success messages: an alert circle for errors and a check circle for success. |
Tokens consumed
| Token | Type | Value |
|---|---|---|
--instui-component-form-field-layout-gap-primitives | <length> | 0.5rem |
--instui-component-form-field-message-error-text-color | <color> | light-dark(#CF1F24, #FA917F)LightDark |
--instui-component-form-field-message-font-family | [ <font-family-name> | <generic-font-family> ]# | Atkinson Hyperlegible Next, "Helvetica Neue", Helvetica, Arial, sans-serif |
--instui-component-form-field-message-font-size | <length> | 0.875rem |
--instui-component-form-field-message-font-weight | <integer> | 400 |
--instui-component-form-field-message-hint-text-color | <color> | light-dark(#273540, #ffffff)LightDark |
--instui-component-form-field-message-line-height | <length> | 1.25rem |
--instui-component-form-field-message-success-text-color | <color> | light-dark(#037D37, #61C378)LightDark |
--instui-icon-circle-alert | <image> | url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2210%22%2F%3E%3Cline%20x1%3D%2212%22%20x2%3D%2212%22%20y1%3D%228%22%20y2%3D%2212%22%2F%3E%3Cline%20x1%3D%2212%22%20x2%3D%2212.01%22%20y1%3D%2216%22%20y2%3D%2216%22%2F%3E%3C%2Fsvg%3E') |
--instui-icon-circle-check | <image> | url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2210%22%2F%3E%3Cpath%20d%3D%22m9%2012%202%202%204-4%22%2F%3E%3C%2Fsvg%3E') |
Related
- form-field — Wraps a label, controls, and these messages.