Spaces:
Runtime error
Runtime error
File size: 3,296 Bytes
537a6f0 | 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 |
/*
* Minimal textLayer styles extracted from pdfjs-dist/web/pdf_viewer.css.
* These ensure the invisible text spans are positioned exactly over the
* rendered canvas so that browser-native Ctrl+F search and text selection
* work correctly.
*/
.textLayer {
position: absolute;
text-align: initial;
inset: 0;
overflow: clip;
opacity: 1;
line-height: 1;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
text-size-adjust: none;
forced-color-adjust: none;
transform-origin: 0 0;
caret-color: CanvasText;
z-index: 0;
}
.textLayer :is(span, br) {
color: transparent;
position: absolute;
white-space: pre;
cursor: text;
transform-origin: 0% 0%;
}
.textLayer {
/* --total-scale-factor is derived from --scale-factor (set on the wrapper)
and --user-unit (defaults to 1). This mirrors the official pdf_viewer.css. */
--user-unit: 1;
--total-scale-factor: calc(var(--scale-factor) * var(--user-unit));
--min-font-size: 1;
--text-scale-factor: calc(var(--total-scale-factor) * var(--min-font-size));
--min-font-size-inv: calc(1 / var(--min-font-size));
}
.textLayer > :not(.markedContent),
.textLayer .markedContent span:not(.markedContent) {
z-index: 1;
--font-height: 0;
font-size: calc(var(--text-scale-factor) * var(--font-height));
--scale-x: 1;
--rotate: 0deg;
transform: rotate(var(--rotate)) scaleX(var(--scale-x)) scale(var(--min-font-size-inv));
}
.textLayer .markedContent {
display: contents;
}
.textLayer span[role='img'] {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
cursor: default;
}
/* Selection highlight color */
.textLayer ::-moz-selection {
background: rgba(0, 0, 255, 0.25);
}
.textLayer ::selection {
background: rgba(0, 0, 255, 0.25);
}
.textLayer br::-moz-selection {
background: transparent;
}
.textLayer br::selection {
background: transparent;
}
.textLayer .endOfContent {
display: block;
position: absolute;
inset: 100% 0 0;
z-index: 0;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.textLayer.selecting .endOfContent {
top: 0;
}
.excel-table-container table {
width: 100%;
border-collapse: collapse;
font-size: 0.875rem;
line-height: 1.25rem;
}
.excel-table-container table td,
.excel-table-container table th {
border-width: 1px;
border-style: solid;
border-color: var(--color-gray-300, #cdcdcd);
padding: 0.5rem 0.75rem;
text-align: left;
}
.dark .excel-table-container table td,
.dark .excel-table-container table th {
border-color: var(--color-gray-600, #676767);
}
.excel-table-container table th {
background-color: var(--color-gray-100, #ececec);
font-weight: 600;
}
.dark .excel-table-container table th {
background-color: var(--color-gray-800, #333);
color: var(--color-gray-100, #ececec);
}
.excel-table-container table tr:nth-child(even) {
background-color: var(--color-gray-50, #f9f9f9);
}
.dark .excel-table-container table tr:nth-child(even) {
background-color: rgba(38, 38, 38, 0.5);
}
.excel-table-container table tr:hover {
background-color: var(--color-gray-100, #ececec);
}
.dark .excel-table-container table tr:hover {
background-color: rgba(51, 51, 51, 0.5);
}
|