diff options
author | Aubrey-Li <63608597+Aubrey-Li@users.noreply.github.com> | 2021-07-26 15:02:20 -0700 |
---|---|---|
committer | Aubrey-Li <63608597+Aubrey-Li@users.noreply.github.com> | 2021-07-26 15:02:20 -0700 |
commit | 0e24f759b8315e414be4f4a282b095e294ff8c6e (patch) | |
tree | c9f323e0b4a58637acde01854360f0440b118b26 /src | |
parent | f6975f6bf914dc02135c2e5c4414f83bc21ac89e (diff) |
disabled drop shadow for collections in tree view
Diffstat (limited to 'src')
-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 60fa462ad..8c6986517 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -993,7 +993,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps pointerEvents: this.pointerEvents, outline: highlighting && !this.borderRounding ? `${highlightColor} ${highlightStyle} ${highlightIndex}px` : "solid 0px", border: highlighting && this.borderRounding && highlightStyle === "dashed" ? `${highlightStyle} ${highlightColor} ${highlightIndex}px` : undefined, - boxShadow, + // boxShadow, clipPath: borderPath.path ? `path('${borderPath.path}')` : undefined }}> {!borderPath.path ? internal : |