diff options
author | bobzel <zzzman@gmail.com> | 2025-04-30 15:04:57 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-04-30 15:04:57 -0400 |
commit | c6811ca2ec8acbd771e8af86da7c2127914579fe (patch) | |
tree | efe65dfa12a11ac18faad3fc0ef390d7d0748e2e /src | |
parent | 0317a667a5d4a0f298522eeddb8afa96e7b7ecfc (diff) |
fixed task boxes from collapsing after being edited in lightbox view.
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/MainView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index ad6bb09c7..ab3757489 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -730,7 +730,8 @@ export class MainView extends ObservableReactComponent<object> { style={{ width: `calc(100% - ${this._leftMenuFlyoutWidth + this.leftMenuWidth() + this.propertiesWidth()}px)`, minWidth: `calc(100% - ${this._leftMenuFlyoutWidth + this.leftMenuWidth() + this.propertiesWidth()}px)`, - transform: DocumentView.LightboxDoc() ? 'scale(0.0001)' : undefined, + opacity: DocumentView.LightboxDoc() ? 0 : undefined, + pointerEvents: DocumentView.LightboxDoc() ? 'none' : undefined, }}> {!this.mainContainer ? null : this.mainDocView} </div> |