Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class UmbMultipleColorPickerItemInputElement extends UUIFormControlMixin(
return html`
<umb-form-validation-message id="validation-message" @invalid=${this.#onInvalid} @valid=${this.#onValid}>
<div id="item">
${this.disabled || this.readonly ? nothing : html`<uui-icon name="icon-grip"></uui-icon>`}
${this.disabled || this.readonly ? nothing : html`<uui-icon name="icon-grip" class="handle"></uui-icon>`}
<div class="color-wrapper">
<uui-input
id="input"
Expand Down Expand Up @@ -249,6 +249,14 @@ export class UmbMultipleColorPickerItemInputElement extends UUIFormControlMixin(
margin: 0;
position: absolute;
}

.handle {
cursor: grab;
}

.handle:active {
cursor: grabbing;
}
`,
];
}
Expand Down
Loading