@ihk-gfi/lux-components-theme 14.6.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 +5561 -2555
- 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 +5602 -2917
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +47 -81
- 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 +41 -558
- 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 +4 -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/_luxMasterDetailAc.scss +27 -21
- package/src/base/components/_luxTextbox.scss +1 -1
- package/src/base/components/_luxTileAc.scss +4 -12
- package/src/green/_custom.scss +44 -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 -9103
- 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,20 +1,20 @@
|
|
|
1
1
|
// Allgemein
|
|
2
2
|
$dark-primary-text: #003366;
|
|
3
3
|
$dark-secondary-text: #003366;
|
|
4
|
-
$dark-disabled-text: #
|
|
5
|
-
$dark-dividers: rgba(black, 0.
|
|
4
|
+
$dark-disabled-text: #636d76;
|
|
5
|
+
$dark-dividers: rgba(black, 0.2);
|
|
6
6
|
$dark-focused: rgba(black, 0.12);
|
|
7
7
|
|
|
8
8
|
$light-primary-text: white;
|
|
9
9
|
$light-secondary-text: rgba(white, 0.7);
|
|
10
10
|
$light-disabled-text: rgba(white, 0.5);
|
|
11
|
-
$light-dividers: #
|
|
11
|
+
$light-dividers: #e3ebf5;
|
|
12
12
|
$light-focused: rgba(white, 0.12);
|
|
13
13
|
|
|
14
14
|
// App
|
|
15
15
|
$app-header-bg: #ffffff;
|
|
16
16
|
$app-content-bg: #ffffff;
|
|
17
|
-
$app-footer-bg: #
|
|
17
|
+
$app-footer-bg: #e3ebf5;
|
|
18
18
|
$app-data-bg: #ffffff;
|
|
19
19
|
$app-gradient: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
|
|
20
20
|
$app-gradient-reverse: linear-gradient(270deg, #ffffff 0%, #f8fbff 100%);
|
|
@@ -24,17 +24,9 @@ $app-font-family: Roboto, Helvetica Neue, sans-serif;
|
|
|
24
24
|
|
|
25
25
|
// Form
|
|
26
26
|
$form-border-color: rgba(0, 0, 0, 0.42);
|
|
27
|
-
$form-control-default-height-not-scalable: 40px;
|
|
28
|
-
$form-control-height: 24px;
|
|
29
|
-
$form-control-height-small: 18px;
|
|
30
27
|
$form-control-font-size: 15px;
|
|
31
28
|
$form-control-font-size-small: 12px;
|
|
32
|
-
$form-control-label-padding: 2px 0 4px 0;
|
|
33
|
-
$form-control-container-padding: 10px 5px 10px 5px;
|
|
34
|
-
$form-control-misc-margin: 4px 0 2px 0;
|
|
35
|
-
$form-control-complete-height: 84px;
|
|
36
29
|
$form-control-buffer: 6px;
|
|
37
|
-
$form-control-margin: 0px;
|
|
38
30
|
|
|
39
31
|
// Button
|
|
40
32
|
$button-height: 45px;
|
|
@@ -52,34 +44,34 @@ $lux-hover-color: #e3ebf5;
|
|
|
52
44
|
$lux-hover-color-for-dark-background: #e3ebf5;
|
|
53
45
|
|
|
54
46
|
// Selektion
|
|
55
|
-
$lux-selected-border-color: #
|
|
56
|
-
$lux-selected-bg-color: #
|
|
47
|
+
$lux-selected-border-color: #2e8533;
|
|
48
|
+
$lux-selected-bg-color: #e3ebf5;
|
|
57
49
|
|
|
58
50
|
// Stepper (large)
|
|
59
51
|
$lux-stepper-large-backdrop-bg: #636d76;
|
|
60
|
-
$lux-stepper-large-completed-fc: #
|
|
52
|
+
$lux-stepper-large-completed-fc: #2e8533;
|
|
61
53
|
|
|
62
54
|
$lux-stepper-large-nav-item-active-fc: #ffffff;
|
|
63
55
|
$lux-stepper-large-nav-item-active-bg: #003366;
|
|
64
56
|
$lux-stepper-large-nav-item-disabled-fg: #003366;
|
|
65
57
|
$lux-stepper-large-nav-item-disabled-bg: #eff3f6;
|
|
66
58
|
$lux-stepper-large-nav-item-completed-fg: #ffffff;
|
|
67
|
-
$lux-stepper-large-nav-item-completed-bg: #
|
|
59
|
+
$lux-stepper-large-nav-item-completed-bg: #2e8533;
|
|
68
60
|
|
|
69
61
|
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
70
62
|
$componentBgColors: (
|
|
71
63
|
"red": #db272e,
|
|
72
64
|
"green": #56bd66,
|
|
73
|
-
"purple": #
|
|
65
|
+
"purple": #9900b8,
|
|
74
66
|
"blue": #003366,
|
|
75
|
-
"gray": #
|
|
67
|
+
"gray": #636d76,
|
|
76
68
|
"orange": #c75000,
|
|
77
69
|
"brown": #783f04,
|
|
78
70
|
"black": black,
|
|
79
71
|
"white": #ffffff,
|
|
80
72
|
"yellow": rgba(244, 203, 37, 1),
|
|
81
73
|
"pink": #ea515a,
|
|
82
|
-
"lightblue":
|
|
74
|
+
"lightblue": rgba(63, 155, 218, 1)
|
|
83
75
|
);
|
|
84
76
|
|
|
85
77
|
// Vordergrundfarben (z.B. Badge)
|
package/src/green/luxtheme.scss
CHANGED
|
@@ -1,98 +1,95 @@
|
|
|
1
1
|
@use "../public/global" with (
|
|
2
|
-
|
|
2
|
+
$app-font-family: (
|
|
3
|
+
"Source Sans Pro",
|
|
4
|
+
Helvetica,
|
|
5
|
+
Arial,
|
|
6
|
+
sans-serif
|
|
7
|
+
)
|
|
3
8
|
);
|
|
4
9
|
|
|
5
10
|
@use "luxpalette" as themePalette;
|
|
6
11
|
@use "../base/luxpalette" with (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
// Farbpaletten
|
|
13
|
+
$lux-palette_primary: themePalette.$lux-palette_primary,
|
|
14
|
+
$lux-palette_accent: themePalette.$lux-palette_accent,
|
|
15
|
+
$lux-palette_warn: themePalette.$lux-palette_warn,
|
|
16
|
+
|
|
17
|
+
// Hauptfarben
|
|
18
|
+
$lux-primary-color: themePalette.$lux-primary-color,
|
|
19
|
+
$lux-accent-color: themePalette.$lux-accent-color,
|
|
20
|
+
$lux-warn-color: themePalette.$lux-warn-color
|
|
16
21
|
);
|
|
17
22
|
|
|
18
23
|
@use "luxcommon" as themeCommon;
|
|
19
|
-
@use "../base/luxcommon" with (
|
|
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
|
-
|
|
88
|
-
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
89
|
-
$componentBgColors: themeCommon.$componentBgColors,
|
|
90
|
-
|
|
91
|
-
// Vordergrundfarben (z.B. Badge)
|
|
92
|
-
$componentFontColors: themeCommon.$componentFontColors,
|
|
93
|
-
|
|
94
|
-
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
95
|
-
$colorsForDarkBg: themeCommon.$colorsForDarkBg
|
|
24
|
+
@use "../base/luxcommon" with (
|
|
25
|
+
// Allgemein
|
|
26
|
+
$dark-primary-text: themeCommon.$dark-primary-text,
|
|
27
|
+
$dark-secondary-text: themeCommon.$dark-secondary-text,
|
|
28
|
+
$dark-disabled-text: themeCommon.$dark-disabled-text,
|
|
29
|
+
$dark-dividers: themeCommon.$dark-dividers,
|
|
30
|
+
$dark-focused: themeCommon.$dark-focused,
|
|
31
|
+
|
|
32
|
+
$light-primary-text: themeCommon.$light-primary-text,
|
|
33
|
+
$light-secondary-text: themeCommon.$light-secondary-text,
|
|
34
|
+
$light-disabled-text: themeCommon.$light-disabled-text,
|
|
35
|
+
$light-dividers: themeCommon.$light-dividers,
|
|
36
|
+
$light-focused: themeCommon.$light-focused,
|
|
37
|
+
|
|
38
|
+
// App
|
|
39
|
+
$app-header-bg: themeCommon.$app-header-bg,
|
|
40
|
+
$app-content-bg: themeCommon.$app-content-bg,
|
|
41
|
+
$app-footer-bg: themeCommon.$app-footer-bg,
|
|
42
|
+
$app-data-bg: themeCommon.$app-data-bg,
|
|
43
|
+
$app-gradient: themeCommon.$app-gradient,
|
|
44
|
+
$app-gradient-reverse: themeCommon.$app-gradient-reverse,
|
|
45
|
+
$app-border-color: themeCommon.$app-border-color,
|
|
46
|
+
$app-headline-font: themeCommon.$app-headline-font,
|
|
47
|
+
$app-font-family: themeCommon.$app-font-family,
|
|
48
|
+
|
|
49
|
+
// Form
|
|
50
|
+
$form-border-color: themeCommon.$form-border-color,
|
|
51
|
+
$form-control-font-size: themeCommon.$form-control-font-size,
|
|
52
|
+
$form-control-font-size-small: themeCommon.$form-control-font-size-small,
|
|
53
|
+
$form-control-buffer: themeCommon.$form-control-buffer,
|
|
54
|
+
|
|
55
|
+
// Button
|
|
56
|
+
$button-height: themeCommon.$button-height,
|
|
57
|
+
$button-fav-height: themeCommon.$button-fav-height,
|
|
58
|
+
$button-font-size: themeCommon.$button-font-size,
|
|
59
|
+
|
|
60
|
+
// Fokus
|
|
61
|
+
$outline-width: themeCommon.$outline-width,
|
|
62
|
+
$outline-style: themeCommon.$outline-style,
|
|
63
|
+
$outline-color-bright: themeCommon.$outline-color-bright,
|
|
64
|
+
$outline-color-dark: themeCommon.$outline-color-dark,
|
|
65
|
+
|
|
66
|
+
// Hover
|
|
67
|
+
$lux-hover-color: themeCommon.$lux-hover-color,
|
|
68
|
+
$lux-hover-color-for-dark-background: themeCommon.$lux-hover-color-for-dark-background,
|
|
69
|
+
|
|
70
|
+
// Selektion
|
|
71
|
+
$lux-selected-border-color: themeCommon.$lux-selected-border-color,
|
|
72
|
+
$lux-selected-bg-color: themeCommon.$lux-selected-bg-color,
|
|
73
|
+
|
|
74
|
+
// Stepper (large)
|
|
75
|
+
$lux-stepper-large-backdrop-bg: themeCommon.$lux-stepper-large-backdrop-bg,
|
|
76
|
+
$lux-stepper-large-completed-fc: themeCommon.$lux-stepper-large-completed-fc,
|
|
77
|
+
|
|
78
|
+
$lux-stepper-large-nav-item-active-fc: themeCommon.$lux-stepper-large-nav-item-active-fc,
|
|
79
|
+
$lux-stepper-large-nav-item-active-bg: themeCommon.$lux-stepper-large-nav-item-active-bg,
|
|
80
|
+
$lux-stepper-large-nav-item-disabled-fg: themeCommon.$lux-stepper-large-nav-item-disabled-fg,
|
|
81
|
+
$lux-stepper-large-nav-item-disabled-bg: themeCommon.$lux-stepper-large-nav-item-disabled-bg,
|
|
82
|
+
$lux-stepper-large-nav-item-completed-fg: themeCommon.$lux-stepper-large-nav-item-completed-fg,
|
|
83
|
+
$lux-stepper-large-nav-item-completed-bg: themeCommon.$lux-stepper-large-nav-item-completed-bg,
|
|
84
|
+
|
|
85
|
+
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
86
|
+
$componentBgColors: themeCommon.$componentBgColors,
|
|
87
|
+
|
|
88
|
+
// Vordergrundfarben (z.B. Badge)
|
|
89
|
+
$componentFontColors: themeCommon.$componentFontColors,
|
|
90
|
+
|
|
91
|
+
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
92
|
+
$colorsForDarkBg: themeCommon.$colorsForDarkBg
|
|
96
93
|
);
|
|
97
94
|
@use "../base/luxSvgIcons";
|
|
98
95
|
@use "../base/luxelevations";
|