@ihk-gfi/lux-components-theme 14.7.0 → 15.0.0
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/README.md +13 -18
- package/package.json +6 -7
- package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
- package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-authentic.css +5524 -2566
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
- package/prebuilt-themes/luxtheme-green-min.css +1 -1
- package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-green.css +5553 -2922
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +40 -76
- package/src/authentic/_luxcommon.scss +14 -17
- package/src/authentic/luxtheme.scss +78 -86
- package/src/base/_luxcommon.scss +0 -8
- package/src/base/_luxcomponents.scss +12 -572
- package/src/base/_luxfocus.scss +7 -205
- package/src/base/_luxstyles.scss +16 -15
- package/src/base/_luxtheme.scss +13 -1
- package/src/base/components/_luxAppHeaderAc.scss +3 -2
- package/src/base/components/_luxButton.scss +143 -0
- package/src/base/components/_luxFormControlWrapper.scss +9 -13
- package/src/base/components/_luxFormControlsAuthentic.scss +19 -14
- package/src/base/components/_luxIcon.scss +41 -0
- package/src/base/components/_luxLinkPlain.scss +1 -4
- package/src/base/components/_luxTextbox.scss +1 -1
- package/src/base/components/_luxTileAc.scss +4 -12
- package/src/green/_custom.scss +37 -314
- package/src/green/_luxcommon.scss +11 -19
- package/src/green/luxtheme.scss +84 -87
- package/prebuilt-themes/luxtheme-blue-min.css +0 -1
- package/prebuilt-themes/luxtheme-blue-min.css.map +0 -1
- package/prebuilt-themes/luxtheme-blue.css +0 -9151
- package/prebuilt-themes/luxtheme-blue.css.map +0 -1
- package/src/blue/_custom.scss +0 -120
- package/src/blue/_luxcommon.scss +0 -101
- package/src/blue/_luxpalette.scss +0 -106
- package/src/blue/luxtheme.scss +0 -102
|
@@ -1,97 +1,89 @@
|
|
|
1
1
|
@use "luxpalette" as themePalette;
|
|
2
2
|
@use "../base/luxpalette" with (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
// Farbpaletten
|
|
4
|
+
$lux-palette_primary: themePalette.$lux-palette_primary,
|
|
5
|
+
$lux-palette_accent: themePalette.$lux-palette_accent,
|
|
6
|
+
$lux-palette_warn: themePalette.$lux-palette_warn,
|
|
7
|
+
|
|
8
|
+
// Hauptfarben
|
|
9
|
+
$lux-primary-color: themePalette.$lux-primary-color,
|
|
10
|
+
$lux-accent-color: themePalette.$lux-accent-color,
|
|
11
|
+
$lux-warn-color: themePalette.$lux-warn-color
|
|
12
12
|
);
|
|
13
13
|
|
|
14
14
|
@use "luxcommon" as themeCommon;
|
|
15
15
|
|
|
16
16
|
@use "../public/global";
|
|
17
17
|
|
|
18
|
-
@use "../base/luxcommon" with (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
88
|
-
$componentBgColors: themeCommon.$componentBgColors,
|
|
89
|
-
|
|
90
|
-
// Vordergrundfarben (z.B. Badge)
|
|
91
|
-
$componentFontColors: themeCommon.$componentFontColors,
|
|
92
|
-
|
|
93
|
-
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
94
|
-
$colorsForDarkBg: themeCommon.$colorsForDarkBg
|
|
18
|
+
@use "../base/luxcommon" with (
|
|
19
|
+
// Allgemein
|
|
20
|
+
$dark-primary-text: themeCommon.$dark-primary-text,
|
|
21
|
+
$dark-secondary-text: themeCommon.$dark-secondary-text,
|
|
22
|
+
$dark-disabled-text: themeCommon.$dark-disabled-text,
|
|
23
|
+
$dark-dividers: themeCommon.$dark-dividers,
|
|
24
|
+
$dark-focused: themeCommon.$dark-focused,
|
|
25
|
+
|
|
26
|
+
$light-primary-text: themeCommon.$light-primary-text,
|
|
27
|
+
$light-secondary-text: themeCommon.$light-secondary-text,
|
|
28
|
+
$light-disabled-text: themeCommon.$light-disabled-text,
|
|
29
|
+
$light-dividers: themeCommon.$light-dividers,
|
|
30
|
+
$light-focused: themeCommon.$light-focused,
|
|
31
|
+
|
|
32
|
+
// App
|
|
33
|
+
$app-header-bg: themeCommon.$app-header-bg,
|
|
34
|
+
$app-content-bg: themeCommon.$app-content-bg,
|
|
35
|
+
$app-footer-bg: themeCommon.$app-footer-bg,
|
|
36
|
+
$app-data-bg: themeCommon.$app-data-bg,
|
|
37
|
+
$app-gradient: themeCommon.$app-gradient,
|
|
38
|
+
$app-gradient-reverse: themeCommon.$app-gradient-reverse,
|
|
39
|
+
$app-border-color: themeCommon.$app-border-color,
|
|
40
|
+
$app-headline-font: themeCommon.$app-headline-font,
|
|
41
|
+
$app-font-family: themeCommon.$app-font-family,
|
|
42
|
+
|
|
43
|
+
// Form
|
|
44
|
+
$form-border-color: themeCommon.$form-border-color,
|
|
45
|
+
$form-control-font-size: themeCommon.$form-control-font-size,
|
|
46
|
+
$form-control-font-size-small: themeCommon.$form-control-font-size-small,
|
|
47
|
+
$form-control-buffer: themeCommon.$form-control-buffer,
|
|
48
|
+
|
|
49
|
+
// Button
|
|
50
|
+
$button-height: themeCommon.$button-height,
|
|
51
|
+
$button-fav-height: themeCommon.$button-fav-height,
|
|
52
|
+
$button-font-size: themeCommon.$button-font-size,
|
|
53
|
+
|
|
54
|
+
// Fokus
|
|
55
|
+
$outline-width: themeCommon.$outline-width,
|
|
56
|
+
$outline-style: themeCommon.$outline-style,
|
|
57
|
+
$outline-color-bright: themeCommon.$outline-color-bright,
|
|
58
|
+
$outline-color-dark: themeCommon.$outline-color-dark,
|
|
59
|
+
|
|
60
|
+
// Hover
|
|
61
|
+
$lux-hover-color: themeCommon.$lux-hover-color,
|
|
62
|
+
$lux-hover-color-for-dark-background: themeCommon.$lux-hover-color-for-dark-background,
|
|
63
|
+
|
|
64
|
+
// Selektion
|
|
65
|
+
$lux-selected-border-color: themeCommon.$lux-selected-border-color,
|
|
66
|
+
$lux-selected-bg-color: themeCommon.$lux-selected-bg-color,
|
|
67
|
+
|
|
68
|
+
// Stepper (large)
|
|
69
|
+
$lux-stepper-large-backdrop-bg: themeCommon.$lux-stepper-large-backdrop-bg,
|
|
70
|
+
$lux-stepper-large-completed-fc: themeCommon.$lux-stepper-large-completed-fc,
|
|
71
|
+
|
|
72
|
+
$lux-stepper-large-nav-item-active-fc: themeCommon.$lux-stepper-large-nav-item-active-fc,
|
|
73
|
+
$lux-stepper-large-nav-item-active-bg: themeCommon.$lux-stepper-large-nav-item-active-bg,
|
|
74
|
+
$lux-stepper-large-nav-item-disabled-fg: themeCommon.$lux-stepper-large-nav-item-disabled-fg,
|
|
75
|
+
$lux-stepper-large-nav-item-disabled-bg: themeCommon.$lux-stepper-large-nav-item-disabled-bg,
|
|
76
|
+
$lux-stepper-large-nav-item-completed-fg: themeCommon.$lux-stepper-large-nav-item-completed-fg,
|
|
77
|
+
$lux-stepper-large-nav-item-completed-bg: themeCommon.$lux-stepper-large-nav-item-completed-bg,
|
|
78
|
+
|
|
79
|
+
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
80
|
+
$componentBgColors: themeCommon.$componentBgColors,
|
|
81
|
+
|
|
82
|
+
// Vordergrundfarben (z.B. Badge)
|
|
83
|
+
$componentFontColors: themeCommon.$componentFontColors,
|
|
84
|
+
|
|
85
|
+
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
86
|
+
$colorsForDarkBg: themeCommon.$colorsForDarkBg
|
|
95
87
|
);
|
|
96
88
|
@use "../base/luxSvgIcons";
|
|
97
89
|
@use "../base/luxelevations";
|
package/src/base/_luxcommon.scss
CHANGED
|
@@ -24,17 +24,9 @@ $app-font-family: mustOverriden !default;
|
|
|
24
24
|
|
|
25
25
|
// Form
|
|
26
26
|
$form-border-color: mustOverriden !default;
|
|
27
|
-
$form-control-default-height-not-scalable: mustOverriden !default;
|
|
28
|
-
$form-control-height: mustOverriden !default;
|
|
29
|
-
$form-control-height-small: mustOverriden !default;
|
|
30
27
|
$form-control-font-size: mustOverriden !default;
|
|
31
28
|
$form-control-font-size-small: mustOverriden !default;
|
|
32
|
-
$form-control-label-padding: mustOverriden !default;
|
|
33
|
-
$form-control-container-padding: mustOverriden !default;
|
|
34
|
-
$form-control-misc-margin: mustOverriden !default;
|
|
35
|
-
$form-control-complete-height: mustOverriden !default;
|
|
36
29
|
$form-control-buffer: mustOverriden !default;
|
|
37
|
-
$form-control-margin: mustOverriden !default;
|
|
38
30
|
|
|
39
31
|
// Button
|
|
40
32
|
$button-height: mustOverriden !default;
|