@patternfly/react-styles 6.0.0-alpha.4 → 6.0.0-alpha.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/css/assets/images/pf-background.svg +22 -0
  3. package/css/components/AboutModalBox/about-modal-box.css +4 -2
  4. package/css/components/BackgroundImage/background-image.css +5 -1
  5. package/css/components/Button/button.css +369 -348
  6. package/css/components/Button/button.d.ts +9 -7
  7. package/css/components/Button/button.js +9 -7
  8. package/css/components/Button/button.mjs +9 -7
  9. package/css/components/Check/check.css +17 -16
  10. package/css/components/DataList/data-list.css +101 -158
  11. package/css/components/DataList/data-list.d.ts +1 -2
  12. package/css/components/DataList/data-list.js +1 -2
  13. package/css/components/DataList/data-list.mjs +1 -2
  14. package/css/components/Divider/divider.css +97 -177
  15. package/css/components/Divider/divider.d.ts +1 -0
  16. package/css/components/Divider/divider.js +1 -0
  17. package/css/components/Divider/divider.mjs +1 -0
  18. package/css/components/Form/form.css +62 -114
  19. package/css/components/Form/form.d.ts +2 -6
  20. package/css/components/Form/form.js +2 -6
  21. package/css/components/Form/form.mjs +2 -6
  22. package/css/components/FormControl/form-control.css +86 -111
  23. package/css/components/FormControl/form-control.d.ts +1 -2
  24. package/css/components/FormControl/form-control.js +1 -2
  25. package/css/components/FormControl/form-control.mjs +1 -2
  26. package/css/components/Masthead/masthead.css +267 -435
  27. package/css/components/Masthead/masthead.d.ts +2 -38
  28. package/css/components/Masthead/masthead.js +2 -38
  29. package/css/components/Masthead/masthead.mjs +2 -38
  30. package/css/components/NotificationDrawer/notification-drawer.css +104 -115
  31. package/css/components/NotificationDrawer/notification-drawer.d.ts +3 -3
  32. package/css/components/NotificationDrawer/notification-drawer.js +3 -3
  33. package/css/components/NotificationDrawer/notification-drawer.mjs +3 -3
  34. package/css/components/Panel/panel.css +27 -23
  35. package/css/components/Panel/panel.d.ts +2 -2
  36. package/css/components/Panel/panel.js +2 -2
  37. package/css/components/Panel/panel.mjs +2 -2
  38. package/css/components/Progress/progress.css +31 -45
  39. package/css/components/Progress/progress.d.ts +1 -2
  40. package/css/components/Progress/progress.js +1 -2
  41. package/css/components/Progress/progress.mjs +1 -2
  42. package/css/components/Radio/radio.css +15 -11
  43. package/css/components/SimpleList/simple-list.css +1 -1
  44. package/css/components/Skeleton/skeleton.css +18 -20
  45. package/css/components/Skeleton/skeleton.d.ts +1 -2
  46. package/css/components/Skeleton/skeleton.js +1 -2
  47. package/css/components/Skeleton/skeleton.mjs +1 -2
  48. package/css/components/Slider/slider.css +34 -30
  49. package/css/components/Spinner/spinner.css +17 -34
  50. package/css/components/Switch/switch.css +41 -37
  51. package/css/components/Switch/switch.d.ts +1 -2
  52. package/css/components/Switch/switch.js +1 -2
  53. package/css/components/Switch/switch.mjs +1 -2
  54. package/css/components/TabContent/tab-content.css +17 -11
  55. package/css/components/TabContent/tab-content.d.ts +1 -1
  56. package/css/components/TabContent/tab-content.js +1 -1
  57. package/css/components/TabContent/tab-content.mjs +1 -1
  58. package/css/docs/components/Button/examples/Button.css +4 -0
  59. package/css/docs/components/Divider/examples/Divider.css +3 -1
  60. package/package.json +3 -3
