@idds/styles 1.0.60 → 1.0.61
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/package.json +1 -1
- package/src/components/tooltip.css +14 -12
package/package.json
CHANGED
|
@@ -35,6 +35,8 @@
|
|
|
35
35
|
opacity: 0;
|
|
36
36
|
visibility: hidden;
|
|
37
37
|
display: block;
|
|
38
|
+
/* Allow arrow to be visible outside content bounds */
|
|
39
|
+
overflow: visible;
|
|
38
40
|
}
|
|
39
41
|
|
|
40
42
|
/* Basic Tooltip Bubble */
|
|
@@ -215,20 +217,20 @@
|
|
|
215
217
|
/* Positioning classes */
|
|
216
218
|
/* Reduced margin to eliminate gap and prevent hover area break */
|
|
217
219
|
.ina-tooltip--placement-top {
|
|
218
|
-
bottom:
|
|
220
|
+
bottom: 85%;
|
|
219
221
|
left: 50%;
|
|
220
222
|
transform: translateX(-50%);
|
|
221
223
|
margin-bottom: 0;
|
|
222
224
|
}
|
|
223
225
|
|
|
224
226
|
.ina-tooltip--placement-top-start {
|
|
225
|
-
bottom:
|
|
227
|
+
bottom: 85%;
|
|
226
228
|
left: 0;
|
|
227
229
|
margin-bottom: 0;
|
|
228
230
|
}
|
|
229
231
|
|
|
230
232
|
.ina-tooltip--placement-top-end {
|
|
231
|
-
bottom:
|
|
233
|
+
bottom: 85%;
|
|
232
234
|
right: 0;
|
|
233
235
|
margin-bottom: 0;
|
|
234
236
|
}
|
|
@@ -331,7 +333,7 @@
|
|
|
331
333
|
|
|
332
334
|
/* Bottom arrows (pointing up to trigger) - arrow at top of tooltip */
|
|
333
335
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-bottom::after {
|
|
334
|
-
bottom:
|
|
336
|
+
bottom: 85%; /* At the top of tooltip content */
|
|
335
337
|
left: 50%;
|
|
336
338
|
margin-left: -5px;
|
|
337
339
|
border-width: 5px;
|
|
@@ -339,7 +341,7 @@
|
|
|
339
341
|
}
|
|
340
342
|
|
|
341
343
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-bottom-start::after {
|
|
342
|
-
bottom:
|
|
344
|
+
bottom: 85%;
|
|
343
345
|
left: 16px;
|
|
344
346
|
margin-left: -5px;
|
|
345
347
|
border-width: 5px;
|
|
@@ -347,7 +349,7 @@
|
|
|
347
349
|
}
|
|
348
350
|
|
|
349
351
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-bottom-end::after {
|
|
350
|
-
bottom:
|
|
352
|
+
bottom: 85%;
|
|
351
353
|
right: 16px;
|
|
352
354
|
margin-left: -5px;
|
|
353
355
|
border-width: 5px;
|
|
@@ -357,7 +359,7 @@
|
|
|
357
359
|
/* Left arrows (pointing right to trigger) - arrow at right edge of tooltip */
|
|
358
360
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-left::after {
|
|
359
361
|
top: 50%;
|
|
360
|
-
right: -
|
|
362
|
+
right: -10px; /* Positioned at right edge, pointing right (5px border + 5px offset) */
|
|
361
363
|
margin-top: -5px;
|
|
362
364
|
border-width: 5px;
|
|
363
365
|
border-color: transparent transparent transparent transparent;
|
|
@@ -365,7 +367,7 @@
|
|
|
365
367
|
|
|
366
368
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-left-start::after {
|
|
367
369
|
top: 16px;
|
|
368
|
-
right: -
|
|
370
|
+
right: -10px;
|
|
369
371
|
margin-top: -5px;
|
|
370
372
|
border-width: 5px;
|
|
371
373
|
border-color: transparent transparent transparent transparent;
|
|
@@ -373,7 +375,7 @@
|
|
|
373
375
|
|
|
374
376
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-left-end::after {
|
|
375
377
|
bottom: 16px;
|
|
376
|
-
right: -
|
|
378
|
+
right: -10px;
|
|
377
379
|
margin-top: -5px;
|
|
378
380
|
border-width: 5px;
|
|
379
381
|
border-color: transparent transparent transparent transparent;
|
|
@@ -382,7 +384,7 @@
|
|
|
382
384
|
/* Right arrows (pointing left to trigger) - arrow at left edge of tooltip */
|
|
383
385
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-right::after {
|
|
384
386
|
top: 50%;
|
|
385
|
-
left: -
|
|
387
|
+
left: -10px; /* Positioned at left edge, pointing left (5px border + 5px offset) */
|
|
386
388
|
margin-top: -5px;
|
|
387
389
|
border-width: 5px;
|
|
388
390
|
border-color: transparent transparent transparent transparent;
|
|
@@ -390,7 +392,7 @@
|
|
|
390
392
|
|
|
391
393
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-right-start::after {
|
|
392
394
|
top: 16px;
|
|
393
|
-
left: -
|
|
395
|
+
left: -10px;
|
|
394
396
|
margin-top: -5px;
|
|
395
397
|
border-width: 5px;
|
|
396
398
|
border-color: transparent transparent transparent transparent;
|
|
@@ -398,7 +400,7 @@
|
|
|
398
400
|
|
|
399
401
|
.ina-tooltip__content--show-arrow.ina-tooltip--placement-right-end::after {
|
|
400
402
|
bottom: 16px;
|
|
401
|
-
left: -
|
|
403
|
+
left: -10px;
|
|
402
404
|
margin-top: -5px;
|
|
403
405
|
border-width: 5px;
|
|
404
406
|
border-color: transparent transparent transparent transparent;
|