mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-01-19 20:27:59 -05:00
117 lines
3.1 KiB
CSS
117 lines
3.1 KiB
CSS
/* 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.
|
|
*/
|
|
.textLayer {
|
|
position: absolute;
|
|
text-align: initial;
|
|
inset: 0;
|
|
overflow: clip;
|
|
opacity: 1;
|
|
line-height: 1;
|
|
text-size-adjust: none;
|
|
forced-color-adjust: none;
|
|
transform-origin: 0 0;
|
|
caret-color: CanvasText;
|
|
z-index: 0;
|
|
/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
|
|
* the problem doesn't show up in "text" reference tests. */
|
|
/*#if !MOZCENTRAL*/
|
|
/*#endif*/
|
|
/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
|
|
/*#if !MOZCENTRAL*/
|
|
/*#endif*/
|
|
}
|
|
.textLayer.highlighting {
|
|
touch-action: none;
|
|
}
|
|
.textLayer :is(span, br) {
|
|
color: transparent;
|
|
position: absolute;
|
|
white-space: pre;
|
|
cursor: text;
|
|
transform-origin: 0% 0%;
|
|
}
|
|
.textLayer > :not(.markedContent),
|
|
.textLayer .markedContent span:not(.markedContent) {
|
|
z-index: 1;
|
|
}
|
|
.textLayer span.markedContent {
|
|
top: 0;
|
|
height: 0;
|
|
}
|
|
.textLayer span[role="img"] {
|
|
user-select: none;
|
|
cursor: default;
|
|
}
|
|
.textLayer .highlight {
|
|
--highlight-bg-color: rgba(180, 0, 170, 0.25);
|
|
--highlight-selected-bg-color: rgba(0, 100, 0, 0.25);
|
|
--highlight-backdrop-filter: none;
|
|
--highlight-selected-backdrop-filter: none;
|
|
margin: -1px;
|
|
padding: 1px;
|
|
background-color: var(--highlight-bg-color);
|
|
backdrop-filter: var(--highlight-backdrop-filter);
|
|
border-radius: 4px;
|
|
}
|
|
@media screen and (forced-colors: active) {
|
|
.textLayer .highlight {
|
|
--highlight-bg-color: transparent;
|
|
--highlight-selected-bg-color: transparent;
|
|
--highlight-backdrop-filter: var(--hcm-highlight-filter);
|
|
--highlight-selected-backdrop-filter: var(--hcm-highlight-selected-filter);
|
|
}
|
|
}
|
|
.textLayer .highlight.appended {
|
|
position: initial;
|
|
}
|
|
.textLayer .highlight.begin {
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
.textLayer .highlight.end {
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
.textLayer .highlight.middle {
|
|
border-radius: 0;
|
|
}
|
|
.textLayer .highlight.selected {
|
|
background-color: var(--highlight-selected-bg-color);
|
|
backdrop-filter: var(--highlight-selected-backdrop-filter);
|
|
}
|
|
.textLayer ::selection {
|
|
/* stylelint-disable declaration-block-no-duplicate-properties */
|
|
/*#if !MOZCENTRAL*/
|
|
background: rgba(0 0 255 / 0.25);
|
|
/*#endif*/
|
|
/* stylelint-enable declaration-block-no-duplicate-properties */
|
|
background: color-mix(in srgb, AccentColor, transparent 75%);
|
|
}
|
|
.textLayer br::selection {
|
|
background: transparent;
|
|
}
|
|
.textLayer .endOfContent {
|
|
display: block;
|
|
position: absolute;
|
|
inset: 100% 0 0;
|
|
z-index: 0;
|
|
cursor: default;
|
|
user-select: none;
|
|
}
|
|
.textLayer.selecting .endOfContent {
|
|
top: 0;
|
|
}
|
|
#koodoPDFLayerExtra {
|
|
display: none;
|
|
}
|