Boolean$text-area-disable-everything: base.$form-disable-everything !default;Set to true to disable the TextArea styles
Boolean$text-area-disable-resizing-rows: $disable-everything !default;Set to true if the TextArea does not need to support the
resize="auto" behavior.
Boolean$text-area-disable-resize-horizontal: $disable-everything !default;Set to true if the resize="horizontal" will not be used for the
TextArea.
Boolean$text-area-disable-resize-vertical: $disable-everything !default;Set to true if the resize="vertical" will not be used for the
TextArea.
Number$text-area-addon-top: spacing.get-var(lg) !default;The default position for addons within a TextArea.
Number$text-area-vertical-padding: calc(spacing.get-var(sm) * 1.5) !default;The default vertical padding to apply to TextArea which is useful when there is a scrollbar visible. This should normally be enough so that the floating label does not cover the content.
List$text-area-variables: (height, padding);The available configurable css variables and mostly used internally for the
get-var, set-var, and use-var utils.
mixin@mixin set-var($name, $value) { … }| Name | Description | Type | Default Value |
|---|---|---|---|
$name | The supported variable name | String | — |
$value | The value to set the variable to. Supports | any | — |
mixin@mixin use-var($property, $name: $property, $fallback: null) { … }mixin@mixin textarea-container-styles($disable-layer: false) { … }Generates all the styles based on feature flags.
| Name | Description | Type | Default Value |
|---|---|---|---|
$disable-layer | Set this to | Boolean | false |
mixin@mixin textarea-styles($disable-layer: false) { … }Generates all the styles based on feature flags.
| Name | Description | Type | Default Value |
|---|---|---|---|
$disable-layer | Set this to | Boolean | false |
mixin@mixin styles($disable-layer: false) { … }Generates all the styles based on feature flags.
| Name | Description | Type | Default Value |
|---|---|---|---|
$disable-layer | Set this to | Boolean | false |
function@function get-var($name, $fallback: null) { … }Stringa var() statement
| Name | Description | Type | Default Value |
|---|---|---|---|
$name | The supported variable name | String | — |
$fallback | An optional fallback value | any | null |