@patternfly/patternfly 5.0.0-prerelease.2 → 5.0.0-prerelease.4
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/base/_common.scss +7 -0
- package/base/_variables.scss +0 -7
- package/base/patternfly-common.css +6 -0
- package/base/patternfly-themes.css +6 -0
- package/base/patternfly-variables.css +0 -6
- package/components/AboutModalBox/about-modal-box.css +6 -0
- package/components/Banner/banner.css +6 -0
- package/components/LogViewer/log-viewer.css +6 -0
- package/components/Login/login.css +7 -0
- package/components/Masthead/masthead.css +8 -6
- package/components/Masthead/masthead.scss +1 -7
- package/components/Masthead/themes/dark/masthead.scss +1 -0
- package/components/MenuToggle/menu-toggle.css +13 -11
- package/components/MenuToggle/menu-toggle.scss +14 -12
- package/components/MenuToggle/themes/dark/menu-toggle.scss +2 -1
- package/components/Page/page.css +8 -0
- package/components/Wizard/wizard.css +6 -0
- package/docs/demos/AboutModal/examples/AboutModal.md +42 -774
- package/docs/demos/Alert/examples/Alert.md +126 -2322
- package/docs/demos/BackToTop/examples/BackToTop.md +42 -774
- package/docs/demos/Banner/examples/Banner.md +84 -1588
- package/docs/demos/CardView/examples/CardView.md +42 -774
- package/docs/demos/ContextSelector/examples/ContextSelector.md +136 -2448
- package/docs/demos/Dashboard/examples/Dashboard.md +42 -774
- package/docs/demos/DataList/examples/DataList.md +191 -3119
- package/docs/demos/DescriptionList/examples/DescriptionList.md +126 -2322
- package/docs/demos/Drawer/examples/Drawer.md +210 -3870
- package/docs/demos/JumpLinks/examples/JumpLinks.md +252 -4644
- package/docs/demos/Masthead/examples/Masthead.md +144 -1962
- package/docs/demos/Modal/examples/Modal.md +252 -4644
- package/docs/demos/Nav/examples/Nav.md +336 -6192
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +231 -3891
- package/docs/demos/Page/examples/Page.md +378 -6966
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +426 -5550
- package/docs/demos/Skeleton/examples/Skeleton.md +42 -774
- package/docs/demos/Table/examples/Table.md +752 -11732
- package/docs/demos/Tabs/examples/Tabs.md +252 -4644
- package/docs/demos/Toolbar/examples/Toolbar.md +84 -1548
- package/docs/demos/Wizard/examples/Wizard.md +378 -6966
- package/package.json +1 -1
- package/patternfly-base-no-globals-theme-dark-unversioned.css +9 -6
- package/patternfly-base-no-globals.css +9 -6
- package/patternfly-base-theme-dark-unversioned.css +9 -6
- package/patternfly-base.css +9 -6
- package/patternfly-no-globals.css +342 -23
- package/patternfly-theme-dark-unversioned.css +342 -23
- package/patternfly.css +342 -23
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/placeholders.scss +4 -0
- package/sass-utilities/themes/dark/placeholders.scss +4 -0
- package/RELEASE-NOTES.md +0 -1815
- package/UPGRADE-GUIDE.md +0 -1298
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
--#{$pf-global}--link--Color: var(--#{$pf-global}--link--Color--light);
|
|
17
17
|
--#{$pf-global}--link--Color--hover: var(--#{$pf-global}--link--Color--light);
|
|
18
18
|
--#{$pf-global}--BackgroundColor--100: var(--#{$pf-global}--BackgroundColor--dark-100);
|
|
19
|
+
|
|
20
|
+
.#{$button} {
|
|
21
|
+
--#{$button}--m-primary--BackgroundColor: var(--#{$pf-global}--primary-color--dark-100);
|
|
22
|
+
}
|
|
19
23
|
}
|
|
20
24
|
|
|
21
25
|
// stylelint-disable
|
|
@@ -7,4 +7,8 @@
|
|
|
7
7
|
--#{$pf-global}--link--Color: #{$pf-v5-global--link--Color};
|
|
8
8
|
--#{$pf-global}--link--Color--hover: #{$pf-v5-global--link--Color--hover};
|
|
9
9
|
--#{$pf-global}--BackgroundColor--100: #{$pf-v5-global--BackgroundColor--100};
|
|
10
|
+
|
|
11
|
+
.#{$button} {
|
|
12
|
+
--#{$button}--m-primary--BackgroundColor: var(--#{$pf-global}--primary-color--300);
|
|
13
|
+
}
|
|
10
14
|
}
|