1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/* Copyright 2024 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
/* #css_wrapper_metadata_start
* #type=style-lit
* #import=chrome://resources/cr_elements/cr_hidden_style_lit.css.js
* #import=chrome://resources/cr_elements/cr_shared_vars.css.js
* #import=chrome://resources/cr_elements/cr_spinner_style_lit.css.js
* #import=./elements/shared_vars.css.js
* #import=./pdf_viewer_shared_style.css.js
* #include=pdf-viewer-shared-style cr-hidden-style-lit cr-spinner-style-lit
* #css_wrapper_metadata_end */
:host {
--viewer-pdf-sidenav-width: 300px;
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
viewer-pdf-sidenav,
viewer-toolbar {
--pdf-toolbar-text-color: rgb(241, 241, 241);
}
<if expr="enable_pdf_ink2">
#side-panel {
border-inline-start: 1px solid var(--viewer-border-color);
}
</if>
viewer-toolbar {
--active-button-bg: rgba(255, 255, 255, 0.24);
z-index: 1;
}
@media(max-width: 200px),
(max-height: 250px) {
viewer-toolbar {
display: none;
}
}
#bottom {
display: flex;
justify-content: center;
}
#sidenav-container {
border-inline-end: 1px solid var(--viewer-border-color);
overflow: hidden;
transition: transform 250ms cubic-bezier(.6, 0, 0, 1), visibility 250ms;
visibility: visible;
width: var(--viewer-pdf-sidenav-width);
}
#sidenav-container.floating {
bottom: 0;
position: absolute;
top: 0;
z-index: 1;
}
#sidenav-container[closed] {
transform: translateX(-100%);
transition: transform 200ms cubic-bezier(.6, 0, 0, 1),
visibility 200ms, width 0ms 200ms;
visibility: hidden;
width: 0;
}
:host-context([dir='rtl']) #sidenav-container[closed] {
transform: translateX(100%);
}
@media(max-width: 500px),
(max-height: 250px) {
#sidenav-container {
display: none;
}
}
#content-focus-rectangle {
border: 2px solid var(--google-grey-500);
border-radius: 2px;
box-sizing: border-box;
height: 100%;
pointer-events: none;
position: absolute;
top: 0;
width: 100%;
}
viewer-ink-host {
height: 100%;
position: absolute;
width: 100%;
}
#container {
display: flex;
flex: 1;
overflow: hidden;
position: relative;
}
#plugin {
position: initial;
}
#content {
height: 100%;
left: 0;
position: sticky;
top: 0;
user-select: none;
z-index: initial;
}
#sizer {
top: 0;
width: 100%;
z-index: initial;
}
/* #main and #scroller are intentionally different elements so that a
* ResizeObserver can be used on #main without triggering
* "ResizeObserver loop limit exceeded".
*/
#main {
flex: 1;
overflow: hidden;
position: relative;
}
#scroller {
/* TODO(crbug.com/40737077): Fix the plugin to properly support RTL painting
* of PDF contents, such that content is aligned to the top-right corner.
* Until then force LTR even in RTL languages, so scrolling of the content
* can originate in the top-left corner, consistent with the expectations of
* the plugin.
*/
direction: ltr;
height: 100%;
overflow: auto;
position: relative;
}
/* Hide scrollbars when in Presentation mode. */
#scroller:fullscreen {
overflow: hidden;
}
.spinner {
mask-image: url(chrome://resources/images/throbber_small.svg);
margin-inline-end: 8px;
--cr-spinner-size: 16px;
}
/* Dark mode styles copied from
ui/webui/resources/cr_elements/shared_vars_css.html. Unfortunately there
seems to be no great way to share styles with the
"prefers-color-scheme: dark" @media query selector.
TODO(crbug.com/40779507): Remove these overrides when the PDF viewer
supports light and dark modes. */
#searchifyProgress {
/* color-inverse-surface */
--cr-toast-background: rgb(227, 227, 227);
/* color-surface */
--cr-toast-text-color: rgb(31, 31, 31);
}
<if expr="enable_pdf_ink2">
.text-box-container {
height: calc(100% - var(--horizontal-scrollbar-width, 0px));
left: 0;
overflow: hidden;
position: absolute;
top: 0;
width: calc(100% - var(--vertical-scrollbar-width, 0px));
}
</if>
|