+
+
+
+
+ ${this.localize.term('blockEditor_unsupportedBlockName')}
+
+
+ `;
+ }
+
+ static override styles = [
+ UmbTextStyles,
+ css`
+ #host {
+ position: relative;
+ display: block;
+ width: 100%;
+
+ box-sizing: border-box;
+ border-radius: var(--uui-border-radius);
+ background-color: var(--uui-color-surface);
+
+ border: 1px solid var(--uui-color-border);
+ transition: border-color 80ms;
+
+ min-width: 250px;
+ }
+
+ #open-part + * {
+ border-top: 1px solid var(--uui-color-border);
+ }
+ :host([disabled]) #open-part {
+ cursor: default;
+ transition: border-color 80ms;
+ }
+ :host([disabled]) #host {
+ border-color: var(--uui-color-disabled-standalone);
+ }
+
+ :host([unpublished]) #open-part #content {
+ opacity: 0.6;
+ }
+
+ slot[name='tag'] {
+ flex-grow: 1;
+
+ display: flex;
+ justify-content: flex-end;
+ align-items: center;
+ }
+
+ button {
+ font-size: inherit;
+ font-family: inherit;
+ border: 0;
+ padding: 0;
+ background-color: transparent;
+ text-align: left;
+ color: var(--uui-color-text);
+ }
+
+ #content {
+ align-self: stretch;
+ line-height: normal;
+ display: flex;
+ position: relative;
+ align-items: center;
+ }
+
+ #open-part {
+ color: inherit;
+ text-decoration: none;
+
+ display: flex;
+ text-align: left;
+ align-items: center;
+ justify-content: flex-start;
+ width: 100%;
+ border: none;
+ background: none;
+
+ min-height: var(--uui-size-16);
+ padding: calc(var(--uui-size-2) + 1px);
+ }
+
+ #icon {
+ font-size: 1.2em;
+ margin-left: var(--uui-size-2);
+ margin-right: var(--uui-size-1);
+ }
+
+ #info {
+ display: flex;
+ flex-direction: column;
+ align-items: start;
+ justify-content: center;
+ height: 100%;
+ padding-left: var(--uui-size-2, 6px);
+ }
+
+ #name {
+ font-weight: 700;
+ }
+
+ uui-tag {
+ margin-left: 0.5em;
+ margin-bottom: -0.3em;
+ margin-top: -0.3em;
+ vertical-align: text-top;
+ }
+
+ :host([disabled]) #icon {
+ color: var(--uui-color-disabled-contrast);
+ }
+ :host([disabled]) #name {
+ color: var(--uui-color-disabled-contrast);
+ }
+
+ #inside {
+ position: relative;
+ display: block;
+ padding: calc(var(--uui-size-layout-1));
+ }
+ `,
+ ];
+}
+
+export default UmbUnsupportedListBlockElement;
+
+declare global {
+ interface HTMLElementTagNameMap {
+ 'umb-unsupported-list-block': UmbUnsupportedListBlockElement;
+ }
+}
diff --git a/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts b/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts
index 559e8230af..cb99a31c69 100644
--- a/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts
+++ b/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts
@@ -35,6 +35,7 @@ const SORTER_CONFIG: UmbSorterConfig