Skip to content

Commit 66da4a7

Browse files
authored
Fit: filter input styling (#19460)
do not change display for the uui-input but set a width
1 parent 11c6ea9 commit 66da4a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Umbraco.Web.UI.Client/src/packages/core/collection/components/collection-filter-field.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class UmbCollectionFilterFieldElement extends UmbLitElement {
3434
static override readonly styles = [
3535
css`
3636
uui-input {
37-
display: block;
37+
width: 100%;
3838
}
3939
`,
4040
];

src/Umbraco.Web.UI.Client/src/packages/documents/documents/entity-actions/create-blueprint/modal/create-blueprint-modal.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class UmbCreateBlueprintModalElement extends UmbModalBaseElement<
7979
strong,
8080
uui-label,
8181
uui-input {
82-
display: block;
82+
width: 100%;
8383
}
8484
8585
uui-label {

src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/user-group-collection.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class UmbUserGroupCollectionElement extends UmbCollectionDefaultElement {
3939
static override styles = [
4040
css`
4141
uui-input {
42-
display: block;
42+
width: 100%;
4343
}
4444
`,
4545
];

0 commit comments

Comments
 (0)