Boolean$window-splitter-disable-everything: false !default;Set to true to disable generating any styles
Boolean$window-splitter-disable-horizontal: false !default;Set to true to disable the horizontal WindowSplitter styles.
Boolean$window-splitter-disable-vertical: false !default;Set to true to disable the vertical WindowSplitter styles.
Boolean$window-splitter-disable-reversed: false !default;Set to true to disable the reversed WindowSplitter styles.
Boolean$window-splitter-disable-absolute-position: false !default;Set to true to disable the position: absolute styles
Boolean$window-splitter-disable-inactive-background-color: false !default;Set to true to disable the inactive background-color styles.
Number$window-splitter-size: 1rem !default;The default WindowSplitter draggable area.
Number$window-splitter-background-size: 0.25rem !default;The default WindowSplitter visible size (background-color).
Color$window-splitter-background-color: interaction.get-var(focus-color) !default;The default background-color for the WindowSplitter while being interacted with by the user.
Color$window-splitter-inactive-background-color: divider.get-var(color) !default;An optional background-color to use while the
Number$window-splitter-z-index: 30 !default;The default z-index for the WindowSplitter.
List$window-splitter-variables: (
size,
background-size,
x,
y,
z,
position,
background-color,
inactive-background-color,
opacity
);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 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 |