aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/Page.scss
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2019-08-08 10:28:31 -0400
committerSam Wilkins <samwilkins333@gmail.com>2019-08-08 10:28:31 -0400
commitf3a1b96c5587249a1f6d45ecc9b462215da479e2 (patch)
tree9726a7489f947a4294f49102562a4d3b3c3c2b6d /src/client/views/pdf/Page.scss
parent7cf716e4288f09e835fce3613ab007f239a59e8e (diff)
parent5deebce85ded6403faf8f63f45d4d6d7932e3813 (diff)
clean up
Diffstat (limited to 'src/client/views/pdf/Page.scss')
-rw-r--r--src/client/views/pdf/Page.scss31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/client/views/pdf/Page.scss b/src/client/views/pdf/Page.scss
new file mode 100644
index 000000000..af1628a6f
--- /dev/null
+++ b/src/client/views/pdf/Page.scss
@@ -0,0 +1,31 @@
+
+.pdfPage-cont {
+ position: relative;
+
+ .pdfPage-canvasContainer {
+ position: absolute;
+ }
+
+ .pdfPage-dragAnnotationBox {
+ position: absolute;
+ background-color: transparent;
+ opacity: 0.1;
+ }
+
+ .pdfPage-textLayer {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ div {
+ user-select: text;
+ }
+ span {
+ color: transparent;
+ position: absolute;
+ white-space: pre;
+ cursor: text;
+ -webkit-transform-origin: 0% 0%;
+ transform-origin: 0% 0%;
+ }
+ }
+} \ No newline at end of file