@patternfly/patternfly 6.0.0-alpha.56 → 6.0.0-alpha.57
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/Button/button.css +26 -11
- package/components/Button/button.scss +27 -12
- package/components/DescriptionList/description-list.css +39 -34
- package/components/DescriptionList/description-list.scss +25 -25
- package/components/Label/label-group.css +39 -44
- package/components/Label/label-group.scss +39 -45
- package/components/Label/label.css +258 -355
- package/components/Label/label.scss +297 -347
- package/components/SimpleList/simple-list.css +1 -1
- package/components/SimpleList/simple-list.scss +1 -1
- package/docs/components/Label/examples/Label.css +4 -0
- package/docs/components/Label/examples/Label.md +999 -223
- package/docs/demos/Form/examples/BasicForms.md +2 -2
- package/package.json +1 -1
- package/patternfly-no-globals.css +447 -449
- package/patternfly-theme-dark-unversioned.css +447 -449
- package/patternfly.css +447 -449
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +18 -0
- package/components/Label/themes/dark/label.scss +0 -53
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
--pf-v5-c-simple-list__item-link--Color: var(--pf-t--global--text--color--subtle);
|
|
8
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
|
-
--pf-v5-c-simple-list__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--
|
|
10
|
+
--pf-v5-c-simple-list__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
|
|
11
11
|
--pf-v5-c-simple-list__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
|
|
12
12
|
--pf-v5-c-simple-list__item-link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
13
13
|
--pf-v5-c-simple-list__item-link--MixBlendMode: var(--pf-t--global--background--color--action--plain--hover--blend);
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
--#{$simple-list}__item-link--Color: var(--pf-t--global--text--color--subtle);
|
|
11
11
|
--#{$simple-list}__item-link--FontSize: var(--pf-t--global--font--size--body--default);
|
|
12
12
|
--#{$simple-list}__item-link--m-current--Color: var(--pf-t--global--text--color--regular);
|
|
13
|
-
--#{$simple-list}__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--
|
|
13
|
+
--#{$simple-list}__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
|
|
14
14
|
--#{$simple-list}__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
|
|
15
15
|
--#{$simple-list}__item-link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
16
16
|
--#{$simple-list}__item-link--MixBlendMode: var(--pf-t--global--background--color--action--plain--hover--blend);
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
#ws-core-c-label-filled .ws-preview-html,
|
|
2
|
+
#ws-core-c-label-outline .ws-preview-html,
|
|
3
|
+
#ws-core-c-label-compact .ws-preview-html,
|
|
2
4
|
#ws-core-c-label-overflow .ws-preview-html {
|
|
3
5
|
margin: -4px;
|
|
4
6
|
}
|
|
5
7
|
|
|
6
8
|
#ws-core-c-label-filled .pf-v5-c-label,
|
|
9
|
+
#ws-core-c-label-outline .pf-v5-c-label,
|
|
10
|
+
#ws-core-c-label-compact .pf-v5-c-label,
|
|
7
11
|
#ws-core-c-label-overflow .pf-v5-c-label {
|
|
8
12
|
margin: 4px;
|
|
9
13
|
}
|