Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions docs/styles.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,12 +288,12 @@ Variables for the Number with Scale input component:

Variables for the Object Base component:

| Variable | Default Value | Description |
| :---------------------------------------- | :----------------: | :---------------------------------------------------- |
| `--df-object-base-inline-width` | `150px` | Width of inline input fields |
| `--df-object-base-inline-margin` | `0px 8px 0px 0px ` | Margin for inline elements (top, right, bottom, left) |
| `--df-object-base-delimiter-height` | `28px` | Height of the delimiter (e.g., colon or separator) |
| `--df-object-base-delimiter-margin-right` | `8px` | Right margin of the delimiter |
| Variable | Default Value | Description |
| :---------------------------------------- | :----------------: | :----------------------------------------------------------------------------- |
| `--df-object-base-inline-width` | `150px` | Minimum width of inline input fields (field stretches to full width with flex) |
| `--df-object-base-inline-margin` | `0px 8px 0px 0px ` | Margin for inline elements (top, right, bottom, left) |
| `--df-object-base-delimiter-height` | `28px` | Height of the delimiter (e.g., colon or separator) |
| `--df-object-base-delimiter-margin-right` | `8px` | Right margin of the delimiter |

---

Expand Down Expand Up @@ -531,10 +531,10 @@ Variables for the Section layout:

Variables for the Transparent layout:

| Variable | Default Value | Description |
| :-------------------------------------- | :-----------: | :------------------------------ |
| `--df-transparent-array-item-max-width` | `338px` | Maximum width of array items |
| `--df-transparent-error-wrapper-width` | `auto` | Transparent error wrapper width |
| Variable | Default Value | Description |
| :-------------------------------------- | :-----------: | :----------------------------------------------------------------------------------------------- |
| `--df-transparent-array-item-max-width` | `338px` | Maximum width of array items |
| `--df-transparent-error-wrapper-width` | `auto` | Width of the error wrapper (wrapper stretches to full width inside array items, e.g. table_item) |

---

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/lib/kit/components/Inputs/ObjectBase/ObjectBase.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
display: flex;

& > .#{$ns}use-search {
width: var(--df-object-base-inline-width, 150px);
flex: 1;
min-width: var(--df-object-base-inline-width, 150px);
margin: var(
--df-object-base-inline-margin,
var(--g-spacing-0) var(--g-spacing-2) var(--g-spacing-0) var(--g-spacing-0)
Expand Down
2 changes: 2 additions & 0 deletions src/lib/kit/components/Layouts/Transparent/Transparent.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

& > .#{$ns}error-wrapper {
width: var(--df-transparent-error-wrapper-width, auto);
flex-grow: 1;
min-width: 0;
}
}

Expand Down