@@ -1,34 +1,39 @@
1
+ :root,
1
2
  .pf-v5-c-panel {
2
3
  --pf-v5-c-panel--Width: auto;
3
4
  --pf-v5-c-panel--MinWidth: auto;
4
5
  --pf-v5-c-panel--MaxWidth: none;
5
6
  --pf-v5-c-panel--ZIndex: auto;
6
- --pf-v5-c-panel--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
7
+ --pf-v5-c-panel--BackgroundColor: var(--pf-t--global--background--color--primary--default);
7
8
  --pf-v5-c-panel--BoxShadow: none;
8
9
  --pf-v5-c-panel--before--BorderWidth: 0;
9
- --pf-v5-c-panel--before--BorderColor: var(--pf-v5-global--BorderColor--100);
10
- --pf-v5-c-panel--m-bordered--before--BorderWidth: var(--pf-v5-global--BorderWidth--sm);
11
- --pf-v5-c-panel--m-raised--BoxShadow: var(--pf-v5-global--BoxShadow--md);
12
- --pf-v5-c-panel--m-raised--ZIndex: var(--pf-v5-global--ZIndex--sm);
13
- --pf-v5-c-panel--m-raised--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
14
- --pf-v5-c-panel__header--PaddingTop: var(--pf-v5-global--spacer--md);
15
- --pf-v5-c-panel__header--PaddingRight: var(--pf-v5-global--spacer--md);
16
- --pf-v5-c-panel__header--PaddingBottom: var(--pf-v5-global--spacer--md);
17
- --pf-v5-c-panel__header--PaddingLeft: var(--pf-v5-global--spacer--md);
10
+ --pf-v5-c-panel--before--BorderColor: var(--pf-t--global--border--color--default);
11
+ --pf-v5-c-panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
12
+ --pf-v5-c-panel--m-bordered--before--BorderWidth: var(--pf-t--global--border--width--regular);
13
+ --pf-v5-c-panel--m-raised--BoxShadow: var(--pf-t--global--box-shadow--md);
14
+ --pf-v5-c-panel--m-raised--ZIndex: var(--pf-t--global--Zindex--sm);
15
+ --pf-v5-c-panel--m-raised--BackgroundColor: var(--pf-t--global--background--color--floating--default);
16
+ --pf-v5-c-panel__header--PaddingTop: var(--pf-t--global--spacer--md);
17
+ --pf-v5-c-panel__header--PaddingRight: var(--pf-t--global--spacer--md);
18
+ --pf-v5-c-panel__header--PaddingBottom: var(--pf-t--global--spacer--md);
19
+ --pf-v5-c-panel__header--PaddingLeft: var(--pf-t--global--spacer--md);
18
20
  --pf-v5-c-panel__main--MaxHeight: none;
19
21
  --pf-v5-c-panel__main--Overflow: visible;
20
- --pf-v5-c-panel__main-body--PaddingTop: var(--pf-v5-global--spacer--md);
21
- --pf-v5-c-panel__main-body--PaddingRight: var(--pf-v5-global--spacer--md);
22
- --pf-v5-c-panel__main-body--PaddingBottom: var(--pf-v5-global--spacer--md);
23
- --pf-v5-c-panel__main-body--PaddingLeft: var(--pf-v5-global--spacer--md);
24
- --pf-v5-c-panel__footer--PaddingTop: var(--pf-v5-global--spacer--md);
25
- --pf-v5-c-panel__footer--PaddingRight: var(--pf-v5-global--spacer--md);
26
- --pf-v5-c-panel__footer--PaddingBottom: var(--pf-v5-global--spacer--md);
27
- --pf-v5-c-panel__footer--PaddingLeft: var(--pf-v5-global--spacer--md);
22
+ --pf-v5-c-panel__main-body--PaddingTop: var(--pf-t--global--spacer--md);
23
+ --pf-v5-c-panel__main-body--PaddingRight: var(--pf-t--global--spacer--md);
24
+ --pf-v5-c-panel__main-body--PaddingBottom: var(--pf-t--global--spacer--md);
25
+ --pf-v5-c-panel__main-body--PaddingLeft: var(--pf-t--global--spacer--md);
26
+ --pf-v5-c-panel__footer--PaddingTop: var(--pf-t--global--spacer--md);
27
+ --pf-v5-c-panel__footer--PaddingRight: var(--pf-t--global--spacer--md);
28
+ --pf-v5-c-panel__footer--PaddingBottom: var(--pf-t--global--spacer--md);
29
+ --pf-v5-c-panel__footer--PaddingLeft: var(--pf-t--global--spacer--md);
28
30
  --pf-v5-c-panel__footer--BoxShadow: none;
29
31
  --pf-v5-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
30
32
  --pf-v5-c-panel--m-scrollable__main--Overflow: auto;
31
- --pf-v5-c-panel--m-scrollable__footer--BoxShadow: 0 -0.3125rem 0.25rem -0.25rem rgba(3, 3, 3, 0.16);
33
+ --pf-v5-c-panel--m-scrollable__footer--BoxShadow: 0 -0.3125rem 0.25rem -0.25rem rgba(0 0 0 / 16%);
34
+ }
35
+
36
+ .pf-v5-c-panel {
32
37
  position: relative;
33
38
  z-index: var(--pf-v5-c-panel--ZIndex);
34
39
  width: var(--pf-v5-c-panel--Width);
@@ -47,6 +52,9 @@
47
52
  .pf-v5-c-panel.pf-m-bordered {
48
53
  --pf-v5-c-panel--before--BorderWidth: var(--pf-v5-c-panel--m-bordered--before--BorderWidth);
49
54
  }
55
+ .pf-v5-c-panel.pf-m-secondary {
56
+ --pf-v5-c-panel--BackgroundColor: var(--pf-v5-c-panel--m-secondary--BackgroundColor);
57
+ }
50
58
  .pf-v5-c-panel.pf-m-raised {
51
59
  --pf-v5-c-panel--BackgroundColor: var(--pf-v5-c-panel--m-raised--BackgroundColor);
52
60
  --pf-v5-c-panel--BoxShadow: var(--pf-v5-c-panel--m-raised--BoxShadow);
@@ -83,8 +91,4 @@
83
91
  padding-inline-start: var(--pf-v5-c-panel__footer--PaddingLeft);
84
92
  padding-inline-end: var(--pf-v5-c-panel__footer--PaddingRight);
85
93
  box-shadow: var(--pf-v5-c-panel__footer--BoxShadow);
86
- }
87
-
88
- :where(.pf-v5-theme-dark) .pf-v5-c-panel {
89
- --pf-v5-c-panel--m-raised--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
90
94
  }
@@ -2,6 +2,7 @@ import './panel.css';
2
2
  declare const _default: {
3
3
  "modifiers": {
4
4
  "bordered": "pf-m-bordered",
5
+ "secondary": "pf-m-secondary",
5
6
  "raised": "pf-m-raised",
6
7
  "scrollable": "pf-m-scrollable"
7
8
  },
@@ -9,7 +10,6 @@ declare const _default: {
9
10
  "panelFooter": "pf-v5-c-panel__footer",
10
11
  "panelHeader": "pf-v5-c-panel__header",
11
12
  "panelMain": "pf-v5-c-panel__main",
12
- "panelMainBody": "pf-v5-c-panel__main-body",
13
- "themeDark": "pf-v5-theme-dark"
13
+ "panelMainBody": "pf-v5-c-panel__main-body"
14
14
  };
15
15
  export default _default;
@@ -4,6 +4,7 @@ require('./panel.css');
4
4
  exports.default = {
5
5
  "modifiers": {
6
6
  "bordered": "pf-m-bordered",
7
+ "secondary": "pf-m-secondary",
7
8
  "raised": "pf-m-raised",
8
9
  "scrollable": "pf-m-scrollable"
9
10
  },
@@ -11,6 +12,5 @@ exports.default = {
11
12
  "panelFooter": "pf-v5-c-panel__footer",
12
13
  "panelHeader": "pf-v5-c-panel__header",
13
14
  "panelMain": "pf-v5-c-panel__main",
14
- "panelMainBody": "pf-v5-c-panel__main-body",
15
- "themeDark": "pf-v5-theme-dark"
15
+ "panelMainBody": "pf-v5-c-panel__main-body"
16
16
  };
@@ -2,6 +2,7 @@ import './panel.css';
2
2
  export default {
3
3
  "modifiers": {
4
4
  "bordered": "pf-m-bordered",
5
+ "secondary": "pf-m-secondary",
5
6
  "raised": "pf-m-raised",
6
7
  "scrollable": "pf-m-scrollable"
7
8
  },
@@ -9,6 +10,5 @@ export default {
9
10
  "panelFooter": "pf-v5-c-panel__footer",
10
11
  "panelHeader": "pf-v5-c-panel__header",
11
12
  "panelMain": "pf-v5-c-panel__main",
12
- "panelMainBody": "pf-v5-c-panel__main-body",
13
- "themeDark": "pf-v5-theme-dark"
13
+ "panelMainBody": "pf-v5-c-panel__main-body"
14
14
  };
@@ -1,31 +1,33 @@
1
+ :root,
1
2
  .pf-v5-c-progress {
2
- --pf-v5-c-progress--GridGap: var(--pf-v5-global--spacer--md);
3
- --pf-v5-c-progress__bar--before--BackgroundColor: var(--pf-v5-global--primary-color--100);
4
- --pf-v5-c-progress__bar--Height: var(--pf-v5-global--spacer--md);
5
- --pf-v5-c-progress__bar--BackgroundColor: var(--pf-v5-global--BackgroundColor--light-100);
3
+ --pf-v5-c-progress--GridGap: var(--pf-t--global--spacer--md);
4
+ --pf-v5-c-progress__bar--Height: var(--pf-t--global--spacer--md);
5
+ --pf-v5-c-progress__bar--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
6
6
  --pf-v5-c-progress__measure--m-static-width--MinWidth: 4.5ch;
7
- --pf-v5-c-progress__status--Gap: var(--pf-v5-global--spacer--sm);
8
- --pf-v5-c-progress__status-icon--Color: var(--pf-v5-global--Color--100);
9
- --pf-v5-c-progress__bar--before--Opacity: .2;
7
+ --pf-v5-c-progress__status--Gap: var(--pf-t--global--spacer--sm);
8
+ --pf-v5-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
10
9
  --pf-v5-c-progress__indicator--Height: var(--pf-v5-c-progress__bar--Height);
11
- --pf-v5-c-progress__indicator--BackgroundColor: var(--pf-v5-c-progress__bar--before--BackgroundColor);
12
- --pf-v5-c-progress__helper-text--MarginTop: calc(var(--pf-v5-global--spacer--xs) - var(--pf-v5-c-progress--GridGap));
13
- --pf-v5-c-progress--m-success__bar--BackgroundColor: var(--pf-v5-global--success-color--100);
14
- --pf-v5-c-progress--m-warning__bar--BackgroundColor: var(--pf-v5-global--warning-color--100);
15
- --pf-v5-c-progress--m-danger__bar--BackgroundColor: var(--pf-v5-global--danger-color--100);
16
- --pf-v5-c-progress--m-success__status-icon--Color: var(--pf-v5-global--success-color--100);
17
- --pf-v5-c-progress--m-warning__status-icon--Color: var(--pf-v5-global--warning-color--100);
18
- --pf-v5-c-progress--m-danger__status-icon--Color: var(--pf-v5-global--danger-color--100);
19
- --pf-v5-c-progress--m-inside__indicator--MinWidth: var(--pf-v5-global--spacer--xl);
20
- --pf-v5-c-progress--m-inside__measure--Color: var(--pf-v5-global--Color--light-100);
21
- --pf-v5-c-progress--m-success--m-inside__measure--Color: var(--pf-v5-global--Color--light-100);
22
- --pf-v5-c-progress--m-warning--m-inside__measure--Color: var(--pf-v5-global--Color--dark-100);
23
- --pf-v5-c-progress--m-inside__measure--FontSize: var(--pf-v5-global--FontSize--sm);
24
- --pf-v5-c-progress--m-outside__measure--FontSize: var(--pf-v5-global--FontSize--sm);
25
- --pf-v5-c-progress--m-sm__bar--Height: var(--pf-v5-global--spacer--sm);
26
- --pf-v5-c-progress--m-sm__description--FontSize: var(--pf-v5-global--FontSize--sm);
27
- --pf-v5-c-progress--m-sm__measure--FontSize: var(--pf-v5-global--FontSize--sm);
28
- --pf-v5-c-progress--m-lg__bar--Height: var(--pf-v5-global--spacer--lg);
10
+ --pf-v5-c-progress__indicator--BackgroundColor: var(--pf-t--global--color--brand--default);
11
+ --pf-v5-c-progress__helper-text--MarginTop: calc(var(--pf-t--global--spacer--sm) - var(--pf-v5-c-progress--GridGap));
12
+ --pf-v5-c-progress--m-success__indicator--BackgroundColor: var(--pf-t--global--color--status--success--default);
13
+ --pf-v5-c-progress--m-warning__indicator--BackgroundColor: var(--pf-t--global--color--status--warning--default);
14
+ --pf-v5-c-progress--m-danger__indicator--BackgroundColor: var(--pf-t--global--color--status--danger--default);
15
+ --pf-v5-c-progress--m-success__status-icon--Color: var(--pf-t--global--icon--color--status--success--default);
16
+ --pf-v5-c-progress--m-warning__status-icon--Color: var(--pf-t--global--icon--color--status--warning--default);
17
+ --pf-v5-c-progress--m-danger__status-icon--Color: var(--pf-t--global--icon--color--status--danger--default);
18
+ --pf-v5-c-progress--m-inside__indicator--MinWidth: var(--pf-t--global--spacer--xl);
19
+ --pf-v5-c-progress--m-inside__measure--Color: var(--pf-t--global--text--color--on-brand--default);
20
+ --pf-v5-c-progress--m-success--m-inside__measure--Color: var(--pf-t--global--text--color--status--on-success--default);
21
+ --pf-v5-c-progress--m-warning--m-inside__measure--Color: var(--pf-t--global--text--color--status--on-warning--default);
22
+ --pf-v5-c-progress--m-danger--m-inside__measure--Color: var(--pf-t--global--text--color--status--on-danger--default);
23
+ --pf-v5-c-progress--m-inside__measure--FontSize: var(--pf-t--global--font--size--sm);
24
+ --pf-v5-c-progress--m-outside__measure--FontSize: var(--pf-t--global--font--size--sm);
25
+ --pf-v5-c-progress--m-sm__bar--Height: var(--pf-t--global--spacer--sm);
26
+ --pf-v5-c-progress--m-sm__measure--FontSize: var(--pf-t--global--font--size--body--sm);
27
+ --pf-v5-c-progress--m-lg__bar--Height: var(--pf-t--global--spacer--lg);
28
+ }
29
+
30
+ .pf-v5-c-progress {
29
31
  display: grid;
30
32
  grid-template-rows: 1fr auto;
31
33
  grid-template-columns: auto auto;
@@ -35,9 +37,6 @@
35
37
  .pf-v5-c-progress.pf-m-sm {
36
38
  --pf-v5-c-progress__bar--Height: var(--pf-v5-c-progress--m-sm__bar--Height);
37
39
  }
38
- .pf-v5-c-progress.pf-m-sm .pf-v5-c-progress__description {
39
- font-size: var(--pf-v5-c-progress--m-sm__description--FontSize);
40
- }
41
40
  .pf-v5-c-progress.pf-m-sm .pf-v5-c-progress__measure {
42
41
  font-size: var(--pf-v5-c-progress--m-sm__measure--FontSize);
43
42
  }
@@ -93,18 +92,19 @@
93
92
  grid-template-columns: 1fr fit-content(50%);
94
93
  }
95
94
  .pf-v5-c-progress.pf-m-success {
96
- --pf-v5-c-progress__bar--before--BackgroundColor: var(--pf-v5-c-progress--m-success__bar--BackgroundColor);
95
+ --pf-v5-c-progress__indicator--BackgroundColor: var(--pf-v5-c-progress--m-success__indicator--BackgroundColor);
97
96
  --pf-v5-c-progress__status-icon--Color: var(--pf-v5-c-progress--m-success__status-icon--Color);
98
97
  --pf-v5-c-progress--m-inside__measure--Color: var(--pf-v5-c-progress--m-success--m-inside__measure--Color);
99
98
  }
100
99
  .pf-v5-c-progress.pf-m-warning {
101
- --pf-v5-c-progress__bar--before--BackgroundColor: var(--pf-v5-c-progress--m-warning__bar--BackgroundColor);
100
+ --pf-v5-c-progress__indicator--BackgroundColor: var(--pf-v5-c-progress--m-warning__indicator--BackgroundColor);
102
101
  --pf-v5-c-progress__status-icon--Color: var(--pf-v5-c-progress--m-warning__status-icon--Color);
103
102
  --pf-v5-c-progress--m-inside__measure--Color: var(--pf-v5-c-progress--m-warning--m-inside__measure--Color);
104
103
  }
105
104
  .pf-v5-c-progress.pf-m-danger {
106
- --pf-v5-c-progress__bar--before--BackgroundColor: var(--pf-v5-c-progress--m-danger__bar--BackgroundColor);
105
+ --pf-v5-c-progress__indicator--BackgroundColor: var(--pf-v5-c-progress--m-danger__indicator--BackgroundColor);
107
106
  --pf-v5-c-progress__status-icon--Color: var(--pf-v5-c-progress--m-danger__status-icon--Color);
107
+ --pf-v5-c-progress--m-inside__measure--Color: var(--pf-v5-c-progress--m-danger--m-inside__measure--Color);
108
108
  }
109
109
 
110
110
  .pf-v5-c-progress__description {
@@ -146,14 +146,6 @@
146
146
  height: var(--pf-v5-c-progress__bar--Height);
147
147
  background-color: var(--pf-v5-c-progress__bar--BackgroundColor);
148
148
  }
149
- .pf-v5-c-progress__bar::before {
150
- position: absolute;
151
- width: 100%;
152
- height: 100%;
153
- content: "";
154
- background-color: var(--pf-v5-c-progress__bar--before--BackgroundColor);
155
- opacity: var(--pf-v5-c-progress__bar--before--Opacity);
156
- }
157
149
 
158
150
  .pf-v5-c-progress__indicator {
159
151
  position: absolute;
@@ -165,10 +157,4 @@
165
157
  grid-row: 3/4;
166
158
  grid-column: 1/3;
167
159
  margin-block-start: var(--pf-v5-c-progress__helper-text--MarginTop);
168
- }
169
-
170
- :where(.pf-v5-theme-dark) .pf-v5-c-progress {
171
- --pf-v5-c-progress--m-inside__measure--Color: var(--pf-v5-global--palette--black-900);
172
- --pf-v5-c-progress--m-success--m-inside__measure--Color: var(--pf-v5-global--palette--black-900);
173
- --pf-v5-c-progress--m-warning--m-inside__measure--Color: var(--pf-v5-global--palette--black-900);
174
160
  }
@@ -19,7 +19,6 @@ declare const _default: {
19
19
  "progressIndicator": "pf-v5-c-progress__indicator",
20
20
  "progressMeasure": "pf-v5-c-progress__measure",
21
21
  "progressStatus": "pf-v5-c-progress__status",
22
- "progressStatusIcon": "pf-v5-c-progress__status-icon",
23
- "themeDark": "pf-v5-theme-dark"
22
+ "progressStatusIcon": "pf-v5-c-progress__status-icon"
24
23
  };
25
24
  export default _default;
@@ -21,6 +21,5 @@ exports.default = {
21
21
  "progressIndicator": "pf-v5-c-progress__indicator",
22
22
  "progressMeasure": "pf-v5-c-progress__measure",
23
23
  "progressStatus": "pf-v5-c-progress__status",
24
- "progressStatusIcon": "pf-v5-c-progress__status-icon",
25
- "themeDark": "pf-v5-theme-dark"
24
+ "progressStatusIcon": "pf-v5-c-progress__status-icon"
26
25
  };
@@ -19,6 +19,5 @@ export default {
19
19
  "progressIndicator": "pf-v5-c-progress__indicator",
20
20
  "progressMeasure": "pf-v5-c-progress__measure",
21
21
  "progressStatus": "pf-v5-c-progress__status",
22
- "progressStatusIcon": "pf-v5-c-progress__status-icon",
23
- "themeDark": "pf-v5-theme-dark"
22
+ "progressStatusIcon": "pf-v5-c-progress__status-icon"
24
23
  };
@@ -1,21 +1,26 @@
1
+ :root,
1
2
  .pf-v5-c-radio {
2
- --pf-v5-c-radio--GridGap: var(--pf-v5-global--spacer--xs) var(--pf-v5-global--spacer--sm);
3
- --pf-v5-c-radio__label--disabled--Color: var(--pf-v5-global--disabled-color--100);
4
- --pf-v5-c-radio__label--Color: var(--pf-v5-global--Color--100);
5
- --pf-v5-c-radio__label--FontWeight: var(--pf-v5-global--FontWeight--normal);
6
- --pf-v5-c-radio__label--FontSize: var(--pf-v5-global--FontSize--md);
7
- --pf-v5-c-radio__label--LineHeight: var(--pf-v5-global--LineHeight--md);
3
+ --pf-v5-c-radio--GridGap: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm);
4
+ --pf-v5-c-radio--AccentColor: var(--pf-t--global--icon--color--brand--default);
5
+ --pf-v5-c-radio__label--disabled--Color: var(--pf-t--global--text--color--disabled);
6
+ --pf-v5-c-radio__label--Color: var(--pf-t--global--text--color--regular);
7
+ --pf-v5-c-radio__label--FontWeight: var(--pf-t--global--font--weight--body);
8
+ --pf-v5-c-radio__label--FontSize: var(--pf-t--global--font--size--body--default);
9
+ --pf-v5-c-radio__label--LineHeight: var(--pf-t--global--font--line-height--body);
8
10
  --pf-v5-c-radio__input--TranslateY: calc((var(--pf-v5-c-radio__label--LineHeight) * var(--pf-v5-c-radio__label--FontSize) / 2 ) - 50%);
9
- --pf-v5-c-radio__input--TranslateY--moz: var(--pf-v5-c-radio__input--TranslateY);
10
11
  --pf-v5-c-radio__input--first-child--MarginLeft: 0.0625rem;
11
12
  --pf-v5-c-radio__input--last-child--MarginRight: 0.0625rem;
12
- --pf-v5-c-radio__description--FontSize: var(--pf-v5-global--FontSize--sm);
13
- --pf-v5-c-radio__description--Color: var(--pf-v5-global--Color--200);
14
- --pf-v5-c-radio__body--MarginTop: var(--pf-v5-global--spacer--sm);
13
+ --pf-v5-c-radio__description--FontSize: var(--pf-t--global--font--size--body--sm);
14
+ --pf-v5-c-radio__description--Color: var(--pf-t--global--text--color--subtle);
15
+ --pf-v5-c-radio__body--MarginTop: var(--pf-t--global--spacer--sm);
16
+ }
17
+
18
+ .pf-v5-c-radio {
15
19
  display: grid;
16
20
  grid-template-columns: auto 1fr;
17
21
  grid-gap: var(--pf-v5-c-radio--GridGap);
18
22
  align-items: baseline;
23
+ accent-color: var(--pf-v5-c-radio--AccentColor);
19
24
  }
20
25
  .pf-v5-c-radio.pf-m-standalone {
21
26
  --pf-v5-c-radio--GridGap: 0;
@@ -25,7 +30,6 @@
25
30
 
26
31
  .pf-v5-c-radio__input {
27
32
  align-self: start;
28
- -moz-transform: translateY(var(--pf-v5-c-radio__input--TranslateY--moz));
29
33
  transform: translateY(var(--pf-v5-c-radio__input--TranslateY));
30
34
  }
31
35
  .pf-v5-c-radio__input:first-child {
@@ -5,7 +5,7 @@
5
5
  --pf-v5-c-simple-list__item-link--PaddingLeft: var(--pf-t--global--spacer--md);
6
6
  --pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
7
7
  --pf-v5-c-simple-list__item-link--Color: var(--pf-t--global--text--color--subtle);
8
- --pf-v5-c-simple-list__item-link--FontSize: var(--pf-t--global--font--size--body);
8
+ --pf-v5-c-simple-list__item-link--FontSize: var(--pf-t--global--font--size--body--default);
9
9
  --pf-v5-c-simple-list__item-link--m-current--Color: var(--pf-t--global--text--color--regular);
10
10
  --pf-v5-c-simple-list__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--selected);
11
11
  --pf-v5-c-simple-list__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
@@ -1,31 +1,32 @@
1
1
  @charset "UTF-8";
2
+ :root,
2
3
  .pf-v5-c-skeleton {
3
- --pf-v5-c-skeleton--BackgroundColor: var(--pf-v5-global--palette--black-150);
4
+ --pf-v5-c-skeleton--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
4
5
  --pf-v5-c-skeleton--Width: auto;
5
6
  --pf-v5-c-skeleton--Height: auto;
6
- --pf-v5-c-skeleton--BorderRadius: var(--pf-v5-global--BorderRadius--sm);
7
+ --pf-v5-c-skeleton--BorderRadius: var(--pf-t--global--spacer--sm);
7
8
  --pf-v5-c-skeleton--before--PaddingBottom: 0;
8
9
  --pf-v5-c-skeleton--before--Height: auto;
9
10
  --pf-v5-c-skeleton--before--Content: " ";
10
11
  --pf-v5-c-skeleton--after--LinearGradientAngle: 90deg;
11
- --pf-v5-c-skeleton--after--LinearGradientColorStop1: var(--pf-v5-global--palette--black-150);
12
- --pf-v5-c-skeleton--after--LinearGradientColorStop2: #ededed;
13
- --pf-v5-c-skeleton--after--LinearGradientColorStop3: var(--pf-v5-global--palette--black-150);
12
+ --pf-v5-c-skeleton--after--LinearGradientColorStop1: var(--pf-t--global--background--color--secondary--default);
13
+ --pf-v5-c-skeleton--after--LinearGradientColorStop2: var(--pf-t--global--background--color--secondary--hover);
14
+ --pf-v5-c-skeleton--after--LinearGradientColorStop3: var(--pf-t--global--background--color--secondary--default);
14
15
  --pf-v5-c-skeleton--after--TranslateX: -100%;
15
16
  --pf-v5-c-skeleton--after--AnimationName: pf-v5-c-skeleton-loading;
16
- --pf-v5-c-skeleton--after--AnimationDuration: 2s;
17
+ --pf-v5-c-skeleton--after--AnimationDuration: 3s;
17
18
  --pf-v5-c-skeleton--after--AnimationIterationCount: infinite;
18
19
  --pf-v5-c-skeleton--after--AnimationTimingFunction: linear;
19
20
  --pf-v5-c-skeleton--after--AnimationDelay: .5s;
20
- --pf-v5-c-skeleton--m-circle--BorderRadius: var(--pf-v5-global--BorderRadius--lg);
21
+ --pf-v5-c-skeleton--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
21
22
  --pf-v5-c-skeleton--m-circle--before--PaddingBottom: 100%;
22
- --pf-v5-c-skeleton--m-text-4xl--Height: calc(var(--pf-v5-global--FontSize--4xl) * var(--pf-v5-global--LineHeight--sm));
23
- --pf-v5-c-skeleton--m-text-3xl--Height: calc(var(--pf-v5-global--FontSize--3xl) * var(--pf-v5-global--LineHeight--sm));
24
- --pf-v5-c-skeleton--m-text-2xl--Height: calc(var(--pf-v5-global--FontSize--2xl) * var(--pf-v5-global--LineHeight--sm));
25
- --pf-v5-c-skeleton--m-text-xl--Height: calc(var(--pf-v5-global--FontSize--xl) * var(--pf-v5-global--LineHeight--sm));
26
- --pf-v5-c-skeleton--m-text-lg--Height: calc(var(--pf-v5-global--FontSize--lg) * var(--pf-v5-global--LineHeight--md));
27
- --pf-v5-c-skeleton--m-text-md--Height: calc(var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--md));
28
- --pf-v5-c-skeleton--m-text-sm--Height: calc(var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--md));
23
+ --pf-v5-c-skeleton--m-text-4xl--Height: calc(var(--pf-t--global--font--size--4xl) * var(--pf-t--global--font--line-height--heading));
24
+ --pf-v5-c-skeleton--m-text-3xl--Height: calc(var(--pf-t--global--font--size--3xl) * var(--pf-t--global--font--line-height--heading));
25
+ --pf-v5-c-skeleton--m-text-2xl--Height: calc(var(--pf-t--global--font--size--2xl) * var(--pf-t--global--font--line-height--heading));
26
+ --pf-v5-c-skeleton--m-text-xl--Height: calc(var(--pf-t--global--font--size--xl) * var(--pf-t--global--font--line-height--heading));
27
+ --pf-v5-c-skeleton--m-text-lg--Height: calc(var(--pf-t--global--font--size--lg) * var(--pf-t--global--font--line-height--body));
28
+ --pf-v5-c-skeleton--m-text-md--Height: calc(var(--pf-t--global--font--size--md) * var(--pf-t--global--font--line-height--body));
29
+ --pf-v5-c-skeleton--m-text-sm--Height: calc(var(--pf-t--global--font--size--sm) * var(--pf-t--global--font--line-height--body));
29
30
  --pf-v5-c-skeleton--m-width-sm--Width: 6.25rem;
30
31
  --pf-v5-c-skeleton--m-width-md--Width: 12.5rem;
31
32
  --pf-v5-c-skeleton--m-width-lg--Width: 18.75rem;
@@ -43,6 +44,9 @@
43
44
  --pf-v5-c-skeleton--m-height-66--Height: calc(100% / 3 * 2);
44
45
  --pf-v5-c-skeleton--m-height-75--Height: 75%;
45
46
  --pf-v5-c-skeleton--m-height-100--Height: 100%;
47
+ }
48
+
49
+ .pf-v5-c-skeleton {
46
50
  position: relative;
47
51
  width: var(--pf-v5-c-skeleton--Width);
48
52
  height: var(--pf-v5-c-skeleton--Height);
@@ -160,10 +164,4 @@
160
164
  100% {
161
165
  transform: translateX(100%);
162
166
  }
163
- }
164
- :where(.pf-v5-theme-dark) .pf-v5-c-skeleton {
165
- --pf-v5-c-skeleton--BackgroundColor: var(--pf-v5-global--palette--black-600);
166
- --pf-v5-c-skeleton--after--LinearGradientColorStop1: var(--pf-v5-global--palette--black-600);
167
- --pf-v5-c-skeleton--after--LinearGradientColorStop2: var(--pf-v5-global--palette--black-500);
168
- --pf-v5-c-skeleton--after--LinearGradientColorStop3: var(--pf-v5-global--palette--black-600);
169
167
  }
@@ -29,7 +29,6 @@ declare const _default: {
29
29
  "textMd": "pf-m-text-md",
30
30
  "textSm": "pf-m-text-sm"
31
31
  },
32
- "skeleton": "pf-v5-c-skeleton",
33
- "themeDark": "pf-v5-theme-dark"
32
+ "skeleton": "pf-v5-c-skeleton"
34
33
  };
35
34
  export default _default;
@@ -31,6 +31,5 @@ exports.default = {
31
31
  "textMd": "pf-m-text-md",
32
32
  "textSm": "pf-m-text-sm"
33
33
  },
34
- "skeleton": "pf-v5-c-skeleton",
35
- "themeDark": "pf-v5-theme-dark"
34
+ "skeleton": "pf-v5-c-skeleton"
36
35
  };
@@ -29,6 +29,5 @@ export default {
29
29
  "textMd": "pf-m-text-md",
30
30
  "textSm": "pf-m-text-sm"
31
31
  },
32
- "skeleton": "pf-v5-c-skeleton",
33
- "themeDark": "pf-v5-theme-dark"
32
+ "skeleton": "pf-v5-c-skeleton"
34
33
  };
@@ -1,63 +1,67 @@
1
+ :root,
1
2
  .pf-v5-c-slider {
2
3
  --pf-v5-c-slider--value: 0;
3
4
  --pf-v5-c-slider__step--Left: 0;
4
- --pf-v5-c-slider__rail--PaddingTop: var(--pf-v5-global--spacer--md);
5
- --pf-v5-c-slider__rail--PaddingBottom: var(--pf-v5-global--spacer--md);
5
+ --pf-v5-c-slider__rail--PaddingTop: var(--pf-t--global--spacer--md);
6
+ --pf-v5-c-slider__rail--PaddingBottom: var(--pf-t--global--spacer--md);
6
7
  --pf-v5-c-slider__rail-track--Height: 0.25rem;
7
- --pf-v5-c-slider__rail-track--before--base--BackgroundColor: var(--pf-v5-global--BorderColor--100);
8
- --pf-v5-c-slider__rail-track--before--fill--BackgroundColor: var(--pf-v5-global--active-color--300);
9
- --pf-v5-c-slider__rail-track--before--BorderRadius: var(--pf-v5-global--BorderRadius--lg);
8
+ --pf-v5-c-slider__rail-track--before--base--BackgroundColor: var(--pf-t--global--border--color--default);
9
+ --pf-v5-c-slider__rail-track--before--fill--BackgroundColor: var(--pf-t--global--border--color--hover);
10
+ --pf-v5-c-slider__rail-track--before--BorderRadius: var(--pf-t--global--border--radius--tiny);
10
11
  --pf-v5-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop: var(--pf-v5-c-slider--value);
11
- --pf-v5-c-slider__rail-track--before--fill--direction: right;
12
- --pf-v5-c-slider__steps--FontSize: var(--pf-v5-global--FontSize--sm);
12
+ --pf-v5-c-slider__steps--FontSize: var(--pf-t--global--font--size--sm);
13
13
  --pf-v5-c-slider__steps--Height: var(--pf-v5-c-slider__steps--FontSize);
14
- --pf-v5-c-slider__step-tick--Top: var(--pf-v5-global--spacer--md);
14
+ --pf-v5-c-slider__step-tick--Top: var(--pf-t--global--spacer--md);
15
15
  --pf-v5-c-slider__step-tick--Width: 0.25rem;
16
16
  --pf-v5-c-slider__step-tick--Height: 0.25rem;
17
- --pf-v5-c-slider__step-tick--BackgroundColor: var(--pf-v5-global--BorderColor--200);
17
+ --pf-v5-c-slider__step-tick--BackgroundColor: var(--pf-t--global--icon--color--subtle);
18
18
  --pf-v5-c-slider__step-tick--TranslateX: -50%;
19
- --pf-v5-c-slider__step-tick--BorderRadius: var(--pf-v5-global--BorderRadius--lg);
20
- --pf-v5-c-slider__step--m-active__slider-tick--BackgroundColor: var(--pf-v5-global--primary-color--100);
19
+ --pf-v5-c-slider__step-tick--BorderRadius: var(--pf-t--global--border--radius--large);
20
+ --pf-v5-c-slider__step--m-active__slider-tick--BackgroundColor: var(--pf-t--global--icon--color--brand--clicked);
21
21
  --pf-v5-c-slider__step--first-child__step-tick--TranslateX: 0;
22
22
  --pf-v5-c-slider__step--last-child__step-tick--TranslateX: -100%;
23
23
  --pf-v5-c-slider__step-label--TranslateX: -50%;
24
- --pf-v5-c-slider__step-label--Top: calc(var(--pf-v5-global--spacer--xl) + var(--pf-v5-c-slider__rail-track--Height));
24
+ --pf-v5-c-slider__step-label--Top: calc(var(--pf-t--global--spacer--xl) + var(--pf-v5-c-slider__rail-track--Height));
25
25
  --pf-v5-c-slider__step--first-child__step-label--TranslateX: 0;
26
26
  --pf-v5-c-slider__step--last-child__step-label--TranslateX: -100%;
27
- --pf-v5-c-slider__thumb--Top: calc(var(--pf-v5-c-slider__rail-track--Height) / 2 + var(--pf-v5-global--spacer--md));
27
+ --pf-v5-c-slider__thumb--Top: calc(var(--pf-v5-c-slider__rail-track--Height) / 2 + var(--pf-t--global--spacer--md));
28
28
  --pf-v5-c-slider__thumb--Width: 1rem;
29
29
  --pf-v5-c-slider__thumb--Height: 1rem;
30
30
  --pf-v5-c-slider__thumb--Left: var(--pf-v5-c-slider--value);
31
- --pf-v5-c-slider__thumb--BackgroundColor: var(--pf-v5-global--primary-color--100);
31
+ --pf-v5-c-slider__thumb--BackgroundColor: var(--pf-t--global--color--brand--default);
32
32
  --pf-v5-c-slider__thumb--TranslateX: -50%;
33
33
  --pf-v5-c-slider__thumb--TranslateY: -50%;
34
- --pf-v5-c-slider__thumb--BorderRadius: var(--pf-v5-global--BorderRadius--lg);
34
+ --pf-v5-c-slider__thumb--BorderRadius: var(--pf-t--global--border--radius--large);
35
35
  --pf-v5-c-slider__thumb--BoxShadow--base:
36
- 0 0 0 2px var(--pf-v5-global--BackgroundColor--100),
37
- 0 0 0 3px var(--pf-v5-global--primary-color--100);
36
+ 0 0 0 2px var(--pf-t--global--background--color--primary--default),
37
+ 0 0 0 3px var(--pf-t--global--color--brand--default);
38
38
  --pf-v5-c-slider__thumb--hover--BoxShadow: var(--pf-v5-c-slider__thumb--BoxShadow--base);
39
39
  --pf-v5-c-slider__thumb--focus--BoxShadow: var(--pf-v5-c-slider__thumb--BoxShadow--base);
40
40
  --pf-v5-c-slider__thumb--active--BoxShadow:
41
41
  var(--pf-v5-c-slider__thumb--BoxShadow--base),
42
- 0 0 2px 5px var(--pf-v5-global--active-color--200);
43
- --pf-v5-c-slider__thumb--before--Width: var(--pf-v5-global--target-size--MinWidth);
44
- --pf-v5-c-slider__thumb--before--Height: var(--pf-v5-global--target-size--MinHeight);
45
- --pf-v5-c-slider__thumb--before--BorderRadius: var(--pf-v5-global--BorderRadius--lg);
42
+ 0 0 2px 5px var(--pf-t--global--color--nonstatus--blue--clicked);
43
+ --pf-v5-c-slider__thumb--before--Width: 44px;
44
+ --pf-v5-c-slider__thumb--before--Height: var(--pf-v5-c-slider__thumb--before--Width);
45
+ --pf-v5-c-slider__thumb--before--BorderRadius: var(--pf-t--global--border--radius--large);
46
46
  --pf-v5-c-slider__thumb--before--TranslateX: -50%;
47
47
  --pf-v5-c-slider__thumb--before--TranslateY: -50%;
48
- --pf-v5-c-slider__value--MarginLeft: var(--pf-v5-global--spacer--md);
49
- --pf-v5-c-slider__value--c-form-control--width-base: 3.5ch;
48
+ --pf-v5-c-slider__value--MarginLeft: var(--pf-t--global--spacer--md);
49
+ --pf-v5-c-slider__value--c-form-control--width-base: calc(var(--pf-v5-c-form-control--PaddingLeft) + var(--pf-v5-c-form-control--PaddingRight) + 1.25rem);
50
50
  --pf-v5-c-slider__value--c-form-control--width-chars: 3;
51
- --pf-v5-c-slider__value--c-form-control--Width: calc(var(--pf-v5-c-slider__value--c-form-control--width-base) + (var(--pf-v5-c-slider__value--c-form-control--width-chars) * 1ch));
51
+ --pf-v5-c-slider__value--c-form-control--Width: calc(var(--pf-v5-c-slider__value--c-form-control--width-base) + var(--pf-v5-c-slider__value--c-form-control--width-chars) * 1ch);
52
52
  --pf-v5-c-slider__value--m-floating--TranslateX: -50%;
53
53
  --pf-v5-c-slider__value--m-floating--TranslateY: -100%;
54
54
  --pf-v5-c-slider__value--m-floating--Left: var(--pf-v5-c-slider--value);
55
- --pf-v5-c-slider__value--m-floating--ZIndex: var(--pf-v5-global--ZIndex--sm);
56
- --pf-v5-c-slider__actions--MarginRight: var(--pf-v5-global--spacer--sm);
57
- --pf-v5-c-slider__main--actions--MarginLeft: var(--pf-v5-global--spacer--sm);
58
- --pf-v5-c-slider--m-disabled__rail-track--before--fill--BackgroundColor: var(--pf-v5-global--palette--black-500);
59
- --pf-v5-c-slider--m-disabled__step--m-active__slider-tick--BackgroundColor: var(--pf-v5-global--palette--black-700);
60
- --pf-v5-c-slider--m-disabled__thumb--BackgroundColor: var(--pf-v5-global--palette--black-700);
55
+ --pf-v5-c-slider__value--m-floating--ZIndex: var(--pf-t--global--Zindex--sm);
56
+ --pf-v5-c-slider__actions--MarginRight: var(--pf-t--global--spacer--sm);
57
+ --pf-v5-c-slider__main--actions--MarginLeft: var(--pf-t--global--spacer--sm);
58
+ --pf-v5-c-slider--m-disabled__rail-track--before--fill--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
59
+ --pf-v5-c-slider--m-disabled__step--m-active__slider-tick--BackgroundColor: var(--pf-t--global--icon--color--disabled);
60
+ --pf-v5-c-slider--m-disabled__thumb--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
61
+ }
62
+
63
+ .pf-v5-c-slider {
64
+ --pf-v5-c-slider__rail-track--before--fill--direction: right;
61
65
  display: flex;
62
66
  }
63
67
  :where(.pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-slider {
@@ -1,16 +1,26 @@
1
+ :root,
1
2
  .pf-v5-c-spinner {
2
- --pf-v5-c-spinner--diameter: var(--pf-v5-global--icon--FontSize--xl);
3
+ --pf-v5-c-spinner--diameter: var(--pf-t--global--icon--size--2xl);
3
4
  --pf-v5-c-spinner--Width: var(--pf-v5-c-spinner--diameter);
4
5
  --pf-v5-c-spinner--Height: var(--pf-v5-c-spinner--diameter);
5
- --pf-v5-c-spinner--Color: var(--pf-v5-global--primary-color--100);
6
- --pf-v5-c-spinner--m-sm--diameter: var(--pf-v5-global--icon--FontSize--sm);
7
- --pf-v5-c-spinner--m-md--diameter: var(--pf-v5-global--icon--FontSize--md);
8
- --pf-v5-c-spinner--m-lg--diameter: var(--pf-v5-global--icon--FontSize--lg);
9
- --pf-v5-c-spinner--m-xl--diameter: var(--pf-v5-global--icon--FontSize--xl);
6
+ --pf-v5-c-spinner--Color: var(--pf-t--global--icon--color--brand--default);
7
+ --pf-v5-c-spinner--AnimationDuration: 1.4s;
8
+ --pf-v5-c-spinner--AnimationTimingFunction: linear;
9
+ --pf-v5-c-spinner--StrokeWidth: 10;
10
+ --pf-v5-c-spinner__path--StrokeWidth: var(--pf-v5-c-spinner--StrokeWidth);
11
+ --pf-v5-c-spinner__path--AnimationTimingFunction: ease-in-out;
12
+ --pf-v5-c-spinner--m-sm--diameter: var(--pf-t--global--icon--size--md);
13
+ --pf-v5-c-spinner--m-md--diameter: var(--pf-t--global--icon--size--lg);
14
+ --pf-v5-c-spinner--m-lg--diameter: var(--pf-t--global--icon--size--xl);
15
+ --pf-v5-c-spinner--m-xl--diameter: var(--pf-t--global--icon--size--2xl);
10
16
  --pf-v5-c-spinner--m-inline--diameter: 1em;
17
+ }
18
+
19
+ .pf-v5-c-spinner {
11
20
  width: var(--pf-v5-c-spinner--Width);
12
21
  height: var(--pf-v5-c-spinner--Height);
13
22
  overflow: hidden;
23
+ animation: pf-v5-c-spinner-animation-rotate calc(var(--pf-v5-c-spinner--AnimationDuration) * 2) var(--pf-v5-c-spinner--AnimationTimingFunction) infinite;
14
24
  }
15
25
  .pf-v5-c-spinner.pf-m-inline {
16
26
  --pf-v5-c-spinner--diameter: var(--pf-v5-c-spinner--m-inline--diameter);
@@ -28,33 +38,6 @@
28
38
  --pf-v5-c-spinner--diameter: var(--pf-v5-c-spinner--m-xl--diameter);
29
39
  }
30
40
 
31
- svg.pf-v5-c-spinner {
32
- --pf-v5-c-spinner--diameter: var(--pf-v5-global--icon--FontSize--xl);
33
- --pf-v5-c-spinner--AnimationDuration: 1.4s;
34
- --pf-v5-c-spinner--AnimationTimingFunction: linear;
35
- --pf-v5-c-spinner--stroke-width: 10;
36
- --pf-v5-c-spinner__path--Stroke: var(--pf-v5-c-spinner--Color);
37
- --pf-v5-c-spinner__path--StrokeWidth: var(--pf-v5-c-spinner--stroke-width);
38
- --pf-v5-c-spinner__path--AnimationTimingFunction: ease-in-out;
39
- --pf-v5-c-spinner--m-sm--diameter: var(--pf-v5-global--icon--FontSize--sm);
40
- --pf-v5-c-spinner--m-md--diameter: var(--pf-v5-global--icon--FontSize--md);
41
- --pf-v5-c-spinner--m-lg--diameter: var(--pf-v5-global--icon--FontSize--lg);
42
- --pf-v5-c-spinner--m-xl--diameter: var(--pf-v5-global--icon--FontSize--xl);
43
- animation: pf-v5-c-spinner-animation-rotate calc(var(--pf-v5-c-spinner--AnimationDuration) * 2) var(--pf-v5-c-spinner--AnimationTimingFunction) infinite;
44
- }
45
- svg.pf-v5-c-spinner.pf-m-sm {
46
- --pf-v5-c-spinner--diameter: var(--pf-v5-c-spinner--m-sm--diameter);
47
- }
48
- svg.pf-v5-c-spinner.pf-m-md {
49
- --pf-v5-c-spinner--diameter: var(--pf-v5-c-spinner--m-md--diameter);
50
- }
51
- svg.pf-v5-c-spinner.pf-m-lg {
52
- --pf-v5-c-spinner--diameter: var(--pf-v5-c-spinner--m-lg--diameter);
53
- }
54
- svg.pf-v5-c-spinner.pf-m-xl {
55
- --pf-v5-c-spinner--diameter: var(--pf-v5-c-spinner--m-xl--diameter);
56
- }
57
-
58
41
  .pf-v5-c-spinner__path {
59
42
  width: 100%;
60
43
  height: 100%;
@@ -62,7 +45,7 @@ svg.pf-v5-c-spinner.pf-m-xl {
62
45
  stroke-dasharray: 283;
63
46
  stroke-dashoffset: 280;
64
47
  stroke-linecap: round;
65
- stroke-width: var(--pf-v5-c-spinner--stroke-width);
48
+ stroke-width: var(--pf-v5-c-spinner--StrokeWidth);
66
49
  transform-origin: 50% 50%;
67
50
  animation: pf-v5-c-spinner-animation-dash var(--pf-v5-c-spinner--AnimationDuration) var(--pf-v5-c-spinner__path--AnimationTimingFunction) infinite;
68
51
  }