@ihk-gfi/lux-components-theme 14.3.0 → 14.4.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/package.json +1 -1
- 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 +194 -62
- package/prebuilt-themes/luxtheme-authentic.css.map +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 +154 -44
- 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 +597 -94
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +141 -133
- package/src/base/_luxfocus.scss +52 -51
- package/src/base/components/_luxFormControlWrapper.scss +17 -25
- package/src/base/components/_luxFormControlsAuthentic.scss +35 -21
- package/src/base/components/_luxTileAc.scss +10 -11
- package/src/blue/_custom.scss +21 -11
- package/src/green/_custom.scss +346 -70
- package/src/green/luxtheme.scss +2 -1
|
@@ -5,9 +5,8 @@
|
|
|
5
5
|
@use "../../public/global";
|
|
6
6
|
@use "../luxelevations";
|
|
7
7
|
|
|
8
|
-
|
|
9
8
|
lux-tile-ac {
|
|
10
|
-
.mat-card.lux-tile-ac {
|
|
9
|
+
.mat-card.lux-tile-ac {
|
|
11
10
|
box-sizing: border-box;
|
|
12
11
|
display: flex;
|
|
13
12
|
height: 100%;
|
|
@@ -16,10 +15,10 @@ lux-tile-ac {
|
|
|
16
15
|
background-image: luxcommon.$app-gradient;
|
|
17
16
|
border: 1px solid rgba(black, 0.12);
|
|
18
17
|
font-size: 16px;
|
|
19
|
-
|
|
18
|
+
|
|
20
19
|
.lux-tile-icon {
|
|
21
20
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
22
|
-
lux-icon {
|
|
21
|
+
lux-icon {
|
|
23
22
|
width: 2em;
|
|
24
23
|
height: 2em;
|
|
25
24
|
i,
|
|
@@ -33,7 +32,7 @@ lux-tile-ac {
|
|
|
33
32
|
}
|
|
34
33
|
}
|
|
35
34
|
}
|
|
36
|
-
|
|
35
|
+
|
|
37
36
|
.lux-tile-header-titel-ac {
|
|
38
37
|
mat-card-title {
|
|
39
38
|
color: luxcommon.$dark-primary-text;
|
|
@@ -41,23 +40,23 @@ lux-tile-ac {
|
|
|
41
40
|
font-size: 20px;
|
|
42
41
|
margin-bottom: 8px;
|
|
43
42
|
}
|
|
44
|
-
mat-card-subtitle.mat-card-subtitle:not(:first-child){
|
|
43
|
+
mat-card-subtitle.mat-card-subtitle:not(:first-child) {
|
|
45
44
|
color: luxcommon.$dark-secondary-text;
|
|
46
45
|
font-size: 14px;
|
|
47
46
|
font-weight: normal;
|
|
48
47
|
margin-top: 0px;
|
|
49
48
|
}
|
|
50
49
|
}
|
|
51
|
-
|
|
50
|
+
|
|
52
51
|
&:not([class*="mat-elevation-z"]) {
|
|
53
52
|
@include luxelevations.lux-elevation-z2;
|
|
54
53
|
}
|
|
55
54
|
|
|
56
|
-
&[class~=lux-cursor]:focus-visible {
|
|
55
|
+
&[class~="lux-cursor"]:focus-visible {
|
|
57
56
|
@include luxfocus.focus-dark-mixin;
|
|
58
57
|
}
|
|
59
|
-
&[class~=lux-cursor]:hover {
|
|
60
|
-
border-color:
|
|
58
|
+
&[class~="lux-cursor"]:hover {
|
|
59
|
+
border-color: luxcommon.$dark-primary-text;
|
|
61
60
|
}
|
|
62
61
|
}
|
|
63
|
-
}
|
|
62
|
+
}
|
package/src/blue/_custom.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:color";
|
|
2
2
|
@use "luxcommon";
|
|
3
|
+
@use "luxpalette";
|
|
3
4
|
@use "../base/luxelevations";
|
|
4
5
|
|
|
5
6
|
// Tabs außerhalb einer LUX-Card (z.B. Master-Detail)
|
|
@@ -12,8 +13,8 @@ lux-tabs {
|
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
// x-Button oben rechts im Dialog-Fenster
|
|
15
|
-
.cdk-overlay-container{
|
|
16
|
-
.lux-dialog .lux-icon-close {
|
|
16
|
+
.cdk-overlay-container {
|
|
17
|
+
.lux-dialog .lux-icon-close {
|
|
17
18
|
&:hover {
|
|
18
19
|
background-color: color.adjust(luxcommon.$lux-hover-color, $lightness: -10%) !important;
|
|
19
20
|
}
|
|
@@ -24,15 +25,14 @@ lux-button button.lux-button {
|
|
|
24
25
|
font-family: luxcommon.$app-font-family;
|
|
25
26
|
|
|
26
27
|
&.lux-icon-button {
|
|
27
|
-
|
|
28
28
|
& lux-icon:not(.lux-button-icon-round) {
|
|
29
29
|
line-height: 0.5;
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
&.lux-lx-icon {
|
|
32
32
|
height: 22px !important;
|
|
33
33
|
width: 22px !important;
|
|
34
34
|
}
|
|
35
|
-
|
|
35
|
+
|
|
36
36
|
i.lux-fa-icon {
|
|
37
37
|
font-size: 1.5em !important;
|
|
38
38
|
}
|
|
@@ -51,7 +51,6 @@ lux-button button.lux-button {
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
&.lux-button-rounded {
|
|
54
|
-
|
|
55
54
|
font-size: luxcommon.$button-font-size;
|
|
56
55
|
.mat-button-wrapper {
|
|
57
56
|
height: 100%;
|
|
@@ -59,7 +58,7 @@ lux-button button.lux-button {
|
|
|
59
58
|
align-items: center;
|
|
60
59
|
line-height: 1;
|
|
61
60
|
}
|
|
62
|
-
|
|
61
|
+
|
|
63
62
|
& lux-icon.lux-button-icon-round {
|
|
64
63
|
line-height: 1;
|
|
65
64
|
height: 20px;
|
|
@@ -81,8 +80,7 @@ lux-button button.lux-button {
|
|
|
81
80
|
/*
|
|
82
81
|
* Theming for LUX-Master-Detail-ac
|
|
83
82
|
*/
|
|
84
|
-
|
|
85
|
-
|
|
83
|
+
.lux-master-detail-ac {
|
|
86
84
|
.lux-master-header-container-ac lux-button.master-light-toggle {
|
|
87
85
|
right: -23px;
|
|
88
86
|
}
|
|
@@ -105,6 +103,18 @@ lux-button button.lux-button {
|
|
|
105
103
|
lux-master-footer-ac {
|
|
106
104
|
margin-bottom: 4px;
|
|
107
105
|
border: none;
|
|
108
|
-
@include luxelevations.lux-elevation-z2
|
|
106
|
+
@include luxelevations.lux-elevation-z2;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/*
|
|
111
|
+
* Theming für lux-datepicker-ac/lux-datetimepicker-ac
|
|
112
|
+
*/
|
|
113
|
+
lux-datepicker-ac,
|
|
114
|
+
lux-datetimepicker-ac {
|
|
115
|
+
mat-datepicker-toggle {
|
|
116
|
+
button:hover lux-icon.lux-datepicker-toggle-icon.lux-color-blue {
|
|
117
|
+
color: map-get(luxpalette.$lux-palette_primary, 300);
|
|
118
|
+
}
|
|
109
119
|
}
|
|
110
|
-
|
|
120
|
+
}
|