diff options
author | bobzel <zzzman@gmail.com> | 2020-09-02 10:46:29 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-02 10:46:29 -0400 |
commit | 2e3b83df9b0cb69db6f5febae70a2e36a0a90822 (patch) | |
tree | 2c84680d30b0726755bd9c823b23c9a484676690 /src/client/views/nodes/WebBox.tsx | |
parent | 6f72743516e47a6ad077bb8e894c8005fee29fc7 (diff) |
made highlight colors more obvious. fixed tags to update when #key is set in textdoc.
Diffstat (limited to 'src/client/views/nodes/WebBox.tsx')
-rw-r--r-- | src/client/views/nodes/WebBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index 4dded50b0..f9e6227d7 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -495,7 +495,7 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps, WebDocum Doc.GetProto(targetDoc).data = new List<Doc>([clipDoc]); clipDoc.rootDocument = targetDoc; targetDoc.layoutKey = "layout"; - const annotationDoc = this.highlight("rgba(173, 216, 230, 0.3)"); // hyperlink color + const annotationDoc = this.highlight("rgba(173, 216, 230, 0.75)"); // hyperlink color if (annotationDoc) { DragManager.StartPdfAnnoDrag([ele], new DragManager.PdfAnnoDragData(this.props.Document, annotationDoc, targetDoc), e.pageX, e.pageY, { dragComplete: e => { |