@patternfly/patternfly 6.0.0-prerelease.3 → 6.0.0-prerelease.5
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/base/patternfly-variables.css +3 -0
- package/base/tokens/tokens-local.scss +3 -0
- package/components/Accordion/accordion.css +2 -2
- package/components/Accordion/accordion.scss +4 -3
- package/components/CalendarMonth/calendar-month.css +1 -1
- package/components/CalendarMonth/calendar-month.scss +1 -1
- package/components/Card/card.css +1 -1
- package/components/Card/card.scss +1 -1
- package/components/Check/check.css +1 -1
- package/components/Check/check.scss +1 -1
- package/components/ClipboardCopy/clipboard-copy.css +3 -3
- package/components/ClipboardCopy/clipboard-copy.scss +3 -3
- package/components/CodeEditor/code-editor.css +1 -1
- package/components/CodeEditor/code-editor.scss +1 -1
- package/components/DescriptionList/description-list.css +6 -6
- package/components/DescriptionList/description-list.scss +6 -6
- package/components/Drawer/drawer.css +1 -1
- package/components/Drawer/drawer.scss +1 -1
- package/components/DualListSelector/dual-list-selector.css +1 -1
- package/components/DualListSelector/dual-list-selector.scss +1 -1
- package/components/FileUpload/file-upload.css +1 -1
- package/components/FileUpload/file-upload.scss +1 -1
- package/components/Form/form.css +9 -15
- package/components/Form/form.scss +9 -17
- package/components/FormControl/form-control.css +2 -2
- package/components/FormControl/form-control.scss +2 -2
- package/components/InputGroup/input-group.css +1 -1
- package/components/InputGroup/input-group.scss +1 -1
- package/components/Label/label.css +1 -1
- package/components/Label/label.scss +1 -1
- package/components/_index.css +31 -37
- package/package.json +5 -5
- package/patternfly-base-no-globals.css +2789 -1419
- package/patternfly-base.css +2789 -1419
- package/patternfly-no-globals.css +2820 -1456
- package/patternfly.css +2820 -1456
- 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
package/patternfly.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// PatternFly functions
|
|
2
2
|
// --------------------------------------------------
|
|
3
|
-
@use '../sass-utilities/scss-variables
|
|
4
|
-
@use '../sass-utilities/init
|
|
3
|
+
@use '../sass-utilities/scss-variables' as *;
|
|
4
|
+
@use '../sass-utilities/init' as *;
|
|
5
5
|
@use 'sass:math';
|
|
6
6
|
|
|
7
7
|
// Transform px to rems
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@use '../sass-utilities/functions
|
|
2
|
-
@use '../sass-utilities/init
|
|
3
|
-
@use '../sass-utilities/scss-variables
|
|
1
|
+
@use '../sass-utilities/functions' as *;
|
|
2
|
+
@use '../sass-utilities/init' as *;
|
|
3
|
+
@use '../sass-utilities/scss-variables' as *;
|
|
4
4
|
|
|
5
5
|
// Media query used to create responsive classes
|
|
6
6
|
@mixin pf-v6-media-query($point) {
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
$pf-v6-global--enable-reset: true !default;
|
|
9
9
|
$pf-v6-global--enable-normalize: true !default;
|
|
10
10
|
$pf-v6-global--enable-fontawesome-cdn: false !default;
|
|
11
|
-
$pf-v6-global--disable-fontawesome: false !default;
|
|
12
11
|
|
|
13
12
|
// Patternfly uses the default root size of the browser, it assumes a 16px base
|
|
14
13
|
// since most browser root size is 16. This variables is just to make the
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
// Base class definition
|
|
2
|
-
// -------------------------
|
|
3
|
-
@use './variables.scss' as *;
|
|
4
|
-
@use './mixins.scss' as *;
|
|
5
|
-
|
|
6
|
-
.#{$fa-css-prefix},
|
|
7
|
-
.fas,
|
|
8
|
-
.far,
|
|
9
|
-
.fal,
|
|
10
|
-
.fab {
|
|
11
|
-
-moz-osx-font-smoothing: grayscale;
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
display: inline-block;
|
|
14
|
-
font-style: normal;
|
|
15
|
-
font-variant: normal;
|
|
16
|
-
text-rendering: auto;
|
|
17
|
-
line-height: 1;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
%fa-icon {
|
|
21
|
-
@include fa-icon;
|
|
22
|
-
}
|