From f416a8676cdb0c9b8d0064d0d3493bc6905e6610 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Mon, 1 Nov 2021 15:13:30 +0100 Subject: [PATCH] [editor] Fix selection outline causing overflow of parent The outline needs some space outside the element. This space may be more than the parent has (when the element is positioned right at the edge). When this happens we simply ignore that 1 pixel space. Everything still shows correctly. --- .../app/unit-view/page-view/canvas/section-static.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/editor/src/app/unit-view/page-view/canvas/section-static.component.ts b/projects/editor/src/app/unit-view/page-view/canvas/section-static.component.ts index ab8b307b8..6fd07c3ee 100644 --- a/projects/editor/src/app/unit-view/page-view/canvas/section-static.component.ts +++ b/projects/editor/src/app/unit-view/page-view/canvas/section-static.component.ts @@ -21,7 +21,7 @@ import { UIElementType } from '../../../../../../common/models/uI-element'; </div> `, styles: [ - '.section-wrapper {position: relative; width: 100%}' + '.section-wrapper {position: relative; width: 100%; overflow: hidden;}' ] }) export class SectionStaticComponent { -- GitLab