@ihk-gfi/lux-components-theme 21.0.0 → 21.1.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 +30 -28
- 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 +76 -34
- 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 +76 -34
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/components/_luxBreadcrumb.scss +63 -33
- package/src/base-templates/components/_luxChips.scss +21 -0
- package/src/base-templates/components/_luxDialog.scss +11 -0
|
@@ -2,42 +2,57 @@
|
|
|
2
2
|
@use "../common/luxbreakpoints";
|
|
3
3
|
|
|
4
4
|
lux-breadcrumb {
|
|
5
|
-
padding: 8px; //Für Focusindicator
|
|
6
5
|
margin: 20px 0 36px 0; //Stylevorgaben
|
|
7
|
-
display:
|
|
8
|
-
box-sizing: border-box;
|
|
6
|
+
display: block;
|
|
9
7
|
|
|
10
8
|
@include luxbreakpoints.lt-md {
|
|
11
9
|
margin: 14px 0;
|
|
12
10
|
}
|
|
13
11
|
|
|
14
12
|
.lux-breadcrumb {
|
|
15
|
-
margin: -8px; //Fü Focusindicator
|
|
16
|
-
padding: 8px;
|
|
17
|
-
display: inline-flex;
|
|
18
|
-
flex-wrap: nowrap;
|
|
19
|
-
white-space: nowrap;
|
|
20
|
-
justify-content: flex-start;
|
|
21
|
-
gap: 9px;
|
|
22
|
-
align-items: baseline;
|
|
23
|
-
overflow: auto;
|
|
24
13
|
max-width: 100%;
|
|
25
14
|
}
|
|
26
15
|
|
|
27
16
|
.lux-breadcrumb-container {
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
margin: 0;
|
|
18
|
+
padding: 0;
|
|
19
|
+
|
|
20
|
+
display: flex;
|
|
21
|
+
gap: 9px;
|
|
22
|
+
align-items: center;
|
|
23
|
+
width: auto;
|
|
24
|
+
max-width: 100%;
|
|
25
|
+
|
|
26
|
+
list-style: none;
|
|
27
|
+
|
|
28
|
+
&.lux-breadcrumb-container-wrap {
|
|
29
|
+
flex-wrap: wrap;
|
|
30
|
+
}
|
|
30
31
|
}
|
|
31
32
|
|
|
33
|
+
.lux-breadcrumb-item-current,
|
|
32
34
|
.lux-breadcrumb-item {
|
|
33
35
|
display: inline-flex;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
color: var(--lux-theme-primary-color);
|
|
36
|
+
align-items: center;
|
|
37
|
+
max-width: 64ch;
|
|
38
|
+
min-width: 8ch;
|
|
39
|
+
|
|
39
40
|
list-style-type: none;
|
|
40
41
|
box-sizing: border-box;
|
|
42
|
+
color: var(--lux-theme-primary-color);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.lux-breadcrumb-item-title {
|
|
46
|
+
overflow: hidden;
|
|
47
|
+
text-overflow: ellipsis;
|
|
48
|
+
white-space: nowrap;
|
|
49
|
+
min-width: 0;
|
|
50
|
+
color: var(--lux-theme-primary-color);
|
|
51
|
+
padding: 2px 4px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.lux-breadcrumb-item {
|
|
55
|
+
flex: 0 1 auto;
|
|
41
56
|
|
|
42
57
|
&.lux-breadcrumb-item-mobile {
|
|
43
58
|
font-size: 1rem;
|
|
@@ -57,31 +72,46 @@ lux-breadcrumb {
|
|
|
57
72
|
|
|
58
73
|
lux-icon {
|
|
59
74
|
cursor: default;
|
|
75
|
+
flex: 0 0 auto;
|
|
60
76
|
:hover {
|
|
61
77
|
color: var(--lux-theme-primary-color);
|
|
62
78
|
cursor: default;
|
|
63
79
|
}
|
|
64
80
|
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.lux-breadcrumb-item-current {
|
|
84
|
+
flex: 0 0 content;
|
|
85
|
+
max-width: 50%;
|
|
65
86
|
|
|
87
|
+
.lux-breadcrumb-item-title {
|
|
88
|
+
text-decoration: none;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.lux-breadcrumb-item-dotted {
|
|
93
|
+
text-decoration: none;
|
|
94
|
+
min-width: auto;
|
|
95
|
+
|
|
96
|
+
:hover,
|
|
66
97
|
a {
|
|
67
|
-
|
|
68
|
-
color: var(--lux-theme-primary-color);
|
|
69
|
-
margin: 0px -2px;
|
|
70
|
-
white-space: nowrap;
|
|
98
|
+
text-decoration: none;
|
|
71
99
|
}
|
|
72
100
|
}
|
|
73
101
|
|
|
74
|
-
.lux-breadcrumb-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
padding: 4px;
|
|
81
|
-
box-sizing: border-box;
|
|
102
|
+
.lux-breadcrumb-container-wrap {
|
|
103
|
+
.lux-breadcrumb-item,
|
|
104
|
+
.lux-breadcrumb-item-current {
|
|
105
|
+
max-width: 100%;
|
|
106
|
+
display: inline;
|
|
107
|
+
}
|
|
82
108
|
|
|
83
|
-
|
|
84
|
-
|
|
109
|
+
.lux-breadcrumb-item-title {
|
|
110
|
+
overflow: visible;
|
|
111
|
+
text-overflow: clip;
|
|
112
|
+
white-space: normal;
|
|
113
|
+
line-height: 1.75rem;
|
|
114
|
+
vertical-align: bottom;
|
|
85
115
|
}
|
|
86
116
|
}
|
|
87
117
|
}
|
|
@@ -59,6 +59,27 @@ lux-chips-ac {
|
|
|
59
59
|
min-height: unset;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
// Lange Chip-Inhalte abschneiden, Icon sichtbar lassen
|
|
63
|
+
.lux-chip-container {
|
|
64
|
+
max-width: calc(100% - 8px);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.lux-chip {
|
|
68
|
+
max-width: 100%;
|
|
69
|
+
min-width: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.lux-chip .mdc-evolution-chip__cell--primary {
|
|
73
|
+
min-width: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.lux-chip .mdc-evolution-chip__text-label,
|
|
77
|
+
.lux-chip .lux-chip-label {
|
|
78
|
+
overflow: hidden;
|
|
79
|
+
text-overflow: ellipsis;
|
|
80
|
+
white-space: nowrap;
|
|
81
|
+
}
|
|
82
|
+
|
|
62
83
|
lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic {
|
|
63
84
|
padding: 12px 8px;
|
|
64
85
|
}
|
|
@@ -7,6 +7,16 @@
|
|
|
7
7
|
border-radius: var(--lux-theme-app-border-radius);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
.cdk-overlay-pane.mat-mdc-dialog-panel.lux-dialog {
|
|
11
|
+
@include mat.dialog-overrides(
|
|
12
|
+
(
|
|
13
|
+
container-max-width: 5000px,
|
|
14
|
+
container-small-max-width: 5000px,
|
|
15
|
+
container-min-width: 0
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
|
|
10
20
|
lux-dialog-preset {
|
|
11
21
|
height: 100%;
|
|
12
22
|
}
|
|
@@ -25,6 +35,7 @@ lux-dialog-structure {
|
|
|
25
35
|
));
|
|
26
36
|
|
|
27
37
|
display: flex;
|
|
38
|
+
flex: 1 1 auto;
|
|
28
39
|
min-height: 100%;
|
|
29
40
|
|
|
30
41
|
.lux-dialog {
|