@papermap/papermap 1.0.4 → 1.1.1
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.
- package/dist/index.d.mts +1129 -98
- package/dist/index.d.ts +1129 -98
- package/dist/index.js +13857 -5477
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12575 -4193
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -3
- package/readme.md +462 -19
- package/styles.css +383 -4
package/styles.css
CHANGED
|
@@ -1,4 +1,362 @@
|
|
|
1
|
-
@
|
|
1
|
+
.driver-active .driver-overlay,.driver-active *{pointer-events:none}.driver-active .driver-active-element,.driver-active .driver-active-element *,.driver-popover,.driver-popover *{pointer-events:auto}@keyframes animate-fade-in{0%{opacity:0}to{opacity:1}}.driver-fade .driver-overlay{animation:animate-fade-in .2s ease-in-out}.driver-fade .driver-popover{animation:animate-fade-in .2s}.driver-popover{all:unset;box-sizing:border-box;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px #0006;z-index:1000000000;position:fixed;top:0;right:0;background-color:#fff}.driver-popover *{font-family:Helvetica Neue,Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif}.driver-popover-title{font:19px/normal sans-serif;font-weight:700;display:block;position:relative;line-height:1.5;zoom:1;margin:0}.driver-popover-close-btn{all:unset;position:absolute;top:0;right:0;width:32px;height:28px;cursor:pointer;font-size:18px;font-weight:500;color:#d2d2d2;z-index:1;text-align:center;transition:color;transition-duration:.2s}.driver-popover-close-btn:hover,.driver-popover-close-btn:focus{color:#2d2d2d}.driver-popover-title[style*=block]+.driver-popover-description{margin-top:5px}.driver-popover-description{margin-bottom:0;font:14px/normal sans-serif;line-height:1.5;font-weight:400;zoom:1}.driver-popover-footer{margin-top:15px;text-align:right;zoom:1;display:flex;align-items:center;justify-content:space-between}.driver-popover-progress-text{font-size:13px;font-weight:400;color:#727272;zoom:1}.driver-popover-footer button{all:unset;display:inline-block;box-sizing:border-box;padding:3px 7px;text-decoration:none;text-shadow:1px 1px 0 #fff;background-color:#fff;color:#2d2d2d;font:12px/normal sans-serif;cursor:pointer;outline:0;zoom:1;line-height:1.3;border:1px solid #ccc;border-radius:3px}.driver-popover-footer .driver-popover-btn-disabled{opacity:.5;pointer-events:none}:not(body):has(>.driver-active-element){overflow:hidden!important}.driver-no-interaction,.driver-no-interaction *{pointer-events:none!important}.driver-popover-footer button:hover,.driver-popover-footer button:focus{background-color:#f7f7f7}.driver-popover-navigation-btns{display:flex;flex-grow:1;justify-content:flex-end}.driver-popover-navigation-btns button+button{margin-left:4px}.driver-popover-arrow{content:"";position:absolute;border:5px solid #fff}.driver-popover-arrow-side-over{display:none}.driver-popover-arrow-side-left{left:100%;border-right-color:transparent;border-bottom-color:transparent;border-top-color:transparent}.driver-popover-arrow-side-right{right:100%;border-left-color:transparent;border-bottom-color:transparent;border-top-color:transparent}.driver-popover-arrow-side-top{top:100%;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.driver-popover-arrow-side-bottom{bottom:100%;border-left-color:transparent;border-top-color:transparent;border-right-color:transparent}.driver-popover-arrow-side-center{display:none}.driver-popover-arrow-side-left.driver-popover-arrow-align-start,.driver-popover-arrow-side-right.driver-popover-arrow-align-start{top:15px}.driver-popover-arrow-side-top.driver-popover-arrow-align-start,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-start{left:15px}.driver-popover-arrow-align-end.driver-popover-arrow-side-left,.driver-popover-arrow-align-end.driver-popover-arrow-side-right{bottom:15px}.driver-popover-arrow-side-top.driver-popover-arrow-align-end,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-end{right:15px}.driver-popover-arrow-side-left.driver-popover-arrow-align-center,.driver-popover-arrow-side-right.driver-popover-arrow-align-center{top:50%;margin-top:-5px}.driver-popover-arrow-side-top.driver-popover-arrow-align-center,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-center{left:50%;margin-left:-5px}.driver-popover-arrow-none{display:none}
|
|
2
|
+
/* Custom Driver.js Tour Styles for Papermap - Premium Redesign */
|
|
3
|
+
|
|
4
|
+
/* Overlay - above app UI (e.g. workspace selector z-[10001]) */
|
|
5
|
+
.driver-overlay {
|
|
6
|
+
z-index: 99998 !important;
|
|
7
|
+
background-color: rgba(0, 0, 0, 0.4) !important;
|
|
8
|
+
backdrop-filter: none !important;
|
|
9
|
+
-webkit-backdrop-filter: none !important;
|
|
10
|
+
transition: all 0.4s ease-in-out !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.dark .driver-overlay {
|
|
14
|
+
background-color: rgba(0, 0, 0, 0.3) !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Popover container - above overlay, glassmorphism */
|
|
18
|
+
.driver-popover.papermap-tour-popover {
|
|
19
|
+
z-index: 99999 !important;
|
|
20
|
+
background: rgba(255, 255, 255, 0.9) !important;
|
|
21
|
+
border-radius: 24px !important;
|
|
22
|
+
/* smooth rounded corners */
|
|
23
|
+
border: 1px solid rgba(0, 0, 0, 0.05) !important;
|
|
24
|
+
box-shadow:
|
|
25
|
+
0 24px 48px -12px rgba(0, 0, 0, 0.15),
|
|
26
|
+
0 0 0 1px rgba(0, 0, 0, 0.05),
|
|
27
|
+
inset 0 1px 0 0 rgba(255, 255, 255, 0.1) !important;
|
|
28
|
+
max-width: 420px !important;
|
|
29
|
+
padding: 0 !important;
|
|
30
|
+
color: #000 !important;
|
|
31
|
+
overflow: hidden !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/* Expand: modal-like size (create dashboard modal is sm:max-w-[500px]; we go larger for media) */
|
|
35
|
+
.driver-popover.papermap-tour-popover.papermap-tour-popover--expand {
|
|
36
|
+
max-width: 640px !important;
|
|
37
|
+
min-width: 520px !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.driver-popover.papermap-tour-popover.papermap-tour-popover--expand .driver-popover-description img,
|
|
41
|
+
.driver-popover.papermap-tour-popover.papermap-tour-popover--expand .driver-popover-description video {
|
|
42
|
+
max-width: 560px !important;
|
|
43
|
+
width: 100% !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Dark mode popover */
|
|
47
|
+
.dark .driver-popover.papermap-tour-popover {
|
|
48
|
+
background: hsl(var(--card)) !important;
|
|
49
|
+
border: 1px solid hsl(var(--border)) !important;
|
|
50
|
+
box-shadow:
|
|
51
|
+
0 24px 48px -12px rgba(0, 0, 0, 0.8),
|
|
52
|
+
0 0 0 1px hsl(var(--border)),
|
|
53
|
+
inset 0 1px 0 0 rgba(255, 255, 255, 0.05) !important;
|
|
54
|
+
color: hsl(var(--foreground)) !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* Arrow - adjust to be subtle or transparent */
|
|
58
|
+
.driver-popover-arrow {
|
|
59
|
+
border-width: 8px !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.driver-popover-arrow-side-left.driver-popover-arrow {
|
|
63
|
+
border-left-color: rgba(255, 255, 255, 0.9) !important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.driver-popover-arrow-side-right.driver-popover-arrow {
|
|
67
|
+
border-right-color: rgba(255, 255, 255, 0.9) !important;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.driver-popover-arrow-side-top.driver-popover-arrow {
|
|
71
|
+
border-top-color: rgba(255, 255, 255, 0.9) !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.driver-popover-arrow-side-bottom.driver-popover-arrow {
|
|
75
|
+
border-bottom-color: rgba(255, 255, 255, 0.9) !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Dark mode arrows */
|
|
79
|
+
.dark .driver-popover-arrow-side-left.driver-popover-arrow {
|
|
80
|
+
border-left-color: hsl(var(--card)) !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dark .driver-popover-arrow-side-right.driver-popover-arrow {
|
|
84
|
+
border-right-color: hsl(var(--card)) !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.dark .driver-popover-arrow-side-top.driver-popover-arrow {
|
|
88
|
+
border-top-color: hsl(var(--card)) !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.dark .driver-popover-arrow-side-bottom.driver-popover-arrow {
|
|
92
|
+
border-bottom-color: hsl(var(--card)) !important;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* Title styling - Minimalist */
|
|
96
|
+
.driver-popover-title {
|
|
97
|
+
font-family: 'Manrope', 'Inter', sans-serif !important;
|
|
98
|
+
font-size: 22px !important;
|
|
99
|
+
font-weight: 700 !important;
|
|
100
|
+
color: #000 !important;
|
|
101
|
+
margin: 0 !important;
|
|
102
|
+
padding: 32px 32px 12px 32px !important;
|
|
103
|
+
line-height: 1.2 !important;
|
|
104
|
+
letter-spacing: -0.02em !important;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.dark .driver-popover-title {
|
|
108
|
+
color: hsl(var(--foreground)) !important;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/* Description styling */
|
|
112
|
+
.driver-popover-description {
|
|
113
|
+
font-family: 'Manrope', 'Inter', sans-serif !important;
|
|
114
|
+
font-size: 15px !important;
|
|
115
|
+
line-height: 1.6 !important;
|
|
116
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
117
|
+
/* More subtle text */
|
|
118
|
+
margin: 0 !important;
|
|
119
|
+
padding: 0 32px 32px 32px !important;
|
|
120
|
+
font-weight: 400 !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.dark .driver-popover-description {
|
|
124
|
+
color: hsl(var(--muted-foreground)) !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* Footer styling */
|
|
128
|
+
.driver-popover-footer {
|
|
129
|
+
display: flex !important;
|
|
130
|
+
align-items: center !important;
|
|
131
|
+
justify-content: space-between !important;
|
|
132
|
+
padding: 24px 32px !important;
|
|
133
|
+
background: rgba(0, 0, 0, 0.03) !important;
|
|
134
|
+
border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.dark .driver-popover-footer {
|
|
138
|
+
background: rgba(0, 0, 0, 0.2) !important;
|
|
139
|
+
border-top: 1px solid hsl(var(--border)) !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.driver-popover-footer button {
|
|
143
|
+
text-shadow: none !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/* Progress text */
|
|
147
|
+
.driver-popover-progress-text {
|
|
148
|
+
font-family: 'Manrope', 'Inter', sans-serif !important;
|
|
149
|
+
font-size: 13px !important;
|
|
150
|
+
font-weight: 700 !important;
|
|
151
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
152
|
+
letter-spacing: 0.5px !important;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.dark .driver-popover-progress-text {
|
|
156
|
+
color: hsl(var(--muted-foreground)) !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/* Navigation buttons container */
|
|
160
|
+
.driver-popover-navigation-btns {
|
|
161
|
+
display: flex !important;
|
|
162
|
+
align-items: center !important;
|
|
163
|
+
gap: 16px !important;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Button base styles */
|
|
167
|
+
.driver-popover-btn {
|
|
168
|
+
padding: 0 20px !important;
|
|
169
|
+
font-family: 'TWK Lausanne', 'Manrope', 'Inter', sans-serif !important;
|
|
170
|
+
font-size: 14px !important;
|
|
171
|
+
font-weight: 500 !important;
|
|
172
|
+
border-radius: 8px !important;
|
|
173
|
+
transition: all 0.2s ease !important;
|
|
174
|
+
cursor: pointer !important;
|
|
175
|
+
display: inline-flex !important;
|
|
176
|
+
align-items: center !important;
|
|
177
|
+
justify-content: center !important;
|
|
178
|
+
gap: 12px !important;
|
|
179
|
+
outline: none !important;
|
|
180
|
+
height: 48px !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/* Next/Done button */
|
|
184
|
+
.driver-popover-next-btn,
|
|
185
|
+
.driver-popover-btn-group .driver-popover-btn:last-child {
|
|
186
|
+
background-color: #000000 !important;
|
|
187
|
+
color: #FFFFFF !important;
|
|
188
|
+
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
189
|
+
box-shadow: none !important;
|
|
190
|
+
font-weight: 500 !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.driver-popover-next-btn:hover,
|
|
194
|
+
.driver-popover-btn-group .driver-popover-btn:last-child:hover {
|
|
195
|
+
background-color: rgba(0, 0, 0, 0.9) !important;
|
|
196
|
+
border-color: rgba(0, 0, 0, 0.2) !important;
|
|
197
|
+
transform: none !important;
|
|
198
|
+
box-shadow: none !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.driver-popover-next-btn:active {
|
|
202
|
+
background-color: #000000 !important;
|
|
203
|
+
transform: none !important;
|
|
204
|
+
opacity: 0.9 !important;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.dark .driver-popover-next-btn,
|
|
208
|
+
.dark .driver-popover-btn-group .driver-popover-btn:last-child {
|
|
209
|
+
background-color: hsl(var(--primary)) !important;
|
|
210
|
+
color: hsl(var(--primary-foreground)) !important;
|
|
211
|
+
border: 1px solid hsl(var(--border)) !important;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.dark .driver-popover-next-btn:hover,
|
|
215
|
+
.dark .driver-popover-btn-group .driver-popover-btn:last-child:hover {
|
|
216
|
+
background-color: hsl(var(--primary)) !important;
|
|
217
|
+
opacity: 0.9 !important;
|
|
218
|
+
border-color: hsl(var(--border)) !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.dark .driver-popover-next-btn:active {
|
|
222
|
+
background-color: hsl(var(--primary)) !important;
|
|
223
|
+
opacity: 0.8 !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* Previous button */
|
|
227
|
+
.driver-popover-prev-btn {
|
|
228
|
+
background: rgba(0, 0, 0, 0.05) !important;
|
|
229
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
230
|
+
padding: 0 16px !important;
|
|
231
|
+
font-size: 13px !important;
|
|
232
|
+
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
233
|
+
font-weight: 600 !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.driver-popover-prev-btn:hover {
|
|
237
|
+
color: #000 !important;
|
|
238
|
+
background: rgba(0, 0, 0, 0.08) !important;
|
|
239
|
+
border-color: rgba(0, 0, 0, 0.15) !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.dark .driver-popover-prev-btn {
|
|
243
|
+
background: hsl(var(--secondary)) !important;
|
|
244
|
+
color: hsl(var(--secondary-foreground)) !important;
|
|
245
|
+
border: 1px solid hsl(var(--border)) !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.dark .driver-popover-prev-btn:hover {
|
|
249
|
+
background: hsl(var(--muted)) !important;
|
|
250
|
+
color: hsl(var(--foreground)) !important;
|
|
251
|
+
border-color: hsl(var(--border)) !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/* Expand toggle button (when step has expand: true) */
|
|
255
|
+
.papermap-tour-expand-btn {
|
|
256
|
+
position: absolute !important;
|
|
257
|
+
top: 24px !important;
|
|
258
|
+
right: 52px !important;
|
|
259
|
+
width: 32px !important;
|
|
260
|
+
height: 32px !important;
|
|
261
|
+
z-index: 2 !important;
|
|
262
|
+
display: flex !important;
|
|
263
|
+
align-items: center !important;
|
|
264
|
+
justify-content: center !important;
|
|
265
|
+
background: transparent !important;
|
|
266
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
267
|
+
border-radius: 6px !important;
|
|
268
|
+
padding: 0 !important;
|
|
269
|
+
transition: all 0.2s ease !important;
|
|
270
|
+
border: none !important;
|
|
271
|
+
cursor: pointer !important;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.papermap-tour-expand-btn:hover {
|
|
275
|
+
background: rgba(0, 0, 0, 0.08) !important;
|
|
276
|
+
color: #000 !important;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.papermap-tour-expand-btn svg {
|
|
280
|
+
flex-shrink: 0 !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.dark .papermap-tour-expand-btn {
|
|
284
|
+
color: hsl(var(--muted-foreground)) !important;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.dark .papermap-tour-expand-btn:hover {
|
|
288
|
+
background: hsl(var(--muted)) !important;
|
|
289
|
+
color: hsl(var(--foreground)) !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/* Close button */
|
|
293
|
+
.driver-popover-close-btn {
|
|
294
|
+
position: absolute !important;
|
|
295
|
+
top: 24px !important;
|
|
296
|
+
right: 24px !important;
|
|
297
|
+
width: 24px !important;
|
|
298
|
+
height: 24px !important;
|
|
299
|
+
display: flex !important;
|
|
300
|
+
align-items: center !important;
|
|
301
|
+
justify-content: center !important;
|
|
302
|
+
background: transparent !important;
|
|
303
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
304
|
+
border-radius: 4px !important;
|
|
305
|
+
font-size: 20px !important;
|
|
306
|
+
padding: 0 !important;
|
|
307
|
+
transition: all 0.2s ease !important;
|
|
308
|
+
border: none !important;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.driver-popover-close-btn:hover {
|
|
312
|
+
background: rgba(0, 0, 0, 0.1) !important;
|
|
313
|
+
color: #000 !important;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.dark .driver-popover-close-btn {
|
|
317
|
+
color: hsl(var(--muted-foreground)) !important;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.dark .driver-popover-close-btn:hover {
|
|
321
|
+
background: hsl(var(--muted)) !important;
|
|
322
|
+
color: hsl(var(--foreground)) !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/* Highlighted element */
|
|
326
|
+
.driver-highlighted-element {
|
|
327
|
+
border-radius: 6px !important;
|
|
328
|
+
box-shadow:
|
|
329
|
+
0 0 0 4px rgba(0, 0, 0, 0.2),
|
|
330
|
+
0 0 0 5px rgba(255, 255, 255, 0.5) !important;
|
|
331
|
+
transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.dark .driver-highlighted-element {
|
|
335
|
+
box-shadow:
|
|
336
|
+
0 0 0 4px rgba(255, 255, 255, 0.1),
|
|
337
|
+
0 0 0 5px hsl(var(--border)) !important;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/* Animation */
|
|
341
|
+
.driver-popover {
|
|
342
|
+
animation: driverPopoverSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
@keyframes driverPopoverSlide {
|
|
346
|
+
0% {
|
|
347
|
+
opacity: 0;
|
|
348
|
+
transform: scale(0.96) translateY(8px);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
100% {
|
|
352
|
+
opacity: 1;
|
|
353
|
+
transform: scale(1) translateY(0);
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.driver-popover-skip-btn {
|
|
358
|
+
display: none !important;
|
|
359
|
+
}@tailwind base;
|
|
2
360
|
@tailwind components;
|
|
3
361
|
@tailwind utilities;
|
|
4
362
|
|
|
@@ -24,14 +382,20 @@
|
|
|
24
382
|
--input: 240 5.9% 90%;
|
|
25
383
|
--ring: 240 5.9% 10%;
|
|
26
384
|
--radius: 0.5rem;
|
|
385
|
+
--chart-1: 12 76% 61%;
|
|
386
|
+
--chart-2: 173 58% 39%;
|
|
387
|
+
--chart-3: 197 37% 24%;
|
|
388
|
+
--chart-4: 43 74% 66%;
|
|
389
|
+
--chart-5: 27 87% 67%;
|
|
27
390
|
}
|
|
28
391
|
|
|
392
|
+
/* Dark tokens match main app `globals.css` (elevated `bg-card` vs page background). */
|
|
29
393
|
.dark {
|
|
30
|
-
--background:
|
|
394
|
+
--background: 0 0% 0%;
|
|
31
395
|
--foreground: 0 0% 98%;
|
|
32
|
-
--card:
|
|
396
|
+
--card: 0 0% 7%;
|
|
33
397
|
--card-foreground: 0 0% 98%;
|
|
34
|
-
--popover:
|
|
398
|
+
--popover: 0 0% 7%;
|
|
35
399
|
--popover-foreground: 0 0% 98%;
|
|
36
400
|
--primary: 0 0% 98%;
|
|
37
401
|
--primary-foreground: 240 5.9% 10%;
|
|
@@ -46,6 +410,19 @@
|
|
|
46
410
|
--border: 240 3.7% 15.9%;
|
|
47
411
|
--input: 240 3.7% 15.9%;
|
|
48
412
|
--ring: 240 4.9% 83.9%;
|
|
413
|
+
--chart-1: 220 70% 50%;
|
|
414
|
+
--chart-2: 160 60% 45%;
|
|
415
|
+
--chart-3: 30 80% 55%;
|
|
416
|
+
--chart-4: 280 65% 60%;
|
|
417
|
+
--chart-5: 340 75% 55%;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.bg-background {
|
|
421
|
+
background-color: hsl(var(--background));
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.dark .bg-background {
|
|
425
|
+
background: #0a0a0a;
|
|
49
426
|
}
|
|
50
427
|
}
|
|
51
428
|
|
|
@@ -55,6 +432,8 @@
|
|
|
55
432
|
}
|
|
56
433
|
body {
|
|
57
434
|
@apply bg-background text-foreground;
|
|
435
|
+
padding-left: var(--papermap-side-inset-left, 0px);
|
|
436
|
+
padding-right: var(--papermap-side-inset-right, 0px);
|
|
58
437
|
}
|
|
59
438
|
}
|
|
60
439
|
|