aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/PDFViewer.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-06-28 19:32:27 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-06-28 19:32:27 -0400
commit7905b8a80840af44385ebc5dab9e075f6025cbfc (patch)
treeaae34278bf5c40ce01346d315a94c4e318119631 /src/client/views/pdf/PDFViewer.tsx
parentc5ee9740f0c592fa60374b0222f0c3e76e436956 (diff)
fixed pdf selection color to match text selection in text boxes
Diffstat (limited to 'src/client/views/pdf/PDFViewer.tsx')
-rw-r--r--src/client/views/pdf/PDFViewer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/pdf/PDFViewer.tsx b/src/client/views/pdf/PDFViewer.tsx
index 8c7faf7ff..5ed1e6239 100644
--- a/src/client/views/pdf/PDFViewer.tsx
+++ b/src/client/views/pdf/PDFViewer.tsx
@@ -381,7 +381,7 @@ export class PDFViewer extends ViewBoxAnnotatableComponent<IViewerProps, PdfDocu
div.style.top = (parseInt(div.style.top)/*+ this.getScrollFromPage(page)*/).toString();
}
this._annotationLayer.current.append(div);
- div.style.backgroundColor = "yellow";
+ div.style.backgroundColor = "#ACCEF7";
div.style.opacity = "0.5";
const savedPage = this._savedAnnotations.getValue(page);
if (savedPage) {