@deque/cauldron-styles 6.12.0 → 6.13.0-canary.e32cba20
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.css +10 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2673,6 +2673,7 @@ a.IconButton {
|
|
|
2673
2673
|
/* TooltipArrow needs some dimensions to accurately calculate its positioning */
|
|
2674
2674
|
|
|
2675
2675
|
.TooltipArrow {
|
|
2676
|
+
position: absolute;
|
|
2676
2677
|
height: 0.1px;
|
|
2677
2678
|
width: 0.1px;
|
|
2678
2679
|
}
|
|
@@ -2680,18 +2681,22 @@ a.IconButton {
|
|
|
2680
2681
|
/* Adjust position to try to center the arrow in the tooltip's border */
|
|
2681
2682
|
|
|
2682
2683
|
[class*='Tooltip--top'] .TooltipArrow {
|
|
2684
|
+
left: 50%;
|
|
2683
2685
|
bottom: -1px;
|
|
2684
2686
|
}
|
|
2685
2687
|
|
|
2686
2688
|
[class*='Tooltip--bottom'] .TooltipArrow {
|
|
2689
|
+
left: 50%;
|
|
2687
2690
|
top: -1px;
|
|
2688
2691
|
}
|
|
2689
2692
|
|
|
2690
2693
|
[class*='Tooltip--left'] .TooltipArrow {
|
|
2694
|
+
top: 50%;
|
|
2691
2695
|
right: -1px;
|
|
2692
2696
|
}
|
|
2693
2697
|
|
|
2694
2698
|
[class*='Tooltip--right'] .TooltipArrow {
|
|
2699
|
+
top: 50%;
|
|
2695
2700
|
left: 0;
|
|
2696
2701
|
}
|
|
2697
2702
|
|
|
@@ -4226,6 +4231,7 @@ fieldset.Panel {
|
|
|
4226
4231
|
/* TooltipArrow needs some dimensions to accurately calculate its positioning */
|
|
4227
4232
|
|
|
4228
4233
|
.Popover__popoverArrow {
|
|
4234
|
+
position: absolute;
|
|
4229
4235
|
height: 0.1px;
|
|
4230
4236
|
width: 0.1px;
|
|
4231
4237
|
}
|
|
@@ -4242,18 +4248,22 @@ fieldset.Panel {
|
|
|
4242
4248
|
/* Adjust position to try to center the arrow in the tooltip's border */
|
|
4243
4249
|
|
|
4244
4250
|
[class*='Popover--top'] .Popover__popoverArrow {
|
|
4251
|
+
left: 50%;
|
|
4245
4252
|
bottom: -1px;
|
|
4246
4253
|
}
|
|
4247
4254
|
|
|
4248
4255
|
[class*='Popover--bottom'] .Popover__popoverArrow {
|
|
4256
|
+
left: 50%;
|
|
4249
4257
|
top: -1px;
|
|
4250
4258
|
}
|
|
4251
4259
|
|
|
4252
4260
|
[class*='Popover--left'] .Popover__popoverArrow {
|
|
4261
|
+
top: 50%;
|
|
4253
4262
|
right: -1px;
|
|
4254
4263
|
}
|
|
4255
4264
|
|
|
4256
4265
|
[class*='Popover--right'] .Popover__popoverArrow {
|
|
4266
|
+
top: 50%;
|
|
4257
4267
|
left: 0;
|
|
4258
4268
|
}
|
|
4259
4269
|
|