@onpe/ui 1.2.39 → 1.2.40
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/components.esm.js +0 -54
- package/dist/components.js +0 -54
- package/dist/index.css +391 -475
- package/dist/index.esm.js +0 -54
- package/dist/index.js +0 -54
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,131 +1,3 @@
|
|
|
1
|
-
/* ONPE UI - Sistema de diseño global */
|
|
2
|
-
|
|
3
|
-
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
|
|
4
|
-
|
|
5
|
-
/* ===== VARIABLES GLOBALES ===== */
|
|
6
|
-
:root {
|
|
7
|
-
/* Colores ONPE */
|
|
8
|
-
--onpe-ui-blue: #003770;
|
|
9
|
-
--onpe-ui-skyblue: #0073cf;
|
|
10
|
-
--onpe-ui-skyblue-light: #69b2e8;
|
|
11
|
-
--onpe-ui-yellow: #ffb81c;
|
|
12
|
-
--onpe-ui-light-skyblue: #aaeff6;
|
|
13
|
-
--onpe-ui-gray: #bcbcbc;
|
|
14
|
-
--onpe-ui-gray-light: #bdbdbd;
|
|
15
|
-
--onpe-ui-gray-extra-light: #f2f2f2;
|
|
16
|
-
--onpe-ui-red: #e3002b;
|
|
17
|
-
--onpe-ui-dark-gray: #4f4f4f;
|
|
18
|
-
--onpe-ui-green: #76bd43;
|
|
19
|
-
--onpe-ui-yellow-light: #FFF1D2;
|
|
20
|
-
|
|
21
|
-
/* Breakpoints - Solo para referencia, usar valores fijos en media queries */
|
|
22
|
-
/* xs: 480px, sm: 640px, md: 768px, lg: 1024px, xl: 1280px, 2xl: 1536px, 3xl: 1920px */
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/* ===== GUÍA DE BREAKPOINTS ===== */
|
|
26
|
-
/*
|
|
27
|
-
Para usar breakpoints en componentes, usar valores fijos:
|
|
28
|
-
xs: 480px, sm: 640px, md: 768px, lg: 1024px, xl: 1280px, 2xl: 1536px, 3xl: 1920px
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
|
-
/* ===== RESET GLOBAL PARA COMPONENTES ONPE ===== */
|
|
32
|
-
.onpe-button,
|
|
33
|
-
.onpe-browser-recommended,
|
|
34
|
-
.onpe-footer-contact,
|
|
35
|
-
.onpe-footer-development {
|
|
36
|
-
box-sizing: border-box;
|
|
37
|
-
font-family: 'Poppins', system-ui, sans-serif;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.onpe-button *,
|
|
41
|
-
.onpe-browser-recommended *,
|
|
42
|
-
.onpe-footer-contact *,
|
|
43
|
-
.onpe-footer-development * {
|
|
44
|
-
box-sizing: border-box;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
/* ===== ESTILOS GLOBALES PARA COMPONENTES ===== */
|
|
48
|
-
.onpe-button {
|
|
49
|
-
cursor: pointer;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.onpe-button:disabled {
|
|
53
|
-
cursor: not-allowed;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/* ===== UTILIDADES GLOBALES ===== */
|
|
57
|
-
.onpe-fast-blink {
|
|
58
|
-
animation: onpe-fast-blink 0.8s ease-in-out infinite;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.font-consolas {
|
|
62
|
-
font-family: 'Consolas', monospace;
|
|
63
|
-
font-weight: 900;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
/* ===== ANIMACIONES ===== */
|
|
67
|
-
@keyframes onpe-fast-blink {
|
|
68
|
-
0% { opacity: 1; }
|
|
69
|
-
25% { opacity: 0.8; }
|
|
70
|
-
50% { opacity: 0.4; }
|
|
71
|
-
75% { opacity: 0.8; }
|
|
72
|
-
100% { opacity: 1; }
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
/* BrowserRecommended Component Styles */
|
|
78
|
-
.onpe-browser-recommended {
|
|
79
|
-
display: flex;
|
|
80
|
-
flex-direction: column;
|
|
81
|
-
align-items: center;
|
|
82
|
-
justify-content: center;
|
|
83
|
-
gap: 1.5rem;
|
|
84
|
-
padding: 0.75rem 0 1.5rem 0;
|
|
85
|
-
font-size: 0.75rem;
|
|
86
|
-
text-align: center;
|
|
87
|
-
color: var(--onpe-ui-blue);
|
|
88
|
-
background-color: rgba(105, 178, 232, 0.15); /* onpe-ui-skyblue-light/15 */
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.onpe-browser-recommended .onpe-browser-list {
|
|
92
|
-
display: flex;
|
|
93
|
-
gap: 1.5rem;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.onpe-browser-recommended .onpe-browser-item {
|
|
97
|
-
display: flex;
|
|
98
|
-
align-items: center;
|
|
99
|
-
gap: 0.5rem;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.onpe-browser-recommended .onpe-browser-name {
|
|
103
|
-
display: none;
|
|
104
|
-
text-align: left;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/* Responsive Design */
|
|
108
|
-
@media (min-width: 768px) {
|
|
109
|
-
.onpe-browser-recommended {
|
|
110
|
-
padding: 0.5rem 0;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.onpe-browser-recommended .onpe-browser-list {
|
|
114
|
-
gap: 2rem;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.onpe-browser-recommended .onpe-browser-name {
|
|
118
|
-
display: block;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
@media (min-width: 1024px) {
|
|
123
|
-
.onpe-browser-recommended {
|
|
124
|
-
flex-direction: row;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
|
|
129
1
|
/* Button Component Styles */
|
|
130
2
|
.onpe-button {
|
|
131
3
|
color: white;
|
|
@@ -270,172 +142,280 @@
|
|
|
270
142
|
}
|
|
271
143
|
|
|
272
144
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
145
|
+
/* Overlay Component Styles */
|
|
146
|
+
.onpe-overlay {
|
|
147
|
+
position: absolute;
|
|
148
|
+
top: 0;
|
|
149
|
+
right: 0;
|
|
150
|
+
bottom: 0;
|
|
151
|
+
left: 0;
|
|
152
|
+
width: 100%;
|
|
153
|
+
height: 100vh;
|
|
154
|
+
z-index: 10;
|
|
155
|
+
transition: all 0.5s ease-in-out;
|
|
279
156
|
}
|
|
280
157
|
|
|
281
|
-
.onpe-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
justify-content: center;
|
|
158
|
+
.onpe-overlay.onpe-overlay-show {
|
|
159
|
+
pointer-events: auto;
|
|
160
|
+
opacity: 1;
|
|
285
161
|
}
|
|
286
162
|
|
|
287
|
-
.onpe-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
color: var(--onpe-ui-skyblue);
|
|
163
|
+
.onpe-overlay.onpe-overlay-hide {
|
|
164
|
+
pointer-events: none;
|
|
165
|
+
opacity: 0;
|
|
291
166
|
}
|
|
292
167
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
font-weight: 500; /* font-medium */
|
|
297
|
-
text-align: center;
|
|
298
|
-
color: var(--onpe-ui-skyblue);
|
|
168
|
+
/* Overlay Colors */
|
|
169
|
+
.onpe-overlay.onpe-overlay-blue {
|
|
170
|
+
background-color: rgba(0, 55, 112, 0.8); /* onpe-ui-blue/80 */
|
|
299
171
|
}
|
|
300
172
|
|
|
301
|
-
.onpe-
|
|
302
|
-
|
|
303
|
-
font-size: 0.875rem; /* text-sm */
|
|
304
|
-
text-align: center;
|
|
173
|
+
.onpe-overlay.onpe-overlay-skyblue {
|
|
174
|
+
background-color: rgba(0, 115, 207, 0.8); /* onpe-ui-skyblue/80 */
|
|
305
175
|
}
|
|
306
176
|
|
|
307
|
-
.onpe-
|
|
308
|
-
|
|
309
|
-
align-items: center;
|
|
310
|
-
justify-content: center;
|
|
311
|
-
gap: 2rem; /* gap-8 */
|
|
312
|
-
margin-top: 1.25rem; /* mt-5 */
|
|
177
|
+
.onpe-overlay.onpe-overlay-skyblue-light {
|
|
178
|
+
background-color: rgba(105, 178, 232, 0.8); /* onpe-ui-skyblue-light/80 */
|
|
313
179
|
}
|
|
314
180
|
|
|
315
|
-
.onpe-
|
|
316
|
-
|
|
317
|
-
height: 2rem; /* h-[32px] */
|
|
181
|
+
.onpe-overlay.onpe-overlay-yellow {
|
|
182
|
+
background-color: rgba(255, 184, 28, 0.8); /* onpe-ui-yellow/80 */
|
|
318
183
|
}
|
|
319
184
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
.onpe-modal-browser-incompatible-container {
|
|
323
|
-
width: 680px !important;
|
|
324
|
-
max-width: 680px !important;
|
|
325
|
-
}
|
|
185
|
+
.onpe-overlay.onpe-overlay-light-skyblue {
|
|
186
|
+
background-color: rgba(170, 239, 246, 0.8); /* onpe-ui-light-skyblue/80 */
|
|
326
187
|
}
|
|
327
188
|
|
|
328
|
-
|
|
329
|
-
.onpe-
|
|
330
|
-
width: 680px !important;
|
|
331
|
-
max-width: 680px !important;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
.onpe-modal-browser-incompatible-title {
|
|
335
|
-
font-size: 1.5rem; /* md:text-2xl */
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.onpe-modal-browser-incompatible-message {
|
|
339
|
-
font-size: 1.125rem; /* md:text-lg */
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.onpe-modal-browser-incompatible-browsers-container {
|
|
343
|
-
gap: 3rem; /* md:gap-12 */
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.onpe-modal-browser-incompatible-browser-icon {
|
|
347
|
-
width: 3rem; /* md:w-[48px] */
|
|
348
|
-
height: 3rem; /* md:h-[48px] */
|
|
349
|
-
}
|
|
189
|
+
.onpe-overlay.onpe-overlay-gray {
|
|
190
|
+
background-color: rgba(188, 188, 188, 0.8); /* onpe-ui-gray/80 */
|
|
350
191
|
}
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
.onpe-modal-system-incompatible-container {
|
|
355
|
-
max-width: 680px !important;
|
|
356
|
-
padding-top: 2.5rem !important; /* pt-10 */
|
|
357
|
-
padding-bottom: 6.125rem !important; /* pb-24.5 */
|
|
192
|
+
|
|
193
|
+
.onpe-overlay.onpe-overlay-gray-light {
|
|
194
|
+
background-color: rgba(189, 189, 189, 0.8); /* onpe-ui-gray-light/80 */
|
|
358
195
|
}
|
|
359
196
|
|
|
360
|
-
.onpe-
|
|
361
|
-
|
|
362
|
-
justify-content: center;
|
|
363
|
-
align-items: center;
|
|
197
|
+
.onpe-overlay.onpe-overlay-gray-extra-light {
|
|
198
|
+
background-color: rgba(242, 242, 242, 0.8); /* onpe-ui-gray-extra-light/80 */
|
|
364
199
|
}
|
|
365
200
|
|
|
366
|
-
.onpe-
|
|
367
|
-
|
|
368
|
-
height: 5.5rem; /* h-22 */
|
|
369
|
-
color: var(--onpe-ui-skyblue);
|
|
201
|
+
.onpe-overlay.onpe-overlay-red {
|
|
202
|
+
background-color: rgba(227, 0, 43, 0.8); /* onpe-ui-red/80 */
|
|
370
203
|
}
|
|
371
204
|
|
|
372
|
-
.onpe-
|
|
373
|
-
|
|
374
|
-
text-align: center;
|
|
375
|
-
margin-top: 1.5rem; /* mt-6 */
|
|
376
|
-
color: var(--onpe-ui-skyblue);
|
|
377
|
-
font-weight: 500; /* font-medium */
|
|
205
|
+
.onpe-overlay.onpe-overlay-dark-gray {
|
|
206
|
+
background-color: rgba(79, 79, 79, 0.8); /* onpe-ui-dark-gray/80 */
|
|
378
207
|
}
|
|
379
208
|
|
|
380
|
-
.onpe-
|
|
381
|
-
|
|
382
|
-
margin-top: 2.5rem; /* mt-10 */
|
|
383
|
-
text-align: center;
|
|
209
|
+
.onpe-overlay.onpe-overlay-green {
|
|
210
|
+
background-color: rgba(118, 189, 67, 0.8); /* onpe-ui-green/80 */
|
|
384
211
|
}
|
|
385
212
|
|
|
386
|
-
.onpe-
|
|
387
|
-
|
|
388
|
-
justify-content: center;
|
|
389
|
-
align-items: center;
|
|
390
|
-
gap: 2rem; /* gap-8 */
|
|
391
|
-
margin-top: 1.25rem; /* mt-5 */
|
|
392
|
-
color: var(--onpe-ui-skyblue);
|
|
213
|
+
.onpe-overlay.onpe-overlay-yellow-light {
|
|
214
|
+
background-color: rgba(255, 241, 210, 0.8); /* onpe-ui-yellow-light/80 */
|
|
393
215
|
}
|
|
394
216
|
|
|
395
|
-
.onpe-
|
|
396
|
-
|
|
397
|
-
|
|
217
|
+
.onpe-overlay.onpe-overlay-primary {
|
|
218
|
+
background-color: rgba(0, 55, 112, 0.8); /* onpe-ui-blue/80 */
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* Modal Component Styles */
|
|
222
|
+
.onpe-modal-container {
|
|
223
|
+
position: fixed;
|
|
224
|
+
top: 0;
|
|
225
|
+
width: 100%;
|
|
226
|
+
height: 100vh;
|
|
227
|
+
display: grid;
|
|
228
|
+
place-items: center;
|
|
398
229
|
}
|
|
399
230
|
|
|
400
|
-
/*
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
width: 680px !important;
|
|
404
|
-
max-width: 680px !important;
|
|
405
|
-
}
|
|
231
|
+
/* Prevenir scroll del body cuando el modal está abierto */
|
|
232
|
+
body.onpe-modal-open {
|
|
233
|
+
overflow: hidden;
|
|
406
234
|
}
|
|
407
235
|
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
236
|
+
.onpe-modal-container.onpe-modal-open {
|
|
237
|
+
opacity: 1;
|
|
238
|
+
z-index: 50;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.onpe-modal-container.onpe-modal-open.onpe-modal-top-absolute {
|
|
242
|
+
z-index: 100;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.onpe-modal-container.onpe-modal-closed {
|
|
246
|
+
opacity: 0;
|
|
247
|
+
z-index: -10;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.onpe-modal-content-wrapper {
|
|
251
|
+
position: relative;
|
|
252
|
+
z-index: 20;
|
|
253
|
+
display: grid;
|
|
254
|
+
place-items: center;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.onpe-modal-content {
|
|
258
|
+
position: relative;
|
|
259
|
+
display: flex;
|
|
260
|
+
flex-direction: column;
|
|
261
|
+
align-items: center;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.onpe-modal-content.onpe-modal-with-background {
|
|
266
|
+
background-color: white;
|
|
267
|
+
padding: 2.5rem 0.25rem; /* py-10 px-1 */
|
|
268
|
+
min-width: 320px;
|
|
269
|
+
width: 98vw;
|
|
270
|
+
max-width: 95vw;
|
|
271
|
+
max-height: 90vh;
|
|
272
|
+
overflow-y: auto;
|
|
273
|
+
scroll-behavior: smooth; /* Scroll suave */
|
|
274
|
+
scrollbar-width: thin; /* Scrollbar más delgado */
|
|
275
|
+
scrollbar-color: #cbd5e0 #f7fafc; /* Colores del scrollbar */
|
|
276
|
+
transition: scroll-behavior 0.1s ease-in-out; /* Transición suave para el reset */
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/* Estilos para el scrollbar en WebKit (Chrome, Safari, Edge) */
|
|
280
|
+
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar {
|
|
281
|
+
width: 8px;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar-track {
|
|
285
|
+
background: #f7fafc;
|
|
286
|
+
border-radius: 4px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar-thumb {
|
|
290
|
+
background: #cbd5e0;
|
|
291
|
+
border-radius: 4px;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar-thumb:hover {
|
|
295
|
+
background: #a0aec0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.onpe-modal-content.onpe-modal-without-background {
|
|
299
|
+
/* Sin fondo - solo contenido */
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.onpe-modal-close-button {
|
|
303
|
+
position: absolute;
|
|
304
|
+
top: 1rem; /* top-4 */
|
|
305
|
+
right: 1rem; /* right-4 */
|
|
306
|
+
border-radius: 50%;
|
|
307
|
+
background-color: var(--onpe-ui-red);
|
|
308
|
+
padding: 7px;
|
|
309
|
+
display: flex;
|
|
310
|
+
align-items: center;
|
|
311
|
+
justify-content: center;
|
|
312
|
+
z-index: 30;
|
|
313
|
+
border: none;
|
|
314
|
+
cursor: pointer;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.onpe-modal-close-button:hover {
|
|
318
|
+
background-color: rgba(227, 0, 43, 0.8); /* onpe-ui-red con hover */
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.onpe-modal-close-icon {
|
|
322
|
+
height: 10px;
|
|
323
|
+
width: 10px;
|
|
324
|
+
color: white;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/* Responsive Design */
|
|
328
|
+
@media (min-width: 768px) {
|
|
329
|
+
.onpe-modal-content.onpe-modal-with-background {
|
|
330
|
+
padding: 2.5rem 0; /* md:px-auto */
|
|
331
|
+
width: 500px; /* md:w-[500px] */
|
|
429
332
|
}
|
|
430
333
|
}
|
|
431
334
|
|
|
432
|
-
@media (min-width:
|
|
433
|
-
.onpe-modal-
|
|
434
|
-
padding
|
|
435
|
-
|
|
335
|
+
@media (min-width: 1024px) {
|
|
336
|
+
.onpe-modal-content.onpe-modal-with-background {
|
|
337
|
+
padding: 4rem 1.25rem; /* lg:py-16 lg:px-5 */
|
|
338
|
+
width: 1024px; /* lg:w-[1024px] */
|
|
436
339
|
}
|
|
437
340
|
}
|
|
438
341
|
|
|
342
|
+
/* ModalBrowserIncompatible Component Styles */
|
|
343
|
+
.onpe-modal-browser-incompatible-container {
|
|
344
|
+
max-width: 680px !important;
|
|
345
|
+
padding-top: 1.25rem !important; /* pt-5 */
|
|
346
|
+
padding-bottom: 2rem !important; /* pb-8 */
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.onpe-modal-browser-incompatible-icon-container {
|
|
350
|
+
display: flex;
|
|
351
|
+
align-items: center;
|
|
352
|
+
justify-content: center;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.onpe-modal-browser-incompatible-icon {
|
|
356
|
+
width: 5.5rem; /* w-22 */
|
|
357
|
+
height: 5.5rem; /* h-22 */
|
|
358
|
+
color: var(--onpe-ui-skyblue);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.onpe-modal-browser-incompatible-title {
|
|
362
|
+
margin-top: 1.5rem; /* mt-6 */
|
|
363
|
+
font-size: 0.875rem; /* text-sm */
|
|
364
|
+
font-weight: 500; /* font-medium */
|
|
365
|
+
text-align: center;
|
|
366
|
+
color: var(--onpe-ui-skyblue);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.onpe-modal-browser-incompatible-message {
|
|
370
|
+
margin-top: 1.5rem; /* mt-6 */
|
|
371
|
+
font-size: 0.875rem; /* text-sm */
|
|
372
|
+
text-align: center;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.onpe-modal-browser-incompatible-browsers-container {
|
|
376
|
+
display: flex;
|
|
377
|
+
align-items: center;
|
|
378
|
+
justify-content: center;
|
|
379
|
+
gap: 2rem; /* gap-8 */
|
|
380
|
+
margin-top: 1.25rem; /* mt-5 */
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.onpe-modal-browser-incompatible-browser-icon {
|
|
384
|
+
width: 2rem; /* w-[32px] */
|
|
385
|
+
height: 2rem; /* h-[32px] */
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/* Responsive Design */
|
|
389
|
+
@media (min-width: 768px) {
|
|
390
|
+
.onpe-modal-browser-incompatible-container {
|
|
391
|
+
width: 680px !important;
|
|
392
|
+
max-width: 680px !important;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
@media (min-width: 1024px) {
|
|
397
|
+
.onpe-modal-browser-incompatible-container {
|
|
398
|
+
width: 680px !important;
|
|
399
|
+
max-width: 680px !important;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.onpe-modal-browser-incompatible-title {
|
|
403
|
+
font-size: 1.5rem; /* md:text-2xl */
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.onpe-modal-browser-incompatible-message {
|
|
407
|
+
font-size: 1.125rem; /* md:text-lg */
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.onpe-modal-browser-incompatible-browsers-container {
|
|
411
|
+
gap: 3rem; /* md:gap-12 */
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.onpe-modal-browser-incompatible-browser-icon {
|
|
415
|
+
width: 3rem; /* md:w-[48px] */
|
|
416
|
+
height: 3rem; /* md:h-[48px] */
|
|
417
|
+
}
|
|
418
|
+
}
|
|
439
419
|
|
|
440
420
|
/* ModalConfirm Component Styles */
|
|
441
421
|
.onpe-modal-confirm-container {
|
|
@@ -540,7 +520,6 @@
|
|
|
540
520
|
}
|
|
541
521
|
}
|
|
542
522
|
|
|
543
|
-
|
|
544
523
|
/* ModalLoading Component Styles */
|
|
545
524
|
.onpe-modal-loading-spinner-desktop {
|
|
546
525
|
display: none; /* hidden */
|
|
@@ -588,296 +567,233 @@
|
|
|
588
567
|
}
|
|
589
568
|
}
|
|
590
569
|
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
570
|
+
/* ModalSystemIncompatible Component Styles */
|
|
571
|
+
.onpe-modal-system-incompatible-container {
|
|
572
|
+
max-width: 680px !important;
|
|
573
|
+
padding-top: 2.5rem !important; /* pt-10 */
|
|
574
|
+
padding-bottom: 6.125rem !important; /* pb-24.5 */
|
|
595
575
|
}
|
|
596
576
|
|
|
597
|
-
.onpe-
|
|
598
|
-
|
|
577
|
+
.onpe-modal-system-incompatible-icon-container {
|
|
578
|
+
display: flex;
|
|
579
|
+
justify-content: center;
|
|
580
|
+
align-items: center;
|
|
599
581
|
}
|
|
600
582
|
|
|
601
|
-
.onpe-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
width: 100%;
|
|
606
|
-
min-height: 100px;
|
|
607
|
-
background-color: var(--onpe-ui-blue);
|
|
583
|
+
.onpe-modal-system-incompatible-icon {
|
|
584
|
+
width: 5.5rem; /* w-22 */
|
|
585
|
+
height: 5.5rem; /* h-22 */
|
|
586
|
+
color: var(--onpe-ui-skyblue);
|
|
608
587
|
}
|
|
609
588
|
|
|
610
|
-
.onpe-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
gap: 1.5rem;
|
|
617
|
-
margin: 0 auto;
|
|
618
|
-
padding: 3.5rem 1rem;
|
|
619
|
-
max-width: 1456px;
|
|
589
|
+
.onpe-modal-system-incompatible-title {
|
|
590
|
+
font-size: 0.875rem; /* text-sm */
|
|
591
|
+
text-align: center;
|
|
592
|
+
margin-top: 1.5rem; /* mt-6 */
|
|
593
|
+
color: var(--onpe-ui-skyblue);
|
|
594
|
+
font-weight: 500; /* font-medium */
|
|
620
595
|
}
|
|
621
596
|
|
|
622
|
-
.onpe-
|
|
623
|
-
|
|
597
|
+
.onpe-modal-system-incompatible-message {
|
|
598
|
+
font-size: 0.875rem; /* text-sm */
|
|
599
|
+
margin-top: 2.5rem; /* mt-10 */
|
|
600
|
+
text-align: center;
|
|
624
601
|
}
|
|
625
602
|
|
|
626
|
-
.onpe-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
603
|
+
.onpe-modal-system-incompatible-systems-container {
|
|
604
|
+
display: flex;
|
|
605
|
+
justify-content: center;
|
|
606
|
+
align-items: center;
|
|
607
|
+
gap: 2rem; /* gap-8 */
|
|
608
|
+
margin-top: 1.25rem; /* mt-5 */
|
|
609
|
+
color: var(--onpe-ui-skyblue);
|
|
630
610
|
}
|
|
631
611
|
|
|
632
|
-
.onpe-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
color: white;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
.onpe-footer-development {
|
|
639
|
-
height: 93px;
|
|
640
|
-
width: 100%;
|
|
641
|
-
text-align: center;
|
|
642
|
-
display: flex;
|
|
643
|
-
align-items: center;
|
|
644
|
-
justify-content: center;
|
|
645
|
-
background-color: rgba(255, 241, 210, 0.75); /* onpe-ui-yellow-light/75 */
|
|
646
|
-
position: fixed;
|
|
647
|
-
z-index: 10;
|
|
648
|
-
right: 0;
|
|
649
|
-
bottom: 0;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.onpe-footer-development-text {
|
|
653
|
-
padding: 0.5rem 0.5rem;
|
|
654
|
-
font-size: 1.5rem;
|
|
655
|
-
color: var(--onpe-ui-blue);
|
|
656
|
-
font-family: 'Consolas', monospace;
|
|
657
|
-
font-weight: 900;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.onpe-footer-development-break {
|
|
661
|
-
display: block;
|
|
612
|
+
.onpe-modal-system-incompatible-system-icon {
|
|
613
|
+
width: 2rem; /* w-[32px] */
|
|
614
|
+
height: 2rem; /* h-[32px] */
|
|
662
615
|
}
|
|
663
616
|
|
|
664
617
|
/* Responsive Design */
|
|
665
618
|
@media (min-width: 768px) {
|
|
666
|
-
.onpe-
|
|
667
|
-
|
|
619
|
+
.onpe-modal-system-incompatible-container {
|
|
620
|
+
width: 680px !important;
|
|
621
|
+
max-width: 680px !important;
|
|
668
622
|
}
|
|
669
623
|
}
|
|
670
624
|
|
|
671
625
|
@media (min-width: 1024px) {
|
|
672
|
-
.onpe-
|
|
673
|
-
|
|
674
|
-
|
|
626
|
+
.onpe-modal-system-incompatible-container {
|
|
627
|
+
width: 680px !important;
|
|
628
|
+
max-width: 680px !important;
|
|
675
629
|
}
|
|
676
630
|
|
|
677
|
-
.onpe-
|
|
678
|
-
|
|
631
|
+
.onpe-modal-system-incompatible-title {
|
|
632
|
+
font-size: 1.5rem; /* md:text-2xl */
|
|
679
633
|
}
|
|
680
634
|
|
|
681
|
-
.onpe-
|
|
682
|
-
|
|
635
|
+
.onpe-modal-system-incompatible-message {
|
|
636
|
+
font-size: 1.125rem; /* md:text-lg */
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.onpe-modal-system-incompatible-systems-container {
|
|
640
|
+
gap: 3rem; /* md:gap-12 */
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.onpe-modal-system-incompatible-system-icon {
|
|
644
|
+
width: 3rem; /* md:w-[48px] */
|
|
645
|
+
height: 3rem; /* md:h-[48px] */
|
|
683
646
|
}
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
/* Modal Component Styles */
|
|
688
|
-
.onpe-modal-container {
|
|
689
|
-
position: fixed;
|
|
690
|
-
top: 0;
|
|
691
|
-
width: 100%;
|
|
692
|
-
height: 100vh;
|
|
693
|
-
display: grid;
|
|
694
|
-
place-items: center;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
/* Prevenir scroll del body cuando el modal está abierto */
|
|
698
|
-
body.onpe-modal-open {
|
|
699
|
-
overflow: hidden;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.onpe-modal-container.onpe-modal-open {
|
|
703
|
-
opacity: 1;
|
|
704
|
-
z-index: 50;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
.onpe-modal-container.onpe-modal-open.onpe-modal-top-absolute {
|
|
708
|
-
z-index: 100;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.onpe-modal-container.onpe-modal-closed {
|
|
712
|
-
opacity: 0;
|
|
713
|
-
z-index: -10;
|
|
714
647
|
}
|
|
715
648
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
649
|
+
@media (min-width: 1280px) {
|
|
650
|
+
.onpe-modal-system-incompatible-message {
|
|
651
|
+
padding-left: 3rem; /* xl:px-12 */
|
|
652
|
+
padding-right: 3rem; /* xl:px-12 */
|
|
653
|
+
}
|
|
721
654
|
}
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
655
|
+
|
|
656
|
+
/* BrowserRecommended Component Styles */
|
|
657
|
+
.onpe-browser-recommended {
|
|
725
658
|
display: flex;
|
|
726
659
|
flex-direction: column;
|
|
727
660
|
align-items: center;
|
|
728
661
|
justify-content: center;
|
|
662
|
+
gap: 1.5rem;
|
|
663
|
+
padding: 0.75rem 0 1.5rem 0;
|
|
664
|
+
font-size: 0.75rem;
|
|
665
|
+
text-align: center;
|
|
666
|
+
color: var(--onpe-ui-blue);
|
|
667
|
+
background-color: rgba(105, 178, 232, 0.15); /* onpe-ui-skyblue-light/15 */
|
|
729
668
|
}
|
|
730
669
|
|
|
731
|
-
.onpe-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
min-width: 320px;
|
|
735
|
-
width: 98vw;
|
|
736
|
-
max-width: 95vw;
|
|
737
|
-
max-height: 90vh;
|
|
738
|
-
overflow-y: auto;
|
|
739
|
-
scroll-behavior: smooth; /* Scroll suave */
|
|
740
|
-
scrollbar-width: thin; /* Scrollbar más delgado */
|
|
741
|
-
scrollbar-color: #cbd5e0 #f7fafc; /* Colores del scrollbar */
|
|
742
|
-
transition: scroll-behavior 0.1s ease-in-out; /* Transición suave para el reset */
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
/* Estilos para el scrollbar en WebKit (Chrome, Safari, Edge) */
|
|
746
|
-
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar {
|
|
747
|
-
width: 8px;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar-track {
|
|
751
|
-
background: #f7fafc;
|
|
752
|
-
border-radius: 4px;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar-thumb {
|
|
756
|
-
background: #cbd5e0;
|
|
757
|
-
border-radius: 4px;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.onpe-modal-content.onpe-modal-with-background::-webkit-scrollbar-thumb:hover {
|
|
761
|
-
background: #a0aec0;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.onpe-modal-content.onpe-modal-without-background {
|
|
765
|
-
/* Sin fondo - solo contenido */
|
|
670
|
+
.onpe-browser-recommended .onpe-browser-list {
|
|
671
|
+
display: flex;
|
|
672
|
+
gap: 1.5rem;
|
|
766
673
|
}
|
|
767
674
|
|
|
768
|
-
.onpe-
|
|
769
|
-
position: absolute;
|
|
770
|
-
top: 1rem; /* top-4 */
|
|
771
|
-
right: 1rem; /* right-4 */
|
|
772
|
-
border-radius: 50%;
|
|
773
|
-
background-color: var(--onpe-ui-red);
|
|
774
|
-
padding: 7px;
|
|
675
|
+
.onpe-browser-recommended .onpe-browser-item {
|
|
775
676
|
display: flex;
|
|
776
677
|
align-items: center;
|
|
777
|
-
|
|
778
|
-
z-index: 30;
|
|
779
|
-
border: none;
|
|
780
|
-
cursor: pointer;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.onpe-modal-close-button:hover {
|
|
784
|
-
background-color: rgba(227, 0, 43, 0.8); /* onpe-ui-red con hover */
|
|
678
|
+
gap: 0.5rem;
|
|
785
679
|
}
|
|
786
680
|
|
|
787
|
-
.onpe-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
color: white;
|
|
681
|
+
.onpe-browser-recommended .onpe-browser-name {
|
|
682
|
+
display: none;
|
|
683
|
+
text-align: left;
|
|
791
684
|
}
|
|
792
685
|
|
|
793
686
|
/* Responsive Design */
|
|
794
687
|
@media (min-width: 768px) {
|
|
795
|
-
.onpe-
|
|
796
|
-
padding:
|
|
797
|
-
|
|
688
|
+
.onpe-browser-recommended {
|
|
689
|
+
padding: 0.5rem 0;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.onpe-browser-recommended .onpe-browser-list {
|
|
693
|
+
gap: 2rem;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.onpe-browser-recommended .onpe-browser-name {
|
|
697
|
+
display: block;
|
|
798
698
|
}
|
|
799
699
|
}
|
|
800
700
|
|
|
801
701
|
@media (min-width: 1024px) {
|
|
802
|
-
.onpe-
|
|
803
|
-
|
|
804
|
-
width: 1024px; /* lg:w-[1024px] */
|
|
702
|
+
.onpe-browser-recommended {
|
|
703
|
+
flex-direction: row;
|
|
805
704
|
}
|
|
806
705
|
}
|
|
807
706
|
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
position: absolute;
|
|
812
|
-
top: 0;
|
|
813
|
-
right: 0;
|
|
814
|
-
bottom: 0;
|
|
815
|
-
left: 0;
|
|
816
|
-
width: 100%;
|
|
817
|
-
height: 100vh;
|
|
818
|
-
z-index: 10;
|
|
819
|
-
transition: all 0.5s ease-in-out;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.onpe-overlay.onpe-overlay-show {
|
|
823
|
-
pointer-events: auto;
|
|
824
|
-
opacity: 1;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.onpe-overlay.onpe-overlay-hide {
|
|
828
|
-
pointer-events: none;
|
|
829
|
-
opacity: 0;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
/* Overlay Colors */
|
|
833
|
-
.onpe-overlay.onpe-overlay-blue {
|
|
834
|
-
background-color: rgba(0, 55, 112, 0.8); /* onpe-ui-blue/80 */
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.onpe-overlay.onpe-overlay-skyblue {
|
|
838
|
-
background-color: rgba(0, 115, 207, 0.8); /* onpe-ui-skyblue/80 */
|
|
707
|
+
/* Footer Component Styles */
|
|
708
|
+
.onpe-footer {
|
|
709
|
+
/* Footer base styles */
|
|
839
710
|
}
|
|
840
711
|
|
|
841
|
-
.onpe-
|
|
842
|
-
|
|
712
|
+
.onpe-footer-content {
|
|
713
|
+
/* Content wrapper styles */
|
|
843
714
|
}
|
|
844
715
|
|
|
845
|
-
.onpe-
|
|
846
|
-
|
|
716
|
+
.onpe-footer-contact {
|
|
717
|
+
position: relative;
|
|
718
|
+
z-index: 10;
|
|
719
|
+
display: flex;
|
|
720
|
+
width: 100%;
|
|
721
|
+
min-height: 100px;
|
|
722
|
+
background-color: var(--onpe-ui-blue);
|
|
847
723
|
}
|
|
848
724
|
|
|
849
|
-
.onpe-
|
|
850
|
-
|
|
725
|
+
.onpe-footer-contact-list {
|
|
726
|
+
display: flex;
|
|
727
|
+
justify-content: space-between;
|
|
728
|
+
align-items: flex-start;
|
|
729
|
+
width: 100%;
|
|
730
|
+
flex-direction: column;
|
|
731
|
+
gap: 1.5rem;
|
|
732
|
+
margin: 0 auto;
|
|
733
|
+
padding: 3.5rem 1rem;
|
|
734
|
+
max-width: 1456px;
|
|
851
735
|
}
|
|
852
736
|
|
|
853
|
-
.onpe-
|
|
854
|
-
|
|
737
|
+
.onpe-footer-contact-item {
|
|
738
|
+
/* List item styles */
|
|
855
739
|
}
|
|
856
740
|
|
|
857
|
-
.onpe-
|
|
858
|
-
|
|
741
|
+
.onpe-footer-contact-title {
|
|
742
|
+
font-weight: 600;
|
|
743
|
+
color: var(--onpe-ui-yellow);
|
|
744
|
+
margin-bottom: 0.25rem;
|
|
859
745
|
}
|
|
860
746
|
|
|
861
|
-
.onpe-
|
|
862
|
-
|
|
747
|
+
.onpe-footer-contact-text {
|
|
748
|
+
font-size: 0.875rem;
|
|
749
|
+
font-weight: 500;
|
|
750
|
+
color: white;
|
|
863
751
|
}
|
|
864
752
|
|
|
865
|
-
.onpe-
|
|
866
|
-
|
|
753
|
+
.onpe-footer-development {
|
|
754
|
+
height: 93px;
|
|
755
|
+
width: 100%;
|
|
756
|
+
text-align: center;
|
|
757
|
+
display: flex;
|
|
758
|
+
align-items: center;
|
|
759
|
+
justify-content: center;
|
|
760
|
+
background-color: rgba(255, 241, 210, 0.75); /* onpe-ui-yellow-light/75 */
|
|
761
|
+
position: fixed;
|
|
762
|
+
z-index: 10;
|
|
763
|
+
right: 0;
|
|
764
|
+
bottom: 0;
|
|
867
765
|
}
|
|
868
766
|
|
|
869
|
-
.onpe-
|
|
870
|
-
|
|
767
|
+
.onpe-footer-development-text {
|
|
768
|
+
padding: 0.5rem 0.5rem;
|
|
769
|
+
font-size: 1.5rem;
|
|
770
|
+
color: var(--onpe-ui-blue);
|
|
771
|
+
font-family: 'Consolas', monospace;
|
|
772
|
+
font-weight: 900;
|
|
871
773
|
}
|
|
872
774
|
|
|
873
|
-
.onpe-
|
|
874
|
-
|
|
775
|
+
.onpe-footer-development-break {
|
|
776
|
+
display: block;
|
|
875
777
|
}
|
|
876
778
|
|
|
877
|
-
|
|
878
|
-
|
|
779
|
+
/* Responsive Design */
|
|
780
|
+
@media (min-width: 768px) {
|
|
781
|
+
.onpe-footer-contact-list {
|
|
782
|
+
padding: 1.75rem 1rem;
|
|
783
|
+
}
|
|
879
784
|
}
|
|
880
785
|
|
|
881
|
-
|
|
882
|
-
|
|
786
|
+
@media (min-width: 1024px) {
|
|
787
|
+
.onpe-footer-contact-list {
|
|
788
|
+
flex-direction: row;
|
|
789
|
+
align-items: center;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.onpe-footer-development {
|
|
793
|
+
height: 46px;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.onpe-footer-development-break {
|
|
797
|
+
display: none;
|
|
798
|
+
}
|
|
883
799
|
}
|