-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump pdfjs-dist from 2.13.216 to 2.14.305
Bumps [pdfjs-dist](https://github.com/mozilla/pdfjs-dist) from 2.13.216 to 2.14.305. - [Release notes](https://github.com/mozilla/pdfjs-dist/releases) - [Commits](mozilla/pdfjs-dist@v2.13.216...v2.14.305) --- updated-dependencies: - dependency-name: pdfjs-dist dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
- Loading branch information
1 parent
5014589
commit 58d2a50
Showing
67 changed files
with
4,042 additions
and
2,713 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* Copyright 2014 Mozilla Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#PDFBug { | ||
background-color: rgba(255, 255, 255, 1); | ||
border: 1px solid rgba(102, 102, 102, 1); | ||
position: fixed; | ||
top: 32px; | ||
right: 0; | ||
bottom: 0; | ||
font-size: 10px; | ||
padding: 0; | ||
width: 300px; | ||
} | ||
#PDFBug .controls { | ||
background: rgba(238, 238, 238, 1); | ||
border-bottom: 1px solid rgba(102, 102, 102, 1); | ||
padding: 3px; | ||
} | ||
#PDFBug .panels { | ||
bottom: 0; | ||
left: 0; | ||
overflow: auto; | ||
position: absolute; | ||
right: 0; | ||
top: 27px; | ||
} | ||
#PDFBug .panels > div { | ||
padding: 5px; | ||
} | ||
#PDFBug button.active { | ||
font-weight: bold; | ||
} | ||
.debuggerShowText, | ||
.debuggerHideText:hover { | ||
background-color: rgba(255, 255, 0, 1); | ||
} | ||
#PDFBug .stats { | ||
font-family: courier; | ||
font-size: 10px; | ||
white-space: pre; | ||
} | ||
#PDFBug .stats .title { | ||
font-weight: bold; | ||
} | ||
#PDFBug table { | ||
font-size: 10px; | ||
white-space: pre; | ||
} | ||
#PDFBug table.showText { | ||
border-collapse: collapse; | ||
text-align: center; | ||
} | ||
#PDFBug table.showText, | ||
#PDFBug table.showText tr, | ||
#PDFBug table.showText td { | ||
border: 1px solid black; | ||
padding: 1px; | ||
} | ||
#PDFBug table.showText td.advance { | ||
color: grey; | ||
} | ||
|
||
#viewer.textLayer-visible .textLayer { | ||
opacity: 1; | ||
} | ||
|
||
#viewer.textLayer-visible .canvasWrapper { | ||
background-color: rgba(128, 255, 128, 1); | ||
} | ||
|
||
#viewer.textLayer-visible .canvasWrapper canvas { | ||
mix-blend-mode: screen; | ||
} | ||
|
||
#viewer.textLayer-visible .textLayer span { | ||
background-color: rgba(255, 255, 0, 0.1); | ||
color: rgba(0, 0, 0, 1); | ||
border: solid 1px rgba(255, 0, 0, 0.5); | ||
box-sizing: border-box; | ||
} | ||
|
||
#viewer.textLayer-hover .textLayer span:hover { | ||
background-color: rgba(255, 255, 255, 1); | ||
color: rgba(0, 0, 0, 1); | ||
} | ||
|
||
#viewer.textLayer-shadow .textLayer span { | ||
background-color: rgba(255, 255, 255, 0.6); | ||
color: rgba(0, 0, 0, 1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.