@patternfly/patternfly 6.5.0-prerelease.42 → 6.5.0-prerelease.43
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/components/Compass/compass.css +5 -5
- package/components/Compass/compass.scss +5 -4
- package/components/_index.css +5 -5
- package/docs/components/Compass/examples/Compass.md +1 -0
- package/docs/demos/Compass/examples/Compass.md +366 -330
- package/package.json +1 -1
- package/patternfly-no-globals.css +5 -5
- package/patternfly.css +5 -5
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
|
@@ -12893,10 +12893,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12893
12893
|
|
|
12894
12894
|
/* stylelint-disable */
|
|
12895
12895
|
@media (max-width: 1200px) {
|
|
12896
|
-
.pf-v6-c-compass
|
|
12897
|
-
display: none;
|
|
12898
|
-
}
|
|
12899
|
-
.pf-v6-c-compass {
|
|
12896
|
+
.pf-v6-c-compass:not(.pf-m-no-screen-warning) {
|
|
12900
12897
|
position: relative;
|
|
12901
12898
|
display: grid;
|
|
12902
12899
|
grid-template-columns: auto;
|
|
@@ -12904,7 +12901,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12904
12901
|
place-content: center;
|
|
12905
12902
|
gap: 0;
|
|
12906
12903
|
}
|
|
12907
|
-
.pf-v6-c-compass::after {
|
|
12904
|
+
.pf-v6-c-compass:not(.pf-m-no-screen-warning)::after {
|
|
12908
12905
|
padding: 1em;
|
|
12909
12906
|
border-radius: var(--pf-t--global--border--radius--large);
|
|
12910
12907
|
background: var(--pf-t--global--background--color--primary--default);
|
|
@@ -12916,6 +12913,9 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12916
12913
|
white-space: pre-wrap;
|
|
12917
12914
|
text-align: center;
|
|
12918
12915
|
}
|
|
12916
|
+
.pf-v6-c-compass:not(.pf-m-no-screen-warning) * {
|
|
12917
|
+
display: none;
|
|
12918
|
+
}
|
|
12919
12919
|
}
|
|
12920
12920
|
/* stylelint-enable */
|
|
12921
12921
|
:root {
|
package/patternfly.css
CHANGED
|
@@ -13040,10 +13040,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
13040
13040
|
|
|
13041
13041
|
/* stylelint-disable */
|
|
13042
13042
|
@media (max-width: 1200px) {
|
|
13043
|
-
.pf-v6-c-compass
|
|
13044
|
-
display: none;
|
|
13045
|
-
}
|
|
13046
|
-
.pf-v6-c-compass {
|
|
13043
|
+
.pf-v6-c-compass:not(.pf-m-no-screen-warning) {
|
|
13047
13044
|
position: relative;
|
|
13048
13045
|
display: grid;
|
|
13049
13046
|
grid-template-columns: auto;
|
|
@@ -13051,7 +13048,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
13051
13048
|
place-content: center;
|
|
13052
13049
|
gap: 0;
|
|
13053
13050
|
}
|
|
13054
|
-
.pf-v6-c-compass::after {
|
|
13051
|
+
.pf-v6-c-compass:not(.pf-m-no-screen-warning)::after {
|
|
13055
13052
|
padding: 1em;
|
|
13056
13053
|
border-radius: var(--pf-t--global--border--radius--large);
|
|
13057
13054
|
background: var(--pf-t--global--background--color--primary--default);
|
|
@@ -13063,6 +13060,9 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
13063
13060
|
white-space: pre-wrap;
|
|
13064
13061
|
text-align: center;
|
|
13065
13062
|
}
|
|
13063
|
+
.pf-v6-c-compass:not(.pf-m-no-screen-warning) * {
|
|
13064
|
+
display: none;
|
|
13065
|
+
}
|
|
13066
13066
|
}
|
|
13067
13067
|
/* stylelint-enable */
|
|
13068
13068
|
:root {
|