@ihk-gfi/lux-components-theme 11.8.0 → 11.12.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/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue.css +455 -2
- package/prebuilt-themes/luxtheme-blue.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 +465 -12
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/prebuilt-themes/luxtheme-orange-min.css +1 -1
- package/prebuilt-themes/luxtheme-orange-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-orange.css +455 -2
- package/prebuilt-themes/luxtheme-orange.css.map +1 -1
- package/src/base/_luxcomponents.scss +528 -0
- package/src/base/_luxfocus.scss +27 -0
- package/src/base/_luxstyles.scss +8 -0
- package/src/blue/_luxcommon.scss +11 -0
- package/src/blue/luxtheme.scss +0 -1
- package/src/green/_custom.scss +1 -1
- package/src/green/_luxcommon.scss +11 -0
- package/src/green/luxtheme.scss +1 -3
- package/src/orange/_luxcommon.scss +11 -0
- package/src/orange/luxtheme.scss +0 -1
- package/src/base/_luxicons.scss +0 -2
package/src/base/_luxstyles.scss
CHANGED
|
@@ -269,10 +269,18 @@ lux-card.lux-card-grow {
|
|
|
269
269
|
display: none;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
+
.lux-display-none-important {
|
|
273
|
+
display: none !important;
|
|
274
|
+
}
|
|
275
|
+
|
|
272
276
|
.lux-hidden {
|
|
273
277
|
visibility: hidden;
|
|
274
278
|
}
|
|
275
279
|
|
|
280
|
+
.lux-hidden-important {
|
|
281
|
+
visibility: hidden !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
276
284
|
.lux-nowrap {
|
|
277
285
|
white-space: nowrap;
|
|
278
286
|
}
|
package/src/blue/_luxcommon.scss
CHANGED
|
@@ -41,6 +41,17 @@ $lux-hover-color-for-dark-background: #335c85;
|
|
|
41
41
|
$lux-selected-border-color: #0073b3;
|
|
42
42
|
$lux-selected-bg-color: #e2e8ee;
|
|
43
43
|
|
|
44
|
+
// Stepper (large)
|
|
45
|
+
$lux-stepper-large-backdrop-bg: #636d76;
|
|
46
|
+
$lux-stepper-large-completed-fc: #2E8533;
|
|
47
|
+
|
|
48
|
+
$lux-stepper-large-nav-item-active-fc: #ffffff;
|
|
49
|
+
$lux-stepper-large-nav-item-active-bg: #003366;
|
|
50
|
+
$lux-stepper-large-nav-item-disabled-fg: #003366;
|
|
51
|
+
$lux-stepper-large-nav-item-disabled-bg: #eff3f6;
|
|
52
|
+
$lux-stepper-large-nav-item-completed-fg: #ffffff;
|
|
53
|
+
$lux-stepper-large-nav-item-completed-bg: #2E8533;
|
|
54
|
+
|
|
44
55
|
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
45
56
|
$componentBgColors: (
|
|
46
57
|
"red": #b01211,
|
package/src/blue/luxtheme.scss
CHANGED
package/src/green/_custom.scss
CHANGED
|
@@ -41,6 +41,17 @@ $lux-hover-color-for-dark-background: #e3ebf5;
|
|
|
41
41
|
$lux-selected-border-color: #2E8533;
|
|
42
42
|
$lux-selected-bg-color: #E3EBF5;
|
|
43
43
|
|
|
44
|
+
// Stepper (large)
|
|
45
|
+
$lux-stepper-large-backdrop-bg: #636d76;
|
|
46
|
+
$lux-stepper-large-completed-fc: #2E8533;
|
|
47
|
+
|
|
48
|
+
$lux-stepper-large-nav-item-active-fc: #ffffff;
|
|
49
|
+
$lux-stepper-large-nav-item-active-bg: #003366;
|
|
50
|
+
$lux-stepper-large-nav-item-disabled-fg: #003366;
|
|
51
|
+
$lux-stepper-large-nav-item-disabled-bg: #eff3f6;
|
|
52
|
+
$lux-stepper-large-nav-item-completed-fg: #ffffff;
|
|
53
|
+
$lux-stepper-large-nav-item-completed-bg: #2E8533;
|
|
54
|
+
|
|
44
55
|
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
45
56
|
$componentBgColors: (
|
|
46
57
|
"red": #b01211,
|
package/src/green/luxtheme.scss
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
@import "luxpalette";
|
|
2
2
|
@import "../public/global";
|
|
3
|
-
$app-font-family: "Source
|
|
3
|
+
$app-font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
4
4
|
$outline-width: 1px;
|
|
5
5
|
@import "luxcommon";
|
|
6
6
|
@import "../base/luxcomponents";
|
|
7
7
|
$lux-hover-color: #e3ebf5;
|
|
8
8
|
@import "../base/luxfocus";
|
|
9
9
|
@import "../base/luxstyles";
|
|
10
|
-
@import "../base/luxicons";
|
|
11
10
|
@import "../../node_modules/@angular/material/theming";
|
|
12
11
|
@import "../base/luxtheme";
|
|
13
12
|
@import "custom";
|
|
14
|
-
|
|
@@ -41,6 +41,17 @@ $lux-hover-color-for-dark-background: #9b6100;
|
|
|
41
41
|
$lux-selected-border-color: #b3790b;
|
|
42
42
|
$lux-selected-bg-color: #f1e4bc;
|
|
43
43
|
|
|
44
|
+
// Stepper (large)
|
|
45
|
+
$lux-stepper-large-backdrop-bg: #636d76;
|
|
46
|
+
$lux-stepper-large-completed-fc: #2E8533;
|
|
47
|
+
|
|
48
|
+
$lux-stepper-large-nav-item-active-fc: #ffffff;
|
|
49
|
+
$lux-stepper-large-nav-item-active-bg: #003366;
|
|
50
|
+
$lux-stepper-large-nav-item-disabled-fg: #003366;
|
|
51
|
+
$lux-stepper-large-nav-item-disabled-bg: #eff3f6;
|
|
52
|
+
$lux-stepper-large-nav-item-completed-fg: #ffffff;
|
|
53
|
+
$lux-stepper-large-nav-item-completed-bg: #2E8533;
|
|
54
|
+
|
|
44
55
|
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
45
56
|
$componentBgColors: (
|
|
46
57
|
"red": #b01211,
|
package/src/orange/luxtheme.scss
CHANGED
package/src/base/_luxicons.scss
DELETED