From 5f2e8ba1a050785afc5624db0c35b6b29c8dbb7c Mon Sep 17 00:00:00 2001 From: leekelleher Date: Tue, 23 Jul 2024 12:33:13 +0100 Subject: [PATCH] Amended document blueprint root styling --- ...cument-blueprint-root-workspace.element.ts | 75 ++++++++++--------- 1 file changed, 39 insertions(+), 36 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts index 5e575ee05c..871c12f2c8 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts @@ -1,47 +1,50 @@ -import { html, customElement } from '@umbraco-cms/backoffice/external/lit'; +import { customElement, html } from '@umbraco-cms/backoffice/external/lit'; import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; import { UmbTextStyles } from '@umbraco-cms/backoffice/style'; @customElement('umb-document-blueprint-root-workspace') export class UmbDocumentBlueprintRootWorkspaceElement extends UmbLitElement { override render() { - return html` - -

- What are Document Blueprints? -

- - Document Blueprints are pre-defined content that can be selected when creating a new content node. - -

- - How do I create a Document Blueprint? + return html` + + +

+ What are Document Blueprints? +

+ + Document Blueprints are pre-defined content that can be selected when creating a new content node. -

- -

There are two ways to create a Content Blueprint:

-
    -
  • - Click "Create Document Blueprint" in the action menu on a content node to create a new Document Blueprint. -
  • -
  • - Click the "+" button in the Document Blueprints tree in the Settings section and select the Document Type - you want to create a Document Blueprint for. -
  • -
-

Once given a name, editors can start using the Document Blueprint as a foundation for their new page.

-
-

- - How do I manage Document Blueprints? +

+ + How do I create a Document Blueprint? + +

+ +

There are two ways to create a Content Blueprint:

+
    +
  • + Click "Create Document Blueprint" in the action menu on a content node to create a new Document + Blueprint. +
  • +
  • + Click the "+" button in the Document Blueprints tree in the Settings section and select the Document + Type you want to create a Document Blueprint for. +
  • +
+

Once given a name, editors can start using the Document Blueprint as a foundation for their new page.

-

- - You can edit and delete Document Blueprints from the "Document Blueprints" tree in the Settings section. - Expand the Document Type which the Document Blueprint is based on and click it to edit or delete it. - -
-
`; +

+ + How do I manage Document Blueprints? + +

+ + You can edit and delete Document Blueprints from the "Document Blueprints" tree in the Settings section. + Expand the Document Type which the Document Blueprint is based on and click it to edit or delete it. + + + + `; } static override styles = [UmbTextStyles];