@patternfly/patternfly 6.0.0-prerelease.15 → 6.0.0-prerelease.16
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/patternfly-charts.css +2 -2
- package/patternfly-charts.scss +2 -2
package/package.json
CHANGED
package/patternfly-charts.css
CHANGED
|
@@ -545,10 +545,10 @@
|
|
|
545
545
|
--pf-v6-chart-stack--data--stroke--Width: var(--pf-v6-chart-global--stroke--Width--xs);
|
|
546
546
|
--pf-v6-chart-threshold--stroke-dash-array: 4,2;
|
|
547
547
|
--pf-v6-chart-threshold--stroke--Width: 1.5;
|
|
548
|
-
--pf-v6-chart-tooltip--corner-radius:
|
|
548
|
+
--pf-v6-chart-tooltip--corner-radius: 6;
|
|
549
549
|
--pf-v6-chart-tooltip--pointer-length: 10;
|
|
550
550
|
--pf-v6-chart-tooltip--Fill: var(--pf-v6-chart-global--Fill--Color--200);
|
|
551
|
-
--pf-v6-chart-tooltip--flyoutStyle--corner-radius:
|
|
551
|
+
--pf-v6-chart-tooltip--flyoutStyle--corner-radius: 6;
|
|
552
552
|
--pf-v6-chart-tooltip--flyoutStyle--stroke--Width: 0;
|
|
553
553
|
--pf-v6-chart-tooltip--flyoutStyle--PointerEvents: none;
|
|
554
554
|
--pf-v6-chart-tooltip--flyoutStyle--stroke--Color: var(--pf-v6-chart-global--Fill--Color--900);
|
package/patternfly-charts.scss
CHANGED
|
@@ -293,10 +293,10 @@ $chart: #{$pf-prefix} + 'chart';
|
|
|
293
293
|
--#{$chart}-threshold--stroke--Width: 1.5;
|
|
294
294
|
|
|
295
295
|
// Tooltip
|
|
296
|
-
--#{$chart}-tooltip--corner-radius:
|
|
296
|
+
--#{$chart}-tooltip--corner-radius: 6;
|
|
297
297
|
--#{$chart}-tooltip--pointer-length: 10;
|
|
298
298
|
--#{$chart}-tooltip--Fill: var(--#{$chart}-global--Fill--Color--200);
|
|
299
|
-
--#{$chart}-tooltip--flyoutStyle--corner-radius:
|
|
299
|
+
--#{$chart}-tooltip--flyoutStyle--corner-radius: 6;
|
|
300
300
|
--#{$chart}-tooltip--flyoutStyle--stroke--Width: 0;
|
|
301
301
|
--#{$chart}-tooltip--flyoutStyle--PointerEvents: none;
|
|
302
302
|
--#{$chart}-tooltip--flyoutStyle--stroke--Color: var(--#{$chart}-global--Fill--Color--900);
|