diff options
author | bobzel <zzzman@gmail.com> | 2022-11-09 15:46:33 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-11-09 15:46:33 -0500 |
commit | 51e8786c33a1af207081212802e6da03476edf4a (patch) | |
tree | 986c24e6f6f41bf7448c6f9368661a6c4c6cdd0b /src/client/views/nodes/DocumentView.tsx | |
parent | 13002bb819e54f3e2f2d25c4b043abf1c15386bb (diff) |
added tab highlighting when tab doc is target of hyperlink. made region annotations on images be transparent. don't show lock icon for lockedPosition documents that still get pointer events.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 9dc4b36cf..4ee871ba2 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1383,7 +1383,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps const borderPath = this.props.styleProvider?.(this.props.Document, this.props, StyleProp.BorderPath) || { path: undefined }; const boxShadow = this.props.treeViewDoc || !highlighting - ? null + ? this.boxShadow : highlighting && this.borderRounding && highlighting.highlightStyle !== 'dashed' ? `0 0 0 ${highlighting.highlightIndex}px ${highlighting.highlightColor}` : this.boxShadow || (this.props.Document.isTemplateForField ? 'black 0.2vw 0.2vw 0.8vw' : undefined); |