@patternfly/patternfly 6.0.0-alpha.10 → 6.0.0-alpha.12
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/Drawer/drawer.css +0 -1
- package/components/Drawer/drawer.scss +2 -1
- package/components/Page/page.css +51 -160
- package/components/Page/page.scss +53 -147
- package/components/Table/table.css +1 -11
- package/components/Table/table.scss +1 -11
- package/docs/components/Page/examples/Page.css +0 -8
- package/docs/components/Page/examples/Page.md +22 -21
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -0
- package/package.json +1 -1
- package/patternfly-no-globals.css +101 -306
- package/patternfly-theme-dark-unversioned.css +101 -306
- package/patternfly.css +101 -306
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/Page/themes/dark/page.scss +0 -69
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
@import "../../../../sass-utilities/themes/dark/all";
|
|
2
|
-
|
|
3
|
-
@mixin pf-v5-theme-dark-page() {
|
|
4
|
-
&:root {
|
|
5
|
-
--#{$page}__main-section--BackgroundColor: var(--#{$pf-global}--BackgroundColor--200);
|
|
6
|
-
--#{$page}__header-tools--c-button--m-selected--before--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
7
|
-
--#{$page}__sidebar--BackgroundColor: var(--#{$pf-global}--BackgroundColor--100);
|
|
8
|
-
--#{$page}__header--BackgroundColor: var(--#{$pf-global}--palette--black-1000);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.#{$page}__header-tools-item {
|
|
12
|
-
&.pf-m-selected {
|
|
13
|
-
.#{$button} {
|
|
14
|
-
color: var(--#{$pf-global}--Color--100);
|
|
15
|
-
|
|
16
|
-
// stylelint-disable
|
|
17
|
-
.#{$notification-badge} {
|
|
18
|
-
&:hover {
|
|
19
|
-
&::before {
|
|
20
|
-
background-color: var(--#{$page}__header-tools--c-button--m-selected--before--BackgroundColor);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
// stylelint-enable
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.#{$page}__sidebar {
|
|
30
|
-
border-inline-end: var(--#{$pf-global}--BorderWidth--sm) solid var(--#{$pf-global}--BorderColor--100);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.#{$page}__main-nav {
|
|
34
|
-
&.pf-m-sticky-top,
|
|
35
|
-
&.pf-m-sticky-bottom {
|
|
36
|
-
--#{$page}__main-nav--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.#{$page}__main-breadcrumb {
|
|
41
|
-
&.pf-m-sticky-top,
|
|
42
|
-
&.pf-m-sticky-bottom {
|
|
43
|
-
--#{$page}__main-breadcrumb--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.#{$page}__main-group {
|
|
48
|
-
&.pf-m-sticky-top,
|
|
49
|
-
&.pf-m-sticky-bottom {
|
|
50
|
-
--#{$page}__main-section--m-light--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
51
|
-
--#{$page}__main-section--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
52
|
-
--#{$page}__main-breadcrumb--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
53
|
-
--#{$page}__main-nav--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.#{$page}__main-section {
|
|
58
|
-
&.pf-m-sticky-top,
|
|
59
|
-
&.pf-m-sticky-bottom {
|
|
60
|
-
--#{$page}__main-section--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.#{$page}__sidebar-body.pf-m-menu .#{$context-selector},
|
|
65
|
-
.#{$page}__main-section[class*="pf-m-dark-"],
|
|
66
|
-
.#{$page}__header {
|
|
67
|
-
@include pf-v5-theme-dark--t-dark;
|
|
68
|
-
}
|
|
69
|
-
}
|