@patternfly/patternfly 4.164.2 → 4.165.1
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/_base.scss +2 -0
- package/base/_fa-icons.scss +2 -0
- package/base/_fonts.scss +2 -2
- package/components/ExpandableSection/expandable-section.css +6 -0
- package/components/ExpandableSection/expandable-section.scss +9 -0
- package/components/Label/label.css +37 -0
- package/components/Label/label.scss +43 -0
- package/components/LogViewer/log-viewer.css +17 -15
- package/components/LogViewer/log-viewer.scss +17 -20
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +22 -0
- package/docs/components/Label/examples/Label.md +102 -41
- package/docs/components/LabelGroup/examples/LabelGroup.md +98 -73
- package/docs/components/NotificationBadge/examples/NotificationBadge.css +3 -0
- package/docs/components/NotificationBadge/examples/NotificationBadge.md +132 -108
- package/docs/demos/Card/examples/Card.md +22 -0
- package/docs/demos/Tabs/examples/Tabs.md +2 -0
- package/docs/pages/contribution.md +1 -1
- package/layouts/_all.scss +7 -7
- package/package.json +1 -1
- package/patternfly-no-reset.css +60 -15
- package/patternfly.css +60 -15
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/bs-variables.scss +2 -3
- package/sass-utilities/functions.scss +0 -1
- package/sass-utilities/mixins.scss +5 -5
- package/sass-utilities/scss-variables.scss +1 -1
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@import "./all";
|
|
2
2
|
|
|
3
|
-
//
|
|
3
|
+
// stylelint-disable
|
|
4
|
+
|
|
4
5
|
// Bootstrap overwrite
|
|
5
|
-
//
|
|
6
6
|
// Bootstrap overwrites from patternfly variables
|
|
7
7
|
|
|
8
8
|
// Colors
|
|
9
|
-
// stylelint-disable
|
|
10
9
|
$white: $pf-color-white !default;
|
|
11
10
|
$gray-100: $pf-color-black-100 !default;
|
|
12
11
|
$gray-200: $pf-color-black-200 !default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Media query used to create responsive classes
|
|
2
2
|
@mixin pf-media-query($point) {
|
|
3
|
-
@if $point == "" or $point
|
|
3
|
+
@if $point == "" or not $point or $point == "base" {
|
|
4
4
|
@content;
|
|
5
5
|
}
|
|
6
6
|
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
// @parameter: {Suffix} xs, sm, md, lg, xl, base or null
|
|
42
42
|
// @usage: @include pf-utility-builder(class-name, base sm md lg xl);
|
|
43
43
|
// ===============================================================================================
|
|
44
|
-
|
|
44
|
+
|
|
45
45
|
// ## Example sass map:
|
|
46
46
|
// this must be used when order matters or a cluster of similar utilties need to overwrite each other
|
|
47
|
-
|
|
47
|
+
|
|
48
48
|
// Justify content options
|
|
49
49
|
// $pf-u-flex-options: (
|
|
50
50
|
// flex-none: (flex none),
|
|
51
51
|
// flex-1: (flex 1)
|
|
52
52
|
// );
|
|
53
|
-
|
|
53
|
+
|
|
54
54
|
// non-responsive, base only @include pf-utility-builder($sass-map)
|
|
55
55
|
// responsive, including all breakpoints @include pf-utility-builder($sass-map, $pf-global--breakpoint-list)
|
|
56
|
-
|
|
56
|
+
|
|
57
57
|
// ## Passing individual utilities values
|
|
58
58
|
// ===============================================================================================
|
|
59
59
|
// Example individual utility:
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// `$pf-global--concept--PropiertyCamelCase--modifier--state`
|
|
6
6
|
|
|
7
7
|
// Patternfly options
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
// Quickly modify global styling by enabling or disabling optional features.
|
|
10
10
|
$pf-global--enable-reset: true !default;
|
|
11
11
|
$pf-global--enable-font-overpass-cdn: false !default;
|