diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-06-28 19:32:27 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-06-28 19:32:27 -0400 |
| commit | 7905b8a80840af44385ebc5dab9e075f6025cbfc (patch) | |
| tree | aae34278bf5c40ce01346d315a94c4e318119631 /src/client/views/pdf/PDFViewer.tsx | |
| parent | c5ee9740f0c592fa60374b0222f0c3e76e436956 (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.tsx | 2 |
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) { |
