@patternfly/patternfly 4.165.0 → 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.
@@ -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,4 +1,3 @@
1
- //
2
1
  // PatternFly functions
3
2
  // --------------------------------------------------
4
3
  @import "./div";
@@ -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 == null or $point == "base" {
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;