@patternfly/patternfly 6.0.0-alpha.79 → 6.0.0-alpha.80
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/CalendarMonth/calendar-month.css +61 -92
- package/components/CalendarMonth/calendar-month.scss +68 -63
- package/components/CodeEditor/code-editor.css +4 -0
- package/components/CodeEditor/code-editor.scss +5 -0
- package/components/DatePicker/date-picker.css +13 -14
- package/components/DatePicker/date-picker.scss +12 -16
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +48 -224
- package/docs/components/DatePicker/examples/DatePicker.md +5 -2
- package/package.json +1 -1
- package/patternfly-no-globals.css +80 -104
- package/patternfly-theme-dark-unversioned.css +80 -104
- package/patternfly.css +80 -104
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/CalendarMonth/themes/dark/calendar-month.scss +0 -37
- package/components/DatePicker/themes/dark/date-picker.scss +0 -8
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
@import "../../../../sass-utilities/themes/dark/all";
|
|
2
|
-
|
|
3
|
-
@mixin pf-v5-theme-dark-calendar-month() {
|
|
4
|
-
.#{$calendar-month} {
|
|
5
|
-
// calendar month background
|
|
6
|
-
--#{$calendar-month}--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
|
|
7
|
-
|
|
8
|
-
// dates
|
|
9
|
-
--#{$calendar-month}__dates-cell--m-current__date--BackgroundColor: var(--#{$pf-global}--palette--black-500);
|
|
10
|
-
--#{$calendar-month}__dates-cell--m-selected__date--BackgroundColor: var(--#{$pf-global}--primary-color--300);
|
|
11
|
-
--#{$calendar-month}__dates-cell--m-selected__date--Color: var(--#{$pf-global}--primary-color--400);
|
|
12
|
-
--#{$calendar-month}__dates-cell--m-selected__date--hover--BackgroundColor: var(--#{$pf-global}--palette--black-900);
|
|
13
|
-
--#{$calendar-month}__dates-cell--m-selected__date--focus--BackgroundColor: var(--#{$pf-global}--palette--blue-400);
|
|
14
|
-
--#{$calendar-month}__dates-cell--m-in-range--before--BackgroundColor: var(--#{$pf-global}--BackgroundColor--200);
|
|
15
|
-
--#{$calendar-month}__dates-cell--m-in-range__date--hover--BackgroundColor: var(--#{$pf-global}--BackgroundColor--200);
|
|
16
|
-
--#{$calendar-month}__dates-cell--m-in-range__date--focus--BackgroundColor: var(--#{$pf-global}--BackgroundColor--200);
|
|
17
|
-
--#{$calendar-month}__date--hover--BackgroundColor: var(--#{$pf-global}--BackgroundColor--200);
|
|
18
|
-
--#{$calendar-month}__date--focus--BackgroundColor: var(--#{$pf-global}--BackgroundColor--200);
|
|
19
|
-
--#{$calendar-month}__date--focus--after--BorderColor: transparent;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.#{$calendar-month}__date {
|
|
23
|
-
&:hover,
|
|
24
|
-
&.pf-m-hover {
|
|
25
|
-
--#{$calendar-month}__date--after--BorderColor: var(--#{$pf-global}--BorderColor--100);
|
|
26
|
-
--#{$calendar-month}__date--after--BorderWidth: var(--#{$pf-global}--BorderWidth--sm);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&:focus,
|
|
30
|
-
&.pf-m-focus {
|
|
31
|
-
--#{$calendar-month}__date--after--BorderColor: var(--#{$pf-global}--active-color--100);
|
|
32
|
-
--#{$calendar-month}__date--after--BorderWidth: var(--#{$pf-global}--BorderWidth--sm);
|
|
33
|
-
--#{$calendar-month}__date--BackgroundColor: var(--#{$pf-global}--primary-color--300);
|
|
34
|
-
--#{$calendar-month}__date--Color: var(--#{$pf-global}--primary-color--400);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|