Path: blob/main/src/resources/formats/pdf/pdfjs/web/viewer.css
12923 views
/* Copyright 2014 Mozilla Foundation1*2* Licensed under the Apache License, Version 2.0 (the "License");3* you may not use this file except in compliance with the License.4* You may obtain a copy of the License at5*6* http://www.apache.org/licenses/LICENSE-2.07*8* Unless required by applicable law or agreed to in writing, software9* distributed under the License is distributed on an "AS IS" BASIS,10* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11* See the License for the specific language governing permissions and12* limitations under the License.13*/1415.textLayer {16position: absolute;17left: 0;18top: 0;19right: 0;20bottom: 0;21overflow: hidden;22opacity: 0.2;23line-height: 1;24}2526.textLayer > span {27color: transparent;28position: absolute;29white-space: pre;30cursor: text;31transform-origin: 0% 0%;32}3334.textLayer .highlight {35margin: -1px;36padding: 1px;37background-color: rgba(180, 0, 170, 1);38border-radius: 4px;39}4041.textLayer .highlight.begin {42border-radius: 4px 0 0 4px;43}4445.textLayer .highlight.end {46border-radius: 0 4px 4px 0;47}4849.textLayer .highlight.middle {50border-radius: 0;51}5253.textLayer .highlight.selected {54background-color: rgba(0, 100, 0, 1);55}5657.textLayer ::-moz-selection {58background: rgba(0, 0, 255, 1);59}6061.textLayer ::selection {62background: rgba(0, 0, 255, 1);63}6465.textLayer .endOfContent {66display: block;67position: absolute;68left: 0;69top: 100%;70right: 0;71bottom: 0;72z-index: -1;73cursor: default;74-webkit-user-select: none;75-moz-user-select: none;76user-select: none;77}7879.textLayer .endOfContent.active {80top: 0;81}828384.annotationLayer section {85position: absolute;86text-align: initial;87}8889.annotationLayer .linkAnnotation > a,90.annotationLayer .buttonWidgetAnnotation.pushButton > a {91position: absolute;92font-size: 1em;93top: 0;94left: 0;95width: 100%;96height: 100%;97}9899.annotationLayer .linkAnnotation > a:hover,100.annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {101opacity: 0.2;102background: rgba(255, 255, 0, 1);103box-shadow: 0 2px 10px rgba(255, 255, 0, 1);104}105106.annotationLayer .textAnnotation img {107position: absolute;108cursor: pointer;109}110111.annotationLayer .textWidgetAnnotation input,112.annotationLayer .textWidgetAnnotation textarea,113.annotationLayer .choiceWidgetAnnotation select,114.annotationLayer .buttonWidgetAnnotation.checkBox input,115.annotationLayer .buttonWidgetAnnotation.radioButton input {116background-color: rgba(0, 54, 255, 0.13);117border: 1px solid transparent;118box-sizing: border-box;119font-size: 9px;120height: 100%;121margin: 0;122padding: 0 3px;123vertical-align: top;124width: 100%;125}126127.annotationLayer .choiceWidgetAnnotation select option {128padding: 0;129}130131.annotationLayer .buttonWidgetAnnotation.radioButton input {132border-radius: 50%;133}134135.annotationLayer .textWidgetAnnotation textarea {136font: message-box;137font-size: 9px;138resize: none;139}140141.annotationLayer .textWidgetAnnotation input[disabled],142.annotationLayer .textWidgetAnnotation textarea[disabled],143.annotationLayer .choiceWidgetAnnotation select[disabled],144.annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],145.annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {146background: none;147border: 1px solid transparent;148cursor: not-allowed;149}150151.annotationLayer .textWidgetAnnotation input:hover,152.annotationLayer .textWidgetAnnotation textarea:hover,153.annotationLayer .choiceWidgetAnnotation select:hover,154.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,155.annotationLayer .buttonWidgetAnnotation.radioButton input:hover {156border: 1px solid rgba(0, 0, 0, 1);157}158159.annotationLayer .textWidgetAnnotation input:focus,160.annotationLayer .textWidgetAnnotation textarea:focus,161.annotationLayer .choiceWidgetAnnotation select:focus {162background: none;163border: 1px solid transparent;164}165166.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,167.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,168.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {169background-color: rgba(0, 0, 0, 1);170content: "";171display: block;172position: absolute;173}174175.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,176.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {177height: 80%;178left: 45%;179width: 1px;180}181182.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {183transform: rotate(45deg);184}185186.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {187transform: rotate(-45deg);188}189190.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {191border-radius: 50%;192height: 50%;193left: 30%;194top: 20%;195width: 50%;196}197198.annotationLayer .textWidgetAnnotation input.comb {199font-family: monospace;200padding-left: 2px;201padding-right: 0;202}203204.annotationLayer .textWidgetAnnotation input.comb:focus {205/*206* Letter spacing is placed on the right side of each character. Hence, the207* letter spacing of the last character may be placed outside the visible208* area, causing horizontal scrolling. We avoid this by extending the width209* when the element has focus and revert this when it loses focus.210*/211width: 115%;212}213214.annotationLayer .buttonWidgetAnnotation.checkBox input,215.annotationLayer .buttonWidgetAnnotation.radioButton input {216-webkit-appearance: none;217-moz-appearance: none;218appearance: none;219padding: 0;220}221222.annotationLayer .popupWrapper {223position: absolute;224width: 20em;225}226227.annotationLayer .popup {228position: absolute;229z-index: 200;230max-width: 20em;231background-color: rgba(255, 255, 153, 1);232box-shadow: 0 2px 5px rgba(136, 136, 136, 1);233border-radius: 2px;234padding: 6px;235margin-left: 5px;236cursor: pointer;237font: message-box;238font-size: 9px;239white-space: normal;240word-wrap: break-word;241}242243.annotationLayer .popup > * {244font-size: 9px;245}246247.annotationLayer .popup h1 {248display: inline-block;249}250251.annotationLayer .popup span {252display: inline-block;253margin-left: 5px;254}255256.annotationLayer .popup p {257border-top: 1px solid rgba(51, 51, 51, 1);258margin-top: 2px;259padding-top: 2px;260}261262.annotationLayer .highlightAnnotation,263.annotationLayer .underlineAnnotation,264.annotationLayer .squigglyAnnotation,265.annotationLayer .strikeoutAnnotation,266.annotationLayer .freeTextAnnotation,267.annotationLayer .lineAnnotation svg line,268.annotationLayer .squareAnnotation svg rect,269.annotationLayer .circleAnnotation svg ellipse,270.annotationLayer .polylineAnnotation svg polyline,271.annotationLayer .polygonAnnotation svg polygon,272.annotationLayer .caretAnnotation,273.annotationLayer .inkAnnotation svg polyline,274.annotationLayer .stampAnnotation,275.annotationLayer .fileAttachmentAnnotation {276cursor: pointer;277}278279*/* Copyright 2021 Mozilla Foundation280*281* Licensed under the Apache License, Version 2.0 (the "License");282* you may not use this file except in compliance with the License.283* You may obtain a copy of the License at284*285* http://www.apache.org/licenses/LICENSE-2.0286*287* Unless required by applicable law or agreed to in writing, software288* distributed under the License is distributed on an "AS IS" BASIS,289* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.290* See the License for the specific language governing permissions and291* limitations under the License.292*/293294.xfaLayer {295position: absolute;296top: 0;297left: 0;298z-index: 200;299transform-origin: 0 0;300}301302.xfaLayer * {303color: inherit;304font: inherit;305-webkit-font-kerning: inherit;306font-kerning: inherit;307letter-spacing: inherit;308text-align: inherit;309text-decoration: inherit;310vertical-align: inherit;311box-sizing: border-box;312}313314.xfaFont {315color: black;316font-weight: normal;317-webkit-font-kerning: none;318font-kerning: none;319font-size: 10px;320font-style: normal;321letter-spacing: 0;322text-decoration: none;323vertical-align: 0;324}325326.xfaDraw {327z-index: 200;328}329330.xfaExclgroup {331z-index: 300;332}333334.xfaField {335z-index: 300;336}337338.xfaSubform {339z-index: 100;340}341342.xfaLabel {343display: flex;344flex-direction: row;345align-items: center;346width: 100%;347height: 100%;348}349350.xfaCaption {351flex: 1 1 auto;352}353354.xfaTextfield,355.xfaSelect {356width: 100%;357height: 100%;358flex: 1 1 auto;359border: none;360}361362.xfaLabel > input[type="checkbox"] {363/* Use this trick to make the checkbox invisible but364but still focusable. */365position: absolute;366left: -99999px;367}368369.xfaLabel > input[type="checkbox"]:focus + .xfaCheckboxMark {370box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);371}372373.xfaCheckboxMark {374cursor: pointer;375flex: 0 0 auto;376border-style: solid;377border-width: 2px;378border-color: #8f8f9d;379font-size: 10px;380line-height: 10px;381width: 10px;382height: 10px;383text-align: center;384vertical-align: middle;385display: flex;386flex-direction: row;387align-items: center;388}389390.xfaCheckbox:checked + .xfaCheckboxMark::after {391content: attr(mark);392}393394.xfaButton {395cursor: pointer;396width: 100%;397height: 100%;398border: none;399text-align: center;400}401402.xfaButton:hover {403background: Highlight;404}405406.xfaLrTb,407.xfaRlTb,408.xfaTb,409.xfaPosition {410display: block;411}412413.xfaPosition {414position: relative;415}416417.xfaValignMiddle {418display: flex;419align-items: center;420}421422.xfaLrTb > div {423display: inline;424float: left;425}426427.xfaRlTb > div {428display: inline;429float: right;430}431432.xfaTable {433display: flex;434flex-direction: column;435}436437.xfaTable .xfaRow {438display: flex;439flex-direction: row;440flex: 1 1 auto;441}442443.xfaTable .xfaRow > div {444flex: 1 1 auto;445}446447.xfaTable .xfaRlRow {448display: flex;449flex-direction: row-reverse;450flex: 1;451}452453.xfaTable .xfaRlRow > div {454flex: 1;455}456457.pdfViewer .canvasWrapper {458overflow: hidden;459}460461.pdfViewer .page {462direction: ltr;463width: 816px;464height: 1056px;465margin: 1px auto -8px;466position: relative;467overflow: visible;468border: 9px solid transparent;469background-clip: content-box;470-o-border-image: url(images/shadow.png) 9 9 repeat;471border-image: url(images/shadow.png) 9 9 repeat;472background-color: rgba(255, 255, 255, 1);473}474475.pdfViewer.removePageBorders .page {476margin: 0 auto 10px;477border: none;478}479480.pdfViewer.singlePageView {481display: inline-block;482}483484.pdfViewer.singlePageView .page {485margin: 0;486border: none;487}488489.pdfViewer.scrollHorizontal,490.pdfViewer.scrollWrapped,491.spread {492margin-left: 3.5px;493margin-right: 3.5px;494text-align: center;495}496497.pdfViewer.scrollHorizontal,498.spread {499white-space: nowrap;500}501502.pdfViewer.removePageBorders,503.pdfViewer.scrollHorizontal .spread,504.pdfViewer.scrollWrapped .spread {505margin-left: 0;506margin-right: 0;507}508509.spread .page,510.pdfViewer.scrollHorizontal .page,511.pdfViewer.scrollWrapped .page,512.pdfViewer.scrollHorizontal .spread,513.pdfViewer.scrollWrapped .spread {514display: inline-block;515vertical-align: middle;516}517518.spread .page,519.pdfViewer.scrollHorizontal .page,520.pdfViewer.scrollWrapped .page {521margin-left: -3.5px;522margin-right: -3.5px;523}524525.pdfViewer.removePageBorders .spread .page,526.pdfViewer.removePageBorders.scrollHorizontal .page,527.pdfViewer.removePageBorders.scrollWrapped .page {528margin-left: 5px;529margin-right: 5px;530}531532.pdfViewer .page canvas {533margin: 0;534display: block;535}536537.pdfViewer .page canvas[hidden] {538display: none;539}540541.pdfViewer .page .loadingIcon {542position: absolute;543display: block;544left: 0;545top: 0;546right: 0;547bottom: 0;548background: url("images/loading-icon.gif") center no-repeat;549}550551.pdfPresentationMode .pdfViewer {552margin-left: 0;553margin-right: 0;554}555556.pdfPresentationMode .pdfViewer .page,557.pdfPresentationMode .pdfViewer .spread {558display: block;559}560561.pdfPresentationMode .pdfViewer .page,562.pdfPresentationMode .pdfViewer.removePageBorders .page {563margin-left: auto;564margin-right: auto;565}566567.pdfPresentationMode:-webkit-full-screen .pdfViewer .page {568margin-bottom: 100%;569border: 0;570}571572.pdfPresentationMode:-moz-full-screen .pdfViewer .page {573margin-bottom: 100%;574border: 0;575}576577.pdfPresentationMode:fullscreen .pdfViewer .page {578margin-bottom: 100%;579border: 0;580}581582:root {583--sidebar-width: 200px;584--sidebar-transition-duration: 200ms;585--sidebar-transition-timing-function: ease;586--loadingBar-end-offset: 0;587588--toolbar-icon-opacity: 0.7;589--doorhanger-icon-opacity: 0.9;590591--main-color: rgba(12, 12, 13, 1);592--body-bg-color: rgba(237, 237, 240, 1);593--errorWrapper-bg-color: rgba(255, 74, 74, 1);594--progressBar-color: rgba(10, 132, 255, 1);595--progressBar-indeterminate-bg-color: rgba(221, 221, 222, 1);596--progressBar-indeterminate-blend-color: rgba(116, 177, 239, 1);597--scrollbar-color: auto;598--scrollbar-bg-color: auto;599--toolbar-icon-bg-color: rgba(0, 0, 0, 1);600601--sidebar-narrow-bg-color: rgba(237, 237, 240, 0.9);602--sidebar-toolbar-bg-color: rgba(245, 246, 247, 1);603--toolbar-bg-color: rgba(249, 249, 250, 1);604--toolbar-border-color: rgba(204, 204, 204, 1);605--button-hover-color: rgba(221, 222, 223, 1);606--toggled-btn-bg-color: rgba(0, 0, 0, 0.3);607--toggled-hover-active-btn-color: rgba(0, 0, 0, 0.4);608--dropdown-btn-bg-color: rgba(215, 215, 219, 1);609--separator-color: rgba(0, 0, 0, 0.3);610--field-color: rgba(6, 6, 6, 1);611--field-bg-color: rgba(255, 255, 255, 1);612--field-border-color: rgba(187, 187, 188, 1);613--findbar-nextprevious-btn-bg-color: rgba(227, 228, 230, 1);614--treeitem-color: rgba(0, 0, 0, 0.8);615--treeitem-hover-color: rgba(0, 0, 0, 0.9);616--treeitem-selected-color: rgba(0, 0, 0, 0.9);617--treeitem-selected-bg-color: rgba(0, 0, 0, 0.25);618--sidebaritem-bg-color: rgba(0, 0, 0, 0.15);619--doorhanger-bg-color: rgba(255, 255, 255, 1);620--doorhanger-border-color: rgba(12, 12, 13, 0.2);621--doorhanger-hover-color: rgba(237, 237, 237, 1);622--doorhanger-separator-color: rgba(222, 222, 222, 1);623--overlay-button-bg-color: rgba(12, 12, 13, 0.1);624--overlay-button-hover-color: rgba(12, 12, 13, 0.3);625626--loading-icon: url(images/loading.svg);627--treeitem-expanded-icon: url(images/treeitem-expanded.svg);628--treeitem-collapsed-icon: url(images/treeitem-collapsed.svg);629--toolbarButton-menuArrow-icon: url(images/toolbarButton-menuArrow.svg);630--toolbarButton-sidebarToggle-icon: url(images/toolbarButton-sidebarToggle.svg);631--toolbarButton-secondaryToolbarToggle-icon: url(images/toolbarButton-secondaryToolbarToggle.svg);632--toolbarButton-pageUp-icon: url(images/toolbarButton-pageUp.svg);633--toolbarButton-pageDown-icon: url(images/toolbarButton-pageDown.svg);634--toolbarButton-zoomOut-icon: url(images/toolbarButton-zoomOut.svg);635--toolbarButton-zoomIn-icon: url(images/toolbarButton-zoomIn.svg);636--toolbarButton-presentationMode-icon: url(images/toolbarButton-presentationMode.svg);637--toolbarButton-print-icon: url(images/toolbarButton-print.svg);638--toolbarButton-openFile-icon: url(images/toolbarButton-openFile.svg);639--toolbarButton-download-icon: url(images/toolbarButton-download.svg);640--toolbarButton-bookmark-icon: url(images/toolbarButton-bookmark.svg);641--toolbarButton-viewThumbnail-icon: url(images/toolbarButton-viewThumbnail.svg);642--toolbarButton-viewOutline-icon: url(images/toolbarButton-viewOutline.svg);643--toolbarButton-viewAttachments-icon: url(images/toolbarButton-viewAttachments.svg);644--toolbarButton-viewLayers-icon: url(images/toolbarButton-viewLayers.svg);645--toolbarButton-currentOutlineItem-icon: url(images/toolbarButton-currentOutlineItem.svg);646--toolbarButton-search-icon: url(images/toolbarButton-search.svg);647--findbarButton-previous-icon: url(images/findbarButton-previous.svg);648--findbarButton-next-icon: url(images/findbarButton-next.svg);649--secondaryToolbarButton-firstPage-icon: url(images/secondaryToolbarButton-firstPage.svg);650--secondaryToolbarButton-lastPage-icon: url(images/secondaryToolbarButton-lastPage.svg);651--secondaryToolbarButton-rotateCcw-icon: url(images/secondaryToolbarButton-rotateCcw.svg);652--secondaryToolbarButton-rotateCw-icon: url(images/secondaryToolbarButton-rotateCw.svg);653--secondaryToolbarButton-selectTool-icon: url(images/secondaryToolbarButton-selectTool.svg);654--secondaryToolbarButton-handTool-icon: url(images/secondaryToolbarButton-handTool.svg);655--secondaryToolbarButton-scrollVertical-icon: url(images/secondaryToolbarButton-scrollVertical.svg);656--secondaryToolbarButton-scrollHorizontal-icon: url(images/secondaryToolbarButton-scrollHorizontal.svg);657--secondaryToolbarButton-scrollWrapped-icon: url(images/secondaryToolbarButton-scrollWrapped.svg);658--secondaryToolbarButton-spreadNone-icon: url(images/secondaryToolbarButton-spreadNone.svg);659--secondaryToolbarButton-spreadOdd-icon: url(images/secondaryToolbarButton-spreadOdd.svg);660--secondaryToolbarButton-spreadEven-icon: url(images/secondaryToolbarButton-spreadEven.svg);661--secondaryToolbarButton-documentProperties-icon: url(images/secondaryToolbarButton-documentProperties.svg);662}663664@media (prefers-color-scheme: dark) {665:root {666--main-color: rgba(249, 249, 250, 1);667--body-bg-color: rgba(42, 42, 46, 1);668--errorWrapper-bg-color: rgba(199, 17, 17, 1);669--progressBar-color: rgba(0, 96, 223, 1);670--progressBar-indeterminate-bg-color: rgba(40, 40, 43, 1);671--progressBar-indeterminate-blend-color: rgba(20, 68, 133, 1);672--scrollbar-color: rgba(121, 121, 123, 1);673--scrollbar-bg-color: rgba(35, 35, 39, 1);674--toolbar-icon-bg-color: rgba(255, 255, 255, 1);675676--sidebar-narrow-bg-color: rgba(42, 42, 46, 0.9);677--sidebar-toolbar-bg-color: rgba(50, 50, 52, 1);678--toolbar-bg-color: rgba(56, 56, 61, 1);679--toolbar-border-color: rgba(12, 12, 13, 1);680--button-hover-color: rgba(102, 102, 103, 1);681--toggled-btn-bg-color: rgba(0, 0, 0, 0.3);682--toggled-hover-active-btn-color: rgba(0, 0, 0, 0.4);683--dropdown-btn-bg-color: rgba(74, 74, 79, 1);684--separator-color: rgba(0, 0, 0, 0.3);685--field-color: rgba(250, 250, 250, 1);686--field-bg-color: rgba(64, 64, 68, 1);687--field-border-color: rgba(115, 115, 115, 1);688--findbar-nextprevious-btn-bg-color: rgba(89, 89, 89, 1);689--treeitem-color: rgba(255, 255, 255, 0.8);690--treeitem-hover-color: rgba(255, 255, 255, 0.9);691--treeitem-selected-color: rgba(255, 255, 255, 0.9);692--treeitem-selected-bg-color: rgba(255, 255, 255, 0.25);693--sidebaritem-bg-color: rgba(255, 255, 255, 0.15);694--doorhanger-bg-color: rgba(74, 74, 79, 1);695--doorhanger-border-color: rgba(39, 39, 43, 1);696--doorhanger-hover-color: rgba(93, 94, 98, 1);697--doorhanger-separator-color: rgba(92, 92, 97, 1);698--overlay-button-bg-color: rgba(92, 92, 97, 1);699--overlay-button-hover-color: rgba(115, 115, 115, 1);700701/* This image is used in <input> elements, which unfortunately means that702* the `mask-image` approach used with all of the other images doesn't work703* here; hence why we still have two versions of this particular image. */704--loading-icon: url(images/loading-dark.svg);705}706}707708* {709padding: 0;710margin: 0;711}712713html {714height: 100%;715width: 100%;716/* Font size is needed to make the activity bar the correct size. */717font-size: 10px;718}719720body {721height: 100%;722width: 100%;723background-color: var(--body-bg-color);724}725726body,727input,728button,729select {730font: message-box;731outline: none;732scrollbar-color: var(--scrollbar-color) var(--scrollbar-bg-color);733}734735.hidden {736display: none !important;737}738[hidden] {739display: none !important;740}741742.pdfViewer.enablePermissions .textLayer > span {743-webkit-user-select: none !important;744-moz-user-select: none !important;745user-select: none !important;746cursor: not-allowed;747}748749#viewerContainer.pdfPresentationMode:-webkit-full-screen {750top: 0;751border-top: 2px solid rgba(0, 0, 0, 0);752background-color: rgba(0, 0, 0, 1);753width: 100%;754height: 100%;755overflow: hidden;756cursor: none;757-webkit-user-select: none;758user-select: none;759}760761#viewerContainer.pdfPresentationMode:-moz-full-screen {762top: 0;763border-top: 2px solid rgba(0, 0, 0, 0);764background-color: rgba(0, 0, 0, 1);765width: 100%;766height: 100%;767overflow: hidden;768cursor: none;769-moz-user-select: none;770user-select: none;771}772773#viewerContainer.pdfPresentationMode:fullscreen {774top: 0;775border-top: 2px solid rgba(0, 0, 0, 0);776background-color: rgba(0, 0, 0, 1);777width: 100%;778height: 100%;779overflow: hidden;780cursor: none;781-webkit-user-select: none;782-moz-user-select: none;783user-select: none;784}785786.pdfPresentationMode:-webkit-full-screen a:not(.internalLink) {787display: none;788}789790.pdfPresentationMode:-moz-full-screen a:not(.internalLink) {791display: none;792}793794.pdfPresentationMode:fullscreen a:not(.internalLink) {795display: none;796}797798.pdfPresentationMode:-webkit-full-screen .textLayer > span {799cursor: none;800}801802.pdfPresentationMode:-moz-full-screen .textLayer > span {803cursor: none;804}805806.pdfPresentationMode:fullscreen .textLayer > span {807cursor: none;808}809810.pdfPresentationMode.pdfPresentationModeControls > *,811.pdfPresentationMode.pdfPresentationModeControls .textLayer > span {812cursor: default;813}814815#outerContainer {816width: 100%;817height: 100%;818position: relative;819}820821#sidebarContainer {822position: absolute;823top: 32px;824bottom: 0;825width: var(--sidebar-width);826visibility: hidden;827z-index: 100;828border-top: 1px solid rgba(51, 51, 51, 1);829transition-duration: var(--sidebar-transition-duration);830transition-timing-function: var(--sidebar-transition-timing-function);831}832html[dir="ltr"] #sidebarContainer {833transition-property: left;834left: calc(0px - var(--sidebar-width));835}836html[dir="rtl"] #sidebarContainer {837transition-property: right;838right: calc(0px - var(--sidebar-width));839}840841#outerContainer.sidebarResizing #sidebarContainer {842/* Improve responsiveness and avoid visual glitches when the sidebar is resized. */843transition-duration: 0s;844/* Prevent e.g. the thumbnails being selected when the sidebar is resized. */845-webkit-user-select: none;846-moz-user-select: none;847user-select: none;848}849850#outerContainer.sidebarMoving #sidebarContainer,851#outerContainer.sidebarOpen #sidebarContainer {852visibility: visible;853}854html[dir="ltr"] #outerContainer.sidebarOpen #sidebarContainer {855left: 0;856}857html[dir="rtl"] #outerContainer.sidebarOpen #sidebarContainer {858right: 0;859}860861#mainContainer {862position: absolute;863top: 0;864right: 0;865bottom: 0;866left: 0;867min-width: 320px;868}869870#sidebarContent {871top: 32px;872bottom: 0;873overflow: auto;874-webkit-overflow-scrolling: touch;875position: absolute;876width: 100%;877background-color: rgba(0, 0, 0, 0.1);878}879html[dir="ltr"] #sidebarContent {880left: 0;881box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);882}883html[dir="rtl"] #sidebarContent {884right: 0;885box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.25);886}887888#viewerContainer {889overflow: auto;890-webkit-overflow-scrolling: touch;891position: absolute;892top: 32px;893right: 0;894bottom: 0;895left: 0;896outline: none;897}898#viewerContainer:not(.pdfPresentationMode) {899transition-duration: var(--sidebar-transition-duration);900transition-timing-function: var(--sidebar-transition-timing-function);901}902903#outerContainer.sidebarResizing #viewerContainer {904/* Improve responsiveness and avoid visual glitches when the sidebar is resized. */905transition-duration: 0s;906}907908html[dir="ltr"]909#outerContainer.sidebarOpen910#viewerContainer:not(.pdfPresentationMode) {911transition-property: left;912left: var(--sidebar-width);913}914html[dir="rtl"]915#outerContainer.sidebarOpen916#viewerContainer:not(.pdfPresentationMode) {917transition-property: right;918right: var(--sidebar-width);919}920921.toolbar {922position: relative;923left: 0;924right: 0;925z-index: 9999;926cursor: default;927}928929#toolbarContainer {930width: 100%;931}932933#toolbarSidebar {934width: 100%;935height: 32px;936background-color: var(--sidebar-toolbar-bg-color);937}938html[dir="ltr"] #toolbarSidebar {939box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(0, 0, 0, 0.15),9400 0 1px rgba(0, 0, 0, 0.1);941}942html[dir="rtl"] #toolbarSidebar {943box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(0, 0, 0, 0.15),9440 0 1px rgba(0, 0, 0, 0.1);945}946947html[dir="ltr"] #toolbarSidebar .toolbarButton {948margin-right: 2px !important;949}950html[dir="rtl"] #toolbarSidebar .toolbarButton {951margin-left: 2px !important;952}953954html[dir="ltr"] #toolbarSidebarRight .toolbarButton {955margin-right: 3px !important;956}957html[dir="rtl"] #toolbarSidebarRight .toolbarButton {958margin-left: 3px !important;959}960961#sidebarResizer {962position: absolute;963top: 0;964bottom: 0;965width: 6px;966z-index: 200;967cursor: ew-resize;968}969html[dir="ltr"] #sidebarResizer {970right: -6px;971}972html[dir="rtl"] #sidebarResizer {973left: -6px;974}975976#toolbarContainer,977.findbar,978.secondaryToolbar {979position: relative;980height: 32px;981background-color: var(--toolbar-bg-color);982box-shadow: 0 1px 0 var(--toolbar-border-color);983}984985#toolbarViewer {986height: 32px;987}988989#loadingBar {990position: absolute;991height: 4px;992background-color: var(--body-bg-color);993border-bottom: 1px solid var(--toolbar-border-color);994995transition-duration: var(--sidebar-transition-duration);996transition-timing-function: var(--sidebar-transition-timing-function);997}998html[dir="ltr"] #loadingBar {999transition-property: left;1000left: 0;1001right: var(--loadingBar-end-offset);1002}1003html[dir="rtl"] #loadingBar {1004transition-property: right;1005left: var(--loadingBar-end-offset);1006right: 0;1007}10081009html[dir="ltr"] #outerContainer.sidebarOpen #loadingBar {1010left: var(--sidebar-width);1011}1012html[dir="rtl"] #outerContainer.sidebarOpen #loadingBar {1013right: var(--sidebar-width);1014}10151016#outerContainer.sidebarResizing #loadingBar {1017/* Improve responsiveness and avoid visual glitches when the sidebar is resized. */1018transition-duration: 0s;1019}10201021#loadingBar .progress {1022position: absolute;1023top: 0;1024left: 0;1025width: 0%;1026height: 100%;1027background-color: var(--progressBar-color);1028overflow: hidden;1029transition: width 200ms;1030}10311032@-webkit-keyframes progressIndeterminate {10330% {1034left: -142px;1035}1036100% {1037left: 0;1038}1039}10401041@keyframes progressIndeterminate {10420% {1043left: -142px;1044}1045100% {1046left: 0;1047}1048}10491050#loadingBar .progress.indeterminate {1051background-color: var(--progressBar-indeterminate-bg-color);1052transition: none;1053}10541055#loadingBar .progress.indeterminate .glimmer {1056position: absolute;1057top: 0;1058left: 0;1059height: 100%;1060width: calc(100% + 150px);1061background: repeating-linear-gradient(1062135deg,1063var(--progressBar-indeterminate-blend-color) 0,1064var(--progressBar-indeterminate-bg-color) 5px,1065var(--progressBar-indeterminate-bg-color) 45px,1066var(--progressBar-color) 55px,1067var(--progressBar-color) 95px,1068var(--progressBar-indeterminate-blend-color) 100px1069);1070-webkit-animation: progressIndeterminate 1s linear infinite;1071animation: progressIndeterminate 1s linear infinite;1072}10731074.findbar,1075.secondaryToolbar {1076top: 32px;1077position: absolute;1078z-index: 10000;1079height: auto;1080min-width: 16px;1081padding: 0 4px;1082margin: 4px 2px;1083color: rgba(217, 217, 217, 1);1084font-size: 12px;1085line-height: 14px;1086text-align: left;1087cursor: default;1088}10891090.findbar {1091min-width: 300px;1092background-color: var(--toolbar-bg-color);1093}1094.findbar > div {1095height: 32px;1096}1097.findbar.wrapContainers > div {1098clear: both;1099}1100.findbar.wrapContainers > div#findbarMessageContainer {1101height: auto;1102}1103html[dir="ltr"] .findbar {1104left: 64px;1105}1106html[dir="rtl"] .findbar {1107right: 64px;1108}11091110.findbar .splitToolbarButton {1111margin-top: 3px;1112}1113html[dir="ltr"] .findbar .splitToolbarButton {1114margin-left: 0;1115margin-right: 5px;1116}1117html[dir="rtl"] .findbar .splitToolbarButton {1118margin-left: 5px;1119margin-right: 0;1120}11211122.findbar .splitToolbarButton > .toolbarButton {1123background-color: var(--findbar-nextprevious-btn-bg-color);1124border-radius: 0;1125height: 26px;1126border-top: 1px solid var(--field-border-color);1127border-bottom: 1px solid var(--field-border-color);1128}11291130.findbar .splitToolbarButton > .toolbarButton::before {1131top: 5px;1132}11331134.findbar .splitToolbarButton > .findNext {1135width: 29px;1136}1137html[dir="ltr"] .findbar .splitToolbarButton > .findNext {1138border-bottom-right-radius: 2px;1139border-top-right-radius: 2px;1140border-right: 1px solid var(--field-border-color);1141}1142html[dir="rtl"] .findbar .splitToolbarButton > .findNext {1143border-bottom-left-radius: 2px;1144border-top-left-radius: 2px;1145border-left: 1px solid var(--field-border-color);1146}11471148.findbar input[type="checkbox"] {1149pointer-events: none;1150}11511152.findbar label {1153-webkit-user-select: none;1154-moz-user-select: none;1155user-select: none;1156}11571158.findbar label:hover,1159.findbar input:focus + label {1160background-color: var(--button-hover-color);1161}11621163html[dir="ltr"] #findInput {1164border-top-right-radius: 0;1165border-bottom-right-radius: 0;1166}1167html[dir="rtl"] #findInput {1168border-top-left-radius: 0;1169border-bottom-left-radius: 0;1170}11711172.findbar .toolbarField[type="checkbox"]:checked + .toolbarLabel {1173background-color: var(--toggled-btn-bg-color) !important;1174}11751176#findInput {1177width: 200px;1178}1179#findInput::-webkit-input-placeholder {1180color: rgba(191, 191, 191, 1);1181}1182#findInput::-moz-placeholder {1183font-style: normal;1184}1185#findInput::placeholder {1186font-style: normal;1187}1188#findInput[data-status="pending"] {1189background-image: var(--loading-icon);1190background-repeat: no-repeat;1191background-position: 98%;1192}1193html[dir="rtl"] #findInput[data-status="pending"] {1194background-position: 3px;1195}1196#findInput[data-status="notFound"] {1197background-color: rgba(255, 102, 102, 1);1198}11991200.secondaryToolbar {1201padding: 6px 0 10px;1202height: auto;1203z-index: 30000;1204background-color: var(--doorhanger-bg-color);1205}1206html[dir="ltr"] .secondaryToolbar {1207right: 4px;1208}1209html[dir="rtl"] .secondaryToolbar {1210left: 4px;1211}12121213#secondaryToolbarButtonContainer {1214max-width: 220px;1215max-height: 400px;1216overflow-y: auto;1217-webkit-overflow-scrolling: touch;1218margin-bottom: -4px;1219}12201221#secondaryToolbarButtonContainer.hiddenScrollModeButtons > .scrollModeButtons,1222#secondaryToolbarButtonContainer.hiddenSpreadModeButtons > .spreadModeButtons {1223display: none !important;1224}12251226.doorHanger,1227.doorHangerRight {1228border-radius: 2px;1229box-shadow: 0 1px 5px var(--doorhanger-border-color),12300 0 0 1px var(--doorhanger-border-color);1231}1232.doorHanger:after,1233.doorHanger:before,1234.doorHangerRight:after,1235.doorHangerRight:before {1236bottom: 100%;1237border: solid rgba(0, 0, 0, 0);1238content: " ";1239height: 0;1240width: 0;1241position: absolute;1242pointer-events: none;1243}1244.doorHanger:after,1245.doorHangerRight:after {1246border-width: 8px;1247}1248.doorHanger:after {1249border-bottom-color: var(--toolbar-bg-color);1250}1251.doorHangerRight:after {1252border-bottom-color: var(--doorhanger-bg-color);1253}1254.doorHanger:before,1255.doorHangerRight:before {1256border-bottom-color: var(--doorhanger-border-color);1257border-width: 9px;1258}12591260html[dir="ltr"] .doorHanger:after,1261html[dir="rtl"] .doorHangerRight:after {1262left: 10px;1263margin-left: -8px;1264}12651266html[dir="ltr"] .doorHanger:before,1267html[dir="rtl"] .doorHangerRight:before {1268left: 10px;1269margin-left: -9px;1270}12711272html[dir="rtl"] .doorHanger:after,1273html[dir="ltr"] .doorHangerRight:after {1274right: 10px;1275margin-right: -8px;1276}12771278html[dir="rtl"] .doorHanger:before,1279html[dir="ltr"] .doorHangerRight:before {1280right: 10px;1281margin-right: -9px;1282}12831284#findResultsCount {1285background-color: rgba(217, 217, 217, 1);1286color: rgba(82, 82, 82, 1);1287text-align: center;1288padding: 3px 4px;1289margin: 5px;1290}12911292#findMsg {1293color: rgba(251, 0, 0, 1);1294}1295#findMsg:empty {1296display: none;1297}12981299#toolbarViewerMiddle {1300position: absolute;1301left: 50%;1302transform: translateX(-50%);1303}13041305html[dir="ltr"] #toolbarViewerLeft,1306html[dir="rtl"] #toolbarViewerRight,1307html[dir="ltr"] #toolbarSidebarLeft,1308html[dir="rtl"] #toolbarSidebarRight {1309float: left;1310}1311html[dir="ltr"] #toolbarViewerRight,1312html[dir="rtl"] #toolbarViewerLeft,1313html[dir="ltr"] #toolbarSidebarRight,1314html[dir="rtl"] #toolbarSidebarLeft {1315float: right;1316}1317html[dir="ltr"] #toolbarViewerLeft > *,1318html[dir="ltr"] #toolbarViewerMiddle > *,1319html[dir="ltr"] #toolbarViewerRight > *,1320html[dir="ltr"] #toolbarSidebarLeft *,1321html[dir="ltr"] #toolbarSidebarRight *,1322html[dir="ltr"] .findbar * {1323position: relative;1324float: left;1325}1326html[dir="rtl"] #toolbarViewerLeft > *,1327html[dir="rtl"] #toolbarViewerMiddle > *,1328html[dir="rtl"] #toolbarViewerRight > *,1329html[dir="rtl"] #toolbarSidebarLeft *,1330html[dir="rtl"] #toolbarSidebarRight *,1331html[dir="rtl"] .findbar * {1332position: relative;1333float: right;1334}13351336.splitToolbarButton {1337margin: 2px 2px 0;1338display: inline-block;1339}1340html[dir="ltr"] .splitToolbarButton > .toolbarButton {1341float: left;1342}1343html[dir="rtl"] .splitToolbarButton > .toolbarButton {1344float: right;1345}13461347.toolbarButton,1348.secondaryToolbarButton,1349.overlayButton {1350border: 0 none;1351background: none;1352width: 28px;1353height: 28px;1354}1355.overlayButton {1356background-color: var(--overlay-button-bg-color);1357}13581359.overlayButton:hover,1360.overlayButton:focus {1361background-color: var(--overlay-button-hover-color);1362}13631364.toolbarButton > span {1365display: inline-block;1366width: 0;1367height: 0;1368overflow: hidden;1369}13701371.toolbarButton[disabled],1372.secondaryToolbarButton[disabled],1373.overlayButton[disabled] {1374opacity: 0.5;1375}13761377.splitToolbarButton.toggled .toolbarButton {1378margin: 0;1379}13801381.splitToolbarButton > .toolbarButton:hover,1382.splitToolbarButton > .toolbarButton:focus,1383.dropdownToolbarButton:hover,1384.toolbarButton.textButton:hover,1385.toolbarButton.textButton:focus {1386background-color: var(--button-hover-color);1387z-index: 199;1388}1389.splitToolbarButton > .toolbarButton {1390position: relative;1391}1392html[dir="ltr"] .splitToolbarButton > .toolbarButton:first-child,1393html[dir="rtl"] .splitToolbarButton > .toolbarButton:last-child {1394margin: 0;1395}1396html[dir="ltr"] .splitToolbarButton > .toolbarButton:last-child,1397html[dir="rtl"] .splitToolbarButton > .toolbarButton:first-child {1398margin: 0;1399}1400.splitToolbarButtonSeparator {1401padding: 10px 0;1402width: 1px;1403background-color: var(--separator-color);1404z-index: 99;1405display: inline-block;1406margin: 4px 0;1407}14081409.findbar .splitToolbarButtonSeparator {1410background-color: var(--field-border-color);1411margin: 0;1412padding: 13px 0;1413}14141415html[dir="ltr"] .splitToolbarButtonSeparator {1416float: left;1417}1418html[dir="rtl"] .splitToolbarButtonSeparator {1419float: right;1420}14211422.toolbarButton,1423.dropdownToolbarButton,1424.secondaryToolbarButton,1425.overlayButton {1426min-width: 16px;1427margin: 2px 1px;1428padding: 2px 6px 0;1429border: none;1430border-radius: 2px;1431color: var(--main-color);1432font-size: 12px;1433line-height: 14px;1434-webkit-user-select: none;1435-moz-user-select: none;1436user-select: none;1437cursor: default;1438box-sizing: border-box;1439}14401441html[dir="ltr"] #toolbarViewerLeft > .toolbarButton:first-child,1442html[dir="rtl"] #toolbarViewerRight > .toolbarButton:last-child {1443margin-left: 2px;1444}14451446html[dir="ltr"] #toolbarViewerRight > .toolbarButton:last-child,1447html[dir="rtl"] #toolbarViewerLeft > .toolbarButton:first-child {1448margin-right: 2px;1449}1450.toolbarButton:hover,1451.toolbarButton:focus {1452background-color: var(--button-hover-color);1453}1454.secondaryToolbarButton:hover,1455.secondaryToolbarButton:focus {1456background-color: var(--doorhanger-hover-color);1457}14581459.toolbarButton.toggled,1460.splitToolbarButton.toggled > .toolbarButton.toggled,1461.secondaryToolbarButton.toggled {1462background-color: var(--toggled-btn-bg-color);1463}14641465.toolbarButton.toggled:hover:active,1466.splitToolbarButton.toggled > .toolbarButton.toggled:hover:active,1467.secondaryToolbarButton.toggled:hover:active {1468background-color: var(--toggled-hover-active-btn-color);1469}14701471.dropdownToolbarButton {1472width: 140px;1473padding: 0;1474overflow: hidden;1475background-color: var(--dropdown-btn-bg-color);1476margin-top: 2px !important;1477}1478.dropdownToolbarButton::after {1479top: 6px;1480pointer-events: none;14811482-webkit-mask-image: var(--toolbarButton-menuArrow-icon);1483mask-image: var(--toolbarButton-menuArrow-icon);1484}1485html[dir="ltr"] .dropdownToolbarButton::after {1486right: 7px;1487}1488html[dir="rtl"] .dropdownToolbarButton::after {1489left: 7px;1490}14911492.dropdownToolbarButton > select {1493width: 162px;1494height: 28px;1495font-size: 12px;1496color: var(--main-color);1497margin: 0;1498padding: 1px 0 2px;1499border: none;1500background-color: var(--dropdown-btn-bg-color);1501}1502html[dir="ltr"] .dropdownToolbarButton > select {1503padding-left: 4px;1504}1505html[dir="rtl"] .dropdownToolbarButton > select {1506padding-right: 4px;1507}1508.dropdownToolbarButton > select:hover {1509background-color: var(--button-hover-color);1510}15111512.dropdownToolbarButton > select:focus {1513background-color: var(--button-hover-color);1514}15151516.dropdownToolbarButton > select > option {1517background: var(--doorhanger-bg-color);1518}15191520#customScaleOption {1521display: none;1522}15231524#pageWidthOption {1525border-bottom: 1px rgba(255, 255, 255, 0.5) solid;1526}15271528.toolbarButtonSpacer {1529width: 30px;1530display: inline-block;1531height: 1px;1532}15331534.toolbarButton::before,1535.secondaryToolbarButton::before,1536.dropdownToolbarButton::after,1537.treeItemToggler::before {1538/* All matching images have a size of 16x161539* All relevant containers have a size of 28x28 */1540position: absolute;1541display: inline-block;1542width: 16px;1543height: 16px;15441545content: "";1546background-color: var(--toolbar-icon-bg-color);1547-webkit-mask-size: cover;1548mask-size: cover;1549}15501551.toolbarButton::before {1552opacity: var(--toolbar-icon-opacity);1553top: 6px;1554left: 6px;1555}15561557.secondaryToolbarButton::before {1558opacity: var(--doorhanger-icon-opacity);1559top: 5px;1560}1561html[dir="ltr"] .secondaryToolbarButton::before {1562left: 12px;1563}1564html[dir="rtl"] .secondaryToolbarButton::before {1565right: 12px;1566}15671568.toolbarButton#sidebarToggle::before {1569-webkit-mask-image: var(--toolbarButton-sidebarToggle-icon);1570mask-image: var(--toolbarButton-sidebarToggle-icon);1571}1572html[dir="rtl"] .toolbarButton#sidebarToggle::before {1573transform: scaleX(-1);1574}15751576.toolbarButton#secondaryToolbarToggle::before {1577-webkit-mask-image: var(--toolbarButton-secondaryToolbarToggle-icon);1578mask-image: var(--toolbarButton-secondaryToolbarToggle-icon);1579}1580html[dir="rtl"] .toolbarButton#secondaryToolbarToggle::before {1581transform: scaleX(-1);1582}15831584.toolbarButton.findPrevious::before {1585-webkit-mask-image: var(--findbarButton-previous-icon);1586mask-image: var(--findbarButton-previous-icon);1587}15881589.toolbarButton.findNext::before {1590-webkit-mask-image: var(--findbarButton-next-icon);1591mask-image: var(--findbarButton-next-icon);1592}15931594.toolbarButton.pageUp::before {1595-webkit-mask-image: var(--toolbarButton-pageUp-icon);1596mask-image: var(--toolbarButton-pageUp-icon);1597}15981599.toolbarButton.pageDown::before {1600-webkit-mask-image: var(--toolbarButton-pageDown-icon);1601mask-image: var(--toolbarButton-pageDown-icon);1602}16031604.toolbarButton.zoomOut::before {1605-webkit-mask-image: var(--toolbarButton-zoomOut-icon);1606mask-image: var(--toolbarButton-zoomOut-icon);1607}16081609.toolbarButton.zoomIn::before {1610-webkit-mask-image: var(--toolbarButton-zoomIn-icon);1611mask-image: var(--toolbarButton-zoomIn-icon);1612}16131614.toolbarButton.presentationMode::before,1615.secondaryToolbarButton.presentationMode::before {1616-webkit-mask-image: var(--toolbarButton-presentationMode-icon);1617mask-image: var(--toolbarButton-presentationMode-icon);1618}16191620.toolbarButton.print::before,1621.secondaryToolbarButton.print::before {1622-webkit-mask-image: var(--toolbarButton-print-icon);1623mask-image: var(--toolbarButton-print-icon);1624}16251626.toolbarButton.openFile::before,1627.secondaryToolbarButton.openFile::before {1628-webkit-mask-image: var(--toolbarButton-openFile-icon);1629mask-image: var(--toolbarButton-openFile-icon);1630}16311632.toolbarButton.download::before,1633.secondaryToolbarButton.download::before {1634-webkit-mask-image: var(--toolbarButton-download-icon);1635mask-image: var(--toolbarButton-download-icon);1636}16371638.secondaryToolbarButton.bookmark {1639padding-top: 6px;1640text-decoration: none;1641}16421643.bookmark[href="#"] {1644opacity: 0.5;1645pointer-events: none;1646}16471648.toolbarButton.bookmark::before,1649.secondaryToolbarButton.bookmark::before {1650-webkit-mask-image: var(--toolbarButton-bookmark-icon);1651mask-image: var(--toolbarButton-bookmark-icon);1652}16531654#viewThumbnail.toolbarButton::before {1655-webkit-mask-image: var(--toolbarButton-viewThumbnail-icon);1656mask-image: var(--toolbarButton-viewThumbnail-icon);1657}16581659#viewOutline.toolbarButton::before {1660-webkit-mask-image: var(--toolbarButton-viewOutline-icon);1661mask-image: var(--toolbarButton-viewOutline-icon);1662}1663html[dir="rtl"] #viewOutline.toolbarButton::before {1664transform: scaleX(-1);1665}16661667#viewAttachments.toolbarButton::before {1668-webkit-mask-image: var(--toolbarButton-viewAttachments-icon);1669mask-image: var(--toolbarButton-viewAttachments-icon);1670}16711672#viewLayers.toolbarButton::before {1673-webkit-mask-image: var(--toolbarButton-viewLayers-icon);1674mask-image: var(--toolbarButton-viewLayers-icon);1675}16761677#currentOutlineItem.toolbarButton::before {1678-webkit-mask-image: var(--toolbarButton-currentOutlineItem-icon);1679mask-image: var(--toolbarButton-currentOutlineItem-icon);1680}1681html[dir="rtl"] #currentOutlineItem.toolbarButton::before {1682transform: scaleX(-1);1683}16841685#viewFind.toolbarButton::before {1686-webkit-mask-image: var(--toolbarButton-search-icon);1687mask-image: var(--toolbarButton-search-icon);1688}16891690.toolbarButton.pdfSidebarNotification::after {1691position: absolute;1692display: inline-block;1693top: 1px;1694/* Create a filled circle, with a diameter of 9 pixels, using only CSS: */1695content: "";1696background-color: rgba(112, 219, 85, 1);1697height: 9px;1698width: 9px;1699border-radius: 50%;1700}1701html[dir="ltr"] .toolbarButton.pdfSidebarNotification::after {1702left: 17px;1703}1704html[dir="rtl"] .toolbarButton.pdfSidebarNotification::after {1705right: 17px;1706}17071708.secondaryToolbarButton {1709position: relative;1710margin: 0;1711padding: 0 0 1px;1712height: auto;1713min-height: 26px;1714width: auto;1715min-width: 100%;1716white-space: normal;1717border-radius: 0;1718box-sizing: border-box;1719}1720html[dir="ltr"] .secondaryToolbarButton {1721padding-left: 36px;1722text-align: left;1723}1724html[dir="rtl"] .secondaryToolbarButton {1725padding-right: 36px;1726text-align: right;1727}17281729html[dir="ltr"] .secondaryToolbarButton > span {1730padding-right: 4px;1731}1732html[dir="rtl"] .secondaryToolbarButton > span {1733padding-left: 4px;1734}17351736.secondaryToolbarButton.firstPage::before {1737-webkit-mask-image: var(--secondaryToolbarButton-firstPage-icon);1738mask-image: var(--secondaryToolbarButton-firstPage-icon);1739}17401741.secondaryToolbarButton.lastPage::before {1742-webkit-mask-image: var(--secondaryToolbarButton-lastPage-icon);1743mask-image: var(--secondaryToolbarButton-lastPage-icon);1744}17451746.secondaryToolbarButton.rotateCcw::before {1747-webkit-mask-image: var(--secondaryToolbarButton-rotateCcw-icon);1748mask-image: var(--secondaryToolbarButton-rotateCcw-icon);1749}17501751.secondaryToolbarButton.rotateCw::before {1752-webkit-mask-image: var(--secondaryToolbarButton-rotateCw-icon);1753mask-image: var(--secondaryToolbarButton-rotateCw-icon);1754}17551756.secondaryToolbarButton.selectTool::before {1757-webkit-mask-image: var(--secondaryToolbarButton-selectTool-icon);1758mask-image: var(--secondaryToolbarButton-selectTool-icon);1759}17601761.secondaryToolbarButton.handTool::before {1762-webkit-mask-image: var(--secondaryToolbarButton-handTool-icon);1763mask-image: var(--secondaryToolbarButton-handTool-icon);1764}17651766.secondaryToolbarButton.scrollVertical::before {1767-webkit-mask-image: var(--secondaryToolbarButton-scrollVertical-icon);1768mask-image: var(--secondaryToolbarButton-scrollVertical-icon);1769}17701771.secondaryToolbarButton.scrollHorizontal::before {1772-webkit-mask-image: var(--secondaryToolbarButton-scrollHorizontal-icon);1773mask-image: var(--secondaryToolbarButton-scrollHorizontal-icon);1774}17751776.secondaryToolbarButton.scrollWrapped::before {1777-webkit-mask-image: var(--secondaryToolbarButton-scrollWrapped-icon);1778mask-image: var(--secondaryToolbarButton-scrollWrapped-icon);1779}17801781.secondaryToolbarButton.spreadNone::before {1782-webkit-mask-image: var(--secondaryToolbarButton-spreadNone-icon);1783mask-image: var(--secondaryToolbarButton-spreadNone-icon);1784}17851786.secondaryToolbarButton.spreadOdd::before {1787-webkit-mask-image: var(--secondaryToolbarButton-spreadOdd-icon);1788mask-image: var(--secondaryToolbarButton-spreadOdd-icon);1789}17901791.secondaryToolbarButton.spreadEven::before {1792-webkit-mask-image: var(--secondaryToolbarButton-spreadEven-icon);1793mask-image: var(--secondaryToolbarButton-spreadEven-icon);1794}17951796.secondaryToolbarButton.documentProperties::before {1797-webkit-mask-image: var(--secondaryToolbarButton-documentProperties-icon);1798mask-image: var(--secondaryToolbarButton-documentProperties-icon);1799}18001801.verticalToolbarSeparator {1802display: block;1803padding: 11px 0;1804margin: 5px 2px;1805width: 1px;1806background-color: var(--separator-color);1807}1808html[dir="ltr"] .verticalToolbarSeparator {1809margin-left: 2px;1810}1811html[dir="rtl"] .verticalToolbarSeparator {1812margin-right: 2px;1813}18141815.horizontalToolbarSeparator {1816display: block;1817margin: 6px 0 5px;1818height: 1px;1819width: 100%;1820border-top: 1px solid var(--doorhanger-separator-color);1821}18221823.toolbarField {1824padding: 4px 7px;1825margin: 3px 0;1826border-radius: 2px;1827background-color: var(--field-bg-color);1828background-clip: padding-box;1829border-width: 1px;1830border-style: solid;1831border-color: var(--field-border-color);1832box-shadow: none;1833color: var(--field-color);1834font-size: 12px;1835line-height: 16px;1836outline-style: none;1837}18381839.toolbarField[type="checkbox"] {1840opacity: 0;1841position: absolute !important;1842left: 0;1843}18441845html[dir="ltr"] .toolbarField[type="checkbox"] {1846margin: 10px 0 3px 7px;1847}18481849html[dir="rtl"] .toolbarField[type="checkbox"] {1850margin: 10px 7px 3px 0;1851}18521853.toolbarField.pageNumber {1854-moz-appearance: textfield; /* hides the spinner in moz */1855min-width: 16px;1856text-align: right;1857width: 40px;1858}18591860.toolbarField.pageNumber.visiblePageIsLoading {1861background-image: var(--loading-icon);1862background-repeat: no-repeat;1863background-position: 3px;1864}18651866.toolbarField.pageNumber::-webkit-inner-spin-button,1867.toolbarField.pageNumber::-webkit-outer-spin-button {1868-webkit-appearance: none;1869margin: 0;1870}18711872.toolbarField:focus {1873border-color: #0a84ff;1874}18751876.toolbarLabel {1877min-width: 16px;1878padding: 6px;1879margin: 2px;1880border: 1px solid rgba(0, 0, 0, 0);1881border-radius: 2px;1882color: var(--main-color);1883font-size: 12px;1884line-height: 14px;1885text-align: left;1886-webkit-user-select: none;1887-moz-user-select: none;1888user-select: none;1889cursor: default;1890}18911892html[dir="ltr"] #numPages.toolbarLabel {1893padding-left: 2px;1894}1895html[dir="rtl"] #numPages.toolbarLabel {1896padding-right: 2px;1897}18981899#thumbnailView {1900position: absolute;1901width: calc(100% - 60px);1902top: 0;1903bottom: 0;1904padding: 10px 30px 0;1905overflow: auto;1906-webkit-overflow-scrolling: touch;1907}19081909#thumbnailView > a:active,1910#thumbnailView > a:focus {1911outline: 0;1912}19131914.thumbnail {1915margin: 0 10px 5px;1916}1917html[dir="ltr"] .thumbnail {1918float: left;1919}1920html[dir="rtl"] .thumbnail {1921float: right;1922}19231924#thumbnailView > a:last-of-type > .thumbnail {1925margin-bottom: 10px;1926}19271928#thumbnailView > a:last-of-type > .thumbnail:not([data-loaded]) {1929margin-bottom: 9px;1930}19311932.thumbnail:not([data-loaded]) {1933border: 1px dashed rgba(132, 132, 132, 1);1934margin: -1px 9px 4px;1935}19361937.thumbnailImage {1938border: 1px solid rgba(0, 0, 0, 0);1939box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);1940opacity: 0.8;1941z-index: 99;1942background-color: rgba(255, 255, 255, 1);1943background-clip: content-box;1944}19451946.thumbnailSelectionRing {1947border-radius: 2px;1948padding: 7px;1949}19501951a:focus > .thumbnail > .thumbnailSelectionRing > .thumbnailImage,1952.thumbnail:hover > .thumbnailSelectionRing > .thumbnailImage {1953opacity: 0.9;1954}19551956a:focus > .thumbnail > .thumbnailSelectionRing,1957.thumbnail:hover > .thumbnailSelectionRing {1958background-color: var(--sidebaritem-bg-color);1959background-clip: padding-box;1960color: rgba(255, 255, 255, 0.9);1961}19621963.thumbnail.selected > .thumbnailSelectionRing > .thumbnailImage {1964opacity: 1;1965}19661967.thumbnail.selected > .thumbnailSelectionRing {1968background-color: var(--sidebaritem-bg-color);1969background-clip: padding-box;1970color: rgba(255, 255, 255, 1);1971}19721973#outlineView,1974#attachmentsView,1975#layersView {1976position: absolute;1977width: calc(100% - 8px);1978top: 0;1979bottom: 0;1980padding: 4px 4px 0;1981overflow: auto;1982-webkit-overflow-scrolling: touch;1983-webkit-user-select: none;1984-moz-user-select: none;1985user-select: none;1986}19871988html[dir="ltr"] .treeWithDeepNesting > .treeItem,1989html[dir="ltr"] .treeItem > .treeItems {1990margin-left: 20px;1991}19921993html[dir="rtl"] .treeWithDeepNesting > .treeItem,1994html[dir="rtl"] .treeItem > .treeItems {1995margin-right: 20px;1996}19971998.treeItem > a {1999text-decoration: none;2000display: inline-block;2001min-width: 95%;2002/* Subtract the right padding (left, in RTL mode) of the container: */2003min-width: calc(100% - 4px);2004height: auto;2005margin-bottom: 1px;2006border-radius: 2px;2007color: var(--treeitem-color);2008font-size: 13px;2009line-height: 15px;2010-webkit-user-select: none;2011-moz-user-select: none;2012user-select: none;2013white-space: normal;2014cursor: pointer;2015}2016html[dir="ltr"] .treeItem > a {2017padding: 2px 0 5px 4px;2018}2019html[dir="rtl"] .treeItem > a {2020padding: 2px 4px 5px 0;2021}20222023#layersView .treeItem > a > * {2024cursor: pointer;2025}2026html[dir="ltr"] #layersView .treeItem > a > label {2027padding-left: 4px;2028}2029html[dir="rtl"] #layersView .treesItem > a > label {2030padding-right: 4px;2031}20322033.treeItemToggler {2034position: relative;2035height: 0;2036width: 0;2037color: rgba(255, 255, 255, 0.5);2038}2039.treeItemToggler::before {2040-webkit-mask-image: var(--treeitem-expanded-icon);2041mask-image: var(--treeitem-expanded-icon);2042}2043.treeItemToggler.treeItemsHidden::before {2044-webkit-mask-image: var(--treeitem-collapsed-icon);2045mask-image: var(--treeitem-collapsed-icon);2046}2047html[dir="rtl"] .treeItemToggler.treeItemsHidden::before {2048transform: scaleX(-1);2049}2050.treeItemToggler.treeItemsHidden ~ .treeItems {2051display: none;2052}2053html[dir="ltr"] .treeItemToggler {2054float: left;2055}2056html[dir="rtl"] .treeItemToggler {2057float: right;2058}2059html[dir="ltr"] .treeItemToggler::before {2060right: 4px;2061}2062html[dir="rtl"] .treeItemToggler::before {2063left: 4px;2064}20652066.treeItem.selected > a {2067background-color: var(--treeitem-selected-bg-color);2068color: var(--treeitem-selected-color);2069}20702071.treeItemToggler:hover,2072.treeItemToggler:hover + a,2073.treeItemToggler:hover ~ .treeItems,2074.treeItem > a:hover {2075background-color: var(--sidebaritem-bg-color);2076background-clip: padding-box;2077border-radius: 2px;2078color: var(--treeitem-hover-color);2079}20802081/* TODO: file FF bug to support ::-moz-selection:window-inactive2082so we can override the opaque grey background when the window is inactive;2083see https://bugzilla.mozilla.org/show_bug.cgi?id=706209 */2084::-moz-selection {2085background: rgba(0, 0, 255, 0.3);2086}2087::selection {2088background: rgba(0, 0, 255, 0.3);2089}20902091#errorWrapper {2092background: none repeat scroll 0 0 var(--errorWrapper-bg-color);2093color: var(--main-color);2094left: 0;2095position: absolute;2096right: 0;2097z-index: 1000;2098padding: 3px 6px;2099}21002101#errorMessageLeft {2102float: left;2103}21042105#errorMessageRight {2106float: right;2107}21082109#errorMoreInfo {2110background-color: var(--field-bg-color);2111color: var(--field-color);2112border: 1px solid var(--field-border-color);2113padding: 3px;2114margin: 3px;2115width: 98%;2116}21172118.overlayButton {2119width: auto;2120margin: 3px 4px 2px !important;2121padding: 2px 11px;2122}21232124#overlayContainer {2125display: table;2126position: absolute;2127width: 100%;2128height: 100%;2129background-color: rgba(0, 0, 0, 0.2);2130z-index: 40000;2131}2132#overlayContainer > * {2133overflow: auto;2134-webkit-overflow-scrolling: touch;2135}21362137#overlayContainer > .container {2138display: table-cell;2139vertical-align: middle;2140text-align: center;2141}21422143#overlayContainer > .container > .dialog {2144display: inline-block;2145padding: 15px;2146border-spacing: 4px;2147color: var(--main-color);2148font-size: 12px;2149line-height: 14px;2150background-color: var(--doorhanger-bg-color);2151border: 1px solid rgba(0, 0, 0, 0.5);2152border-radius: 4px;2153box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);2154}21552156.dialog > .row {2157display: table-row;2158}21592160.dialog > .row > * {2161display: table-cell;2162}21632164.dialog .toolbarField {2165margin: 5px 0;2166}21672168.dialog .separator {2169display: block;2170margin: 4px 0;2171height: 1px;2172width: 100%;2173background-color: var(--separator-color);2174}21752176.dialog .buttonRow {2177text-align: center;2178vertical-align: middle;2179}21802181.dialog :link {2182color: rgba(255, 255, 255, 1);2183}21842185#passwordOverlay > .dialog {2186text-align: center;2187}2188#passwordOverlay .toolbarField {2189width: 200px;2190}21912192#documentPropertiesOverlay > .dialog {2193text-align: left;2194}2195#documentPropertiesOverlay .row > * {2196min-width: 100px;2197}2198html[dir="ltr"] #documentPropertiesOverlay .row > * {2199text-align: left;2200}2201html[dir="rtl"] #documentPropertiesOverlay .row > * {2202text-align: right;2203}2204#documentPropertiesOverlay .row > span {2205width: 125px;2206word-wrap: break-word;2207}2208#documentPropertiesOverlay .row > p {2209max-width: 225px;2210word-wrap: break-word;2211}2212#documentPropertiesOverlay .buttonRow {2213margin-top: 10px;2214}22152216.clearBoth {2217clear: both;2218}22192220.fileInput {2221background: rgba(255, 255, 255, 1);2222color: rgba(0, 0, 0, 1);2223margin-top: 5px;2224visibility: hidden;2225position: fixed;2226right: 0;2227top: 0;2228}22292230#PDFBug {2231background: none repeat scroll 0 0 rgba(255, 255, 255, 1);2232border: 1px solid rgba(102, 102, 102, 1);2233position: fixed;2234top: 32px;2235right: 0;2236bottom: 0;2237font-size: 10px;2238padding: 0;2239width: 300px;2240}2241#PDFBug .controls {2242background: rgba(238, 238, 238, 1);2243border-bottom: 1px solid rgba(102, 102, 102, 1);2244padding: 3px;2245}2246#PDFBug .panels {2247bottom: 0;2248left: 0;2249overflow: auto;2250-webkit-overflow-scrolling: touch;2251position: absolute;2252right: 0;2253top: 27px;2254}2255#PDFBug .panels > div {2256padding: 5px;2257}2258#PDFBug button.active {2259font-weight: bold;2260}2261.debuggerShowText {2262background: none repeat scroll 0 0 rgba(255, 255, 0, 1);2263color: rgba(0, 0, 255, 1);2264}2265.debuggerHideText:hover {2266background: none repeat scroll 0 0 rgba(255, 255, 0, 1);2267}2268#PDFBug .stats {2269font-family: courier;2270font-size: 10px;2271white-space: pre;2272}2273#PDFBug .stats .title {2274font-weight: bold;2275}2276#PDFBug table {2277font-size: 10px;2278}22792280#viewer.textLayer-visible .textLayer {2281opacity: 1;2282}22832284#viewer.textLayer-visible .canvasWrapper {2285background-color: rgba(128, 255, 128, 1);2286}22872288#viewer.textLayer-visible .canvasWrapper canvas {2289mix-blend-mode: screen;2290}22912292#viewer.textLayer-visible .textLayer > span {2293background-color: rgba(255, 255, 0, 0.1);2294color: rgba(0, 0, 0, 1);2295border: solid 1px rgba(255, 0, 0, 0.5);2296box-sizing: border-box;2297}22982299#viewer.textLayer-hover .textLayer > span:hover {2300background-color: rgba(255, 255, 255, 1);2301color: rgba(0, 0, 0, 1);2302}23032304#viewer.textLayer-shadow .textLayer > span {2305background-color: rgba(255, 255, 255, 0.6);2306color: rgba(0, 0, 0, 1);2307}23082309.grab-to-pan-grab {2310cursor: url("images/grab.cur"), move !important;2311cursor: -webkit-grab !important;2312cursor: grab !important;2313}2314.grab-to-pan-grab2315*:not(input):not(textarea):not(button):not(select):not(:link) {2316cursor: inherit !important;2317}2318.grab-to-pan-grab:active,2319.grab-to-pan-grabbing {2320cursor: url("images/grabbing.cur"), move !important;2321cursor: -webkit-grabbing !important;2322cursor: grabbing !important;2323position: fixed;2324background: rgba(0, 0, 0, 0);2325display: block;2326top: 0;2327left: 0;2328right: 0;2329bottom: 0;2330overflow: hidden;2331z-index: 50000; /* should be higher than anything else in PDF.js! */2332}23332334@page {2335margin: 0;2336}23372338#printContainer {2339display: none;2340}23412342@media print {2343/* General rules for printing. */2344body {2345background: rgba(0, 0, 0, 0) none;2346}23472348/* Rules for browsers that don't support mozPrintCallback. */2349#sidebarContainer,2350#secondaryToolbar,2351.toolbar,2352#loadingBox,2353#errorWrapper,2354.textLayer {2355display: none;2356}2357#viewerContainer {2358overflow: visible;2359}23602361#mainContainer,2362#viewerContainer,2363.page,2364.page canvas {2365position: static;2366padding: 0;2367margin: 0;2368}23692370.page {2371float: left;2372display: none;2373border: none;2374box-shadow: none;2375background-clip: content-box;2376background-color: rgba(255, 255, 255, 1);2377}23782379.page[data-loaded] {2380display: block;2381}23822383.fileInput {2384display: none;2385}23862387/* Rules for browsers that support PDF.js printing */2388body[data-pdfjsprinting] #outerContainer {2389display: none;2390}2391body[data-pdfjsprinting] #printContainer {2392display: block;2393}2394#printContainer {2395height: 100%;2396}2397/* wrapper around (scaled) print canvas elements */2398#printContainer > div {2399page-break-after: always;2400page-break-inside: avoid;24012402/* The wrapper always cover the whole page. */2403height: 100%;2404width: 100%;24052406display: flex;2407flex-direction: column;2408justify-content: center;2409align-items: center;2410}2411#printContainer canvas,2412#printContainer img {2413/* The intrinsic canvas / image size will make sure that we fit the page. */2414max-width: 100%;2415max-height: 100%;24162417direction: ltr;2418display: block;2419}2420}24212422.visibleLargeView,2423.visibleMediumView,2424.visibleSmallView {2425display: none;2426}24272428@media all and (max-width: 900px) {2429#toolbarViewerMiddle {2430display: table;2431margin: auto;2432left: auto;2433position: inherit;2434transform: none;2435}2436}24372438@media all and (max-width: 840px) {2439#sidebarContainer {2440background-color: var(--sidebar-narrow-bg-color);2441}24422443html[dir="ltr"] #outerContainer.sidebarOpen #viewerContainer {2444left: 0 !important;2445}2446html[dir="rtl"] #outerContainer.sidebarOpen #viewerContainer {2447right: 0 !important;2448}24492450#outerContainer .hiddenLargeView,2451#outerContainer .hiddenMediumView {2452display: inherit;2453}2454#outerContainer .visibleLargeView,2455#outerContainer .visibleMediumView {2456display: none;2457}2458}24592460@media all and (max-width: 770px) {2461#outerContainer .hiddenLargeView {2462display: none;2463}2464#outerContainer .visibleLargeView {2465display: inherit;2466}2467}24682469@media all and (max-width: 700px) {2470#outerContainer .hiddenMediumView {2471display: none;2472}2473#outerContainer .visibleMediumView {2474display: inherit;2475}2476}24772478@media all and (max-width: 640px) {2479.hiddenSmallView,2480.hiddenSmallView * {2481display: none;2482}2483.visibleSmallView {2484display: inherit;2485}2486.toolbarButtonSpacer {2487width: 0;2488}2489html[dir="ltr"] .findbar {2490left: 34px;2491}2492html[dir="rtl"] .findbar {2493right: 34px;2494}2495}24962497@media all and (max-width: 535px) {2498#scaleSelectContainer {2499display: none;2500}2501}250225032504