@patternfly/patternfly 4.185.1 → 4.185.2
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/components/Form/form.css
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
--pf-c-form__label--FontSize: var(--pf-global--FontSize--sm);
|
|
13
13
|
--pf-c-form__label--LineHeight: var(--pf-global--LineHeight--sm);
|
|
14
14
|
--pf-c-form__label--m-disabled--Color: var(--pf-global--disabled-color--100);
|
|
15
|
+
--pf-c-form__label--hover--Cursor: pointer;
|
|
16
|
+
--pf-c-form__label--m-disabled--hover--Cursor: not-allowed;
|
|
15
17
|
--pf-c-form__label-text--FontWeight: var(--pf-global--FontWeight--bold);
|
|
16
18
|
--pf-c-form__label-required--MarginLeft: var(--pf-global--spacer--xs);
|
|
17
19
|
--pf-c-form__label-required--FontSize: var(--pf-global--FontSize--sm);
|
|
@@ -289,13 +291,13 @@
|
|
|
289
291
|
background-color: none;
|
|
290
292
|
}
|
|
291
293
|
.pf-c-form__label:not(.pf-m-disabled):hover {
|
|
292
|
-
cursor:
|
|
294
|
+
cursor: var(--pf-c-form__label--hover--Cursor);
|
|
293
295
|
}
|
|
294
296
|
.pf-c-form__label.pf-m-disabled {
|
|
295
297
|
color: var(--pf-c-form__label--m-disabled--Color);
|
|
296
298
|
}
|
|
297
299
|
.pf-c-form__label.pf-m-disabled:hover {
|
|
298
|
-
cursor:
|
|
300
|
+
cursor: var(--pf-c-form__label--m-disabled--hover--Cursor);
|
|
299
301
|
}
|
|
300
302
|
|
|
301
303
|
.pf-c-form__label-text {
|
|
@@ -67,6 +67,8 @@ $pf-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "lg",
|
|
|
67
67
|
--pf-c-form__label--FontSize: var(--pf-global--FontSize--sm);
|
|
68
68
|
--pf-c-form__label--LineHeight: var(--pf-global--LineHeight--sm);
|
|
69
69
|
--pf-c-form__label--m-disabled--Color: var(--pf-global--disabled-color--100);
|
|
70
|
+
--pf-c-form__label--hover--Cursor: pointer;
|
|
71
|
+
--pf-c-form__label--m-disabled--hover--Cursor: not-allowed;
|
|
70
72
|
|
|
71
73
|
// Label text
|
|
72
74
|
--pf-c-form__label-text--FontWeight: var(--pf-global--FontWeight--bold);
|
|
@@ -268,7 +270,7 @@ $pf-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "lg",
|
|
|
268
270
|
}
|
|
269
271
|
|
|
270
272
|
&:not(.pf-m-disabled):hover {
|
|
271
|
-
cursor:
|
|
273
|
+
cursor: var(--pf-c-form__label--hover--Cursor);
|
|
272
274
|
}
|
|
273
275
|
|
|
274
276
|
&.pf-m-disabled {
|
|
@@ -276,7 +278,7 @@ $pf-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "lg",
|
|
|
276
278
|
}
|
|
277
279
|
|
|
278
280
|
&.pf-m-disabled:hover {
|
|
279
|
-
cursor:
|
|
281
|
+
cursor: var(--pf-c-form__label--m-disabled--hover--Cursor);
|
|
280
282
|
}
|
|
281
283
|
}
|
|
282
284
|
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -13461,6 +13461,8 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
13461
13461
|
--pf-c-form__label--FontSize: var(--pf-global--FontSize--sm);
|
|
13462
13462
|
--pf-c-form__label--LineHeight: var(--pf-global--LineHeight--sm);
|
|
13463
13463
|
--pf-c-form__label--m-disabled--Color: var(--pf-global--disabled-color--100);
|
|
13464
|
+
--pf-c-form__label--hover--Cursor: pointer;
|
|
13465
|
+
--pf-c-form__label--m-disabled--hover--Cursor: not-allowed;
|
|
13464
13466
|
--pf-c-form__label-text--FontWeight: var(--pf-global--FontWeight--bold);
|
|
13465
13467
|
--pf-c-form__label-required--MarginLeft: var(--pf-global--spacer--xs);
|
|
13466
13468
|
--pf-c-form__label-required--FontSize: var(--pf-global--FontSize--sm);
|
|
@@ -13738,13 +13740,13 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
13738
13740
|
background-color: none;
|
|
13739
13741
|
}
|
|
13740
13742
|
.pf-c-form__label:not(.pf-m-disabled):hover {
|
|
13741
|
-
cursor:
|
|
13743
|
+
cursor: var(--pf-c-form__label--hover--Cursor);
|
|
13742
13744
|
}
|
|
13743
13745
|
.pf-c-form__label.pf-m-disabled {
|
|
13744
13746
|
color: var(--pf-c-form__label--m-disabled--Color);
|
|
13745
13747
|
}
|
|
13746
13748
|
.pf-c-form__label.pf-m-disabled:hover {
|
|
13747
|
-
cursor:
|
|
13749
|
+
cursor: var(--pf-c-form__label--m-disabled--hover--Cursor);
|
|
13748
13750
|
}
|
|
13749
13751
|
|
|
13750
13752
|
.pf-c-form__label-text {
|
package/patternfly.css
CHANGED
|
@@ -13583,6 +13583,8 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
13583
13583
|
--pf-c-form__label--FontSize: var(--pf-global--FontSize--sm);
|
|
13584
13584
|
--pf-c-form__label--LineHeight: var(--pf-global--LineHeight--sm);
|
|
13585
13585
|
--pf-c-form__label--m-disabled--Color: var(--pf-global--disabled-color--100);
|
|
13586
|
+
--pf-c-form__label--hover--Cursor: pointer;
|
|
13587
|
+
--pf-c-form__label--m-disabled--hover--Cursor: not-allowed;
|
|
13586
13588
|
--pf-c-form__label-text--FontWeight: var(--pf-global--FontWeight--bold);
|
|
13587
13589
|
--pf-c-form__label-required--MarginLeft: var(--pf-global--spacer--xs);
|
|
13588
13590
|
--pf-c-form__label-required--FontSize: var(--pf-global--FontSize--sm);
|
|
@@ -13860,13 +13862,13 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
13860
13862
|
background-color: none;
|
|
13861
13863
|
}
|
|
13862
13864
|
.pf-c-form__label:not(.pf-m-disabled):hover {
|
|
13863
|
-
cursor:
|
|
13865
|
+
cursor: var(--pf-c-form__label--hover--Cursor);
|
|
13864
13866
|
}
|
|
13865
13867
|
.pf-c-form__label.pf-m-disabled {
|
|
13866
13868
|
color: var(--pf-c-form__label--m-disabled--Color);
|
|
13867
13869
|
}
|
|
13868
13870
|
.pf-c-form__label.pf-m-disabled:hover {
|
|
13869
|
-
cursor:
|
|
13871
|
+
cursor: var(--pf-c-form__label--m-disabled--hover--Cursor);
|
|
13870
13872
|
}
|
|
13871
13873
|
|
|
13872
13874
|
.pf-c-form__label-text {
|