@patternfly/patternfly 6.0.0-prerelease.2 → 6.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/assets/fontawesome/_animated.scss +1 -1
- package/assets/fontawesome/_bordered-pulled.scss +1 -1
- package/assets/fontawesome/_fixed-width.scss +4 -2
- package/assets/fontawesome/_icons.scss +1332 -1330
- package/assets/fontawesome/_index.scss +0 -1
- package/assets/fontawesome/_larger.scss +1 -1
- package/assets/fontawesome/_list.scss +1 -1
- package/assets/fontawesome/_rotated-flipped.scss +2 -2
- package/assets/fontawesome/_screen-reader.scss +1 -1
- package/assets/fontawesome/_stacked.scss +1 -1
- package/assets/fontawesome/_variables.scss +1 -2
- package/base/patternfly-common.scss +2 -1
- package/base/patternfly-fa-icons.css +2786 -1419
- package/base/patternfly-fa-icons.scss +25 -7
- package/base/patternfly-pf-icons.scss +1 -1
- package/components/Button/button.css +2 -2
- package/components/Button/button.scss +2 -3
- package/components/ClipboardCopy/clipboard-copy.css +0 -3
- package/components/ClipboardCopy/clipboard-copy.scss +0 -4
- package/components/_index.css +2 -5
- package/package.json +5 -5
- package/patternfly-base-no-globals.css +2786 -1419
- package/patternfly-base.css +2786 -1419
- package/patternfly-no-globals.css +2788 -1424
- package/patternfly.css +2788 -1424
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/patternfly.scss +3 -0
- package/sass-utilities/functions.scss +2 -2
- package/sass-utilities/mixins.scss +3 -3
- package/sass-utilities/namespaces-components.scss +2 -2
- package/sass-utilities/namespaces-layouts.scss +2 -2
- package/sass-utilities/scss-variables.scss +0 -1
- package/assets/fontawesome/_core.scss +0 -22
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Rotated & flipped icons
|
|
2
2
|
// -------------------------
|
|
3
|
-
@use './variables
|
|
4
|
-
@use './mixins
|
|
3
|
+
@use './variables' as *;
|
|
4
|
+
@use './mixins' as *;
|
|
5
5
|
|
|
6
6
|
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
|
|
7
7
|
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
// --------------------------
|
|
3
3
|
@use 'sass:math';
|
|
4
4
|
|
|
5
|
-
$fa-font-path: "../webfonts" !default;
|
|
6
5
|
$fa-font-size-base: 16px !default;
|
|
7
6
|
$fa-css-prefix: 'fa' !default;
|
|
8
7
|
$fa-version: "5.6.3" !default;
|
|
@@ -10,7 +9,7 @@ $fa-border-color: #eee !default;
|
|
|
10
9
|
$fa-inverse: #fff !default;
|
|
11
10
|
$fa-li-width: 2em !default;
|
|
12
11
|
$fa-fw-width: math.div(20em, 16);
|
|
13
|
-
|
|
12
|
+
$pf-v6-global--disable-fontawesome: false !default;
|
|
14
13
|
// Convenience function used to set content property
|
|
15
14
|
@function fa-content($fa-var) {
|
|
16
15
|
@return unquote("\"#{ $fa-var }\"");
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use '../sass-utilities' as *;
|
|
2
|
+
@use '../assets/fontawesome/variables' as *;
|
|
2
3
|
|
|
3
4
|
.#{$pf-prefix}screen-reader {
|
|
4
5
|
@include pf-v6-u-screen-reader; // for use with assistive technologies
|
|
@@ -63,6 +64,6 @@
|
|
|
63
64
|
--pf-t--global--duration--200: 0ms !important;
|
|
64
65
|
--pf-t--global--duration--100: 0ms !important;
|
|
65
66
|
--pf-t--global--duration--50: 0ms !important;
|
|
66
|
-
|
|
67
|
+
|
|
67
68
|
// stylelink-enable declaration-no-important
|
|
68
69
|
}
|