@patternfly/patternfly 6.5.0-prerelease.72 → 6.5.0-prerelease.74
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/images/Felt-Bkg-Generic-Dark.svg +82 -0
- package/assets/images/Felt-Bkg-Generic-Light.svg +82 -0
- package/assets/images/PF-Bkg-Generic-Dark.svg +76 -0
- package/assets/images/PF-Bkg-Generic-Light.svg +74 -0
- package/components/Drawer/drawer.css +4 -2
- package/components/Drawer/drawer.scss +4 -2
- package/components/Masthead/masthead.css +0 -1
- package/components/Masthead/masthead.scss +0 -1
- package/components/Page/page.css +47 -2
- package/components/Page/page.scss +34 -2
- package/components/_index.css +51 -5
- package/docs/components/Drawer/examples/Drawer.md +60 -0
- package/docs/demos/Compass/examples/Compass.md +5 -35
- package/package.json +1 -1
- package/patternfly-no-globals.css +78 -9
- package/patternfly.css +78 -9
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/patternfly.scss +37 -8
package/patternfly.scss
CHANGED
|
@@ -5,11 +5,9 @@
|
|
|
5
5
|
@use './components';
|
|
6
6
|
@use './layouts';
|
|
7
7
|
|
|
8
|
-
:where(.pf-v6-theme-glass) {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
// background-image: url("./assets/images/compass--wallpaper-light.jpg");
|
|
12
|
-
background-image: url("./assets/images/glass-brand-light.jpg");
|
|
8
|
+
:root:where(.pf-v6-theme-glass) {
|
|
9
|
+
body {
|
|
10
|
+
background-image: url("./assets/images/PF-Bkg-Generic-Light.svg");
|
|
13
11
|
background-repeat: no-repeat;
|
|
14
12
|
background-attachment: fixed;
|
|
15
13
|
background-position: center;
|
|
@@ -17,9 +15,40 @@
|
|
|
17
15
|
}
|
|
18
16
|
|
|
19
17
|
&:where(.pf-v6-theme-dark) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
background-image: url("./assets/images/glass-brand-dark.jpg");
|
|
18
|
+
body {
|
|
19
|
+
background-image: url("./assets/images/PF-Bkg-Generic-Dark.svg");
|
|
23
20
|
}
|
|
24
21
|
}
|
|
22
|
+
|
|
23
|
+
&:where(.pf-v6-theme-redhat) {
|
|
24
|
+
body {
|
|
25
|
+
background-image: url("./assets/images/Felt-Bkg-Generic-Light.svg");
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:where(.pf-v6-theme-redhat.pf-v6-theme-dark) {
|
|
30
|
+
body {
|
|
31
|
+
background-image: url("./assets/images/Felt-Bkg-Generic-Dark.svg");
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.pf-v6-c-compass {
|
|
37
|
+
background-image: url("./assets/images/PF-Bkg-Generic-Light.svg");
|
|
38
|
+
background-repeat: no-repeat;
|
|
39
|
+
background-attachment: fixed;
|
|
40
|
+
background-position: center;
|
|
41
|
+
background-size: cover;
|
|
42
|
+
|
|
43
|
+
:root:where(.pf-v6-theme-dark) & {
|
|
44
|
+
background-image: url("./assets/images/PF-Bkg-Generic-Dark.svg");
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
:root:where(.pf-v6-theme-redhat) & {
|
|
48
|
+
background-image: url("./assets/images/Felt-Bkg-Generic-Light.svg");
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
:root:where(.pf-v6-theme-redhat.pf-v6-theme-dark) & {
|
|
52
|
+
background-image: url("./assets/images/Felt-Bkg-Generic-Dark.svg");
|
|
53
|
+
}
|
|
25
54
|
}
|