From dd1cd5524a246574c694f91937dd7ca5c2e8ec82 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 1 Jul 2025 14:11:47 -0700 Subject: [PATCH] Visualize split --- .../components/common/pdf-editor/pdf-editor.component.html | 3 +++ .../components/common/pdf-editor/pdf-editor.component.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.html b/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.html index 03ce41e2f..7dc13a547 100644 --- a/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.html +++ b/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.html @@ -47,6 +47,9 @@
+ @if (p.splitAfter) { +
Split here
+ } } diff --git a/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.scss b/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.scss index 166990e19..d1313dc34 100644 --- a/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.scss +++ b/src-ui/src/app/components/common/pdf-editor/pdf-editor.component.scss @@ -60,3 +60,7 @@ .z-10 { z-index: 10; } + +.split-after { + writing-mode: vertical-rl; +}