markpdfdown 0.4.2-beta.0 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -185,6 +185,25 @@ body {
|
|
|
185
185
|
.ant-splitter-panel:last-child {
|
|
186
186
|
overflow: auto !important;
|
|
187
187
|
}
|
|
188
|
+
|
|
189
|
+
/* Floating copy button for preview panels */
|
|
190
|
+
.preview-floating-action {
|
|
191
|
+
position: absolute;
|
|
192
|
+
top: 10px;
|
|
193
|
+
right: 10px;
|
|
194
|
+
z-index: 10;
|
|
195
|
+
opacity: 0.65;
|
|
196
|
+
transition: opacity 0.2s ease, background-color 0.2s ease;
|
|
197
|
+
background-color: rgba(255, 255, 255, 0.72);
|
|
198
|
+
border-color: rgba(0, 0, 0, 0.15);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.preview-floating-action:hover,
|
|
202
|
+
.preview-floating-action:focus,
|
|
203
|
+
.preview-floating-action:focus-visible {
|
|
204
|
+
opacity: 1;
|
|
205
|
+
background-color: rgba(255, 255, 255, 0.92);
|
|
206
|
+
}
|
|
188
207
|
.payment-celebration-overlay {
|
|
189
208
|
position: fixed;
|
|
190
209
|
inset: 0;
|
package/dist/renderer/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>MarkPDFdown</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-CNUNN0iI.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-DXcyx2Q8.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED