@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/patternfly.scss CHANGED
@@ -5,11 +5,9 @@
5
5
  @use './components';
6
6
  @use './layouts';
7
7
 
8
- :where(.pf-v6-theme-glass) {
9
- // custom stuff for the POC
10
- .pf-v6-c-login, body { // needs to go on 'body' because drawers with a nested page component
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
- .pf-v6-c-login, body { // needs to go on 'body' because drawers with a nested page component
21
- // background-image: url("./assets/images/compass--wallpaper-dark.jpg");
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
  }