@ihk-gfi/lux-components-theme 16.3.0 → 18.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 +1 -1
- package/package.json +4 -4
- 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 +2065 -4523
- 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 +2034 -4498
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +42 -30
- package/src/authentic/_luxcommon.scss +7 -8
- package/src/authentic/luxtheme.scss +7 -2
- package/src/base/_luxcommon.scss +6 -0
- package/src/base/_luxcomponents.scss +23 -50
- package/src/base/_luxfocus.scss +81 -64
- package/src/base/_luxstyles.scss +44 -2
- package/src/base/_luxtheme.scss +8 -8
- package/src/base/components/_luxAppHeader.scss +5 -37
- package/src/base/components/_luxAppHeaderAc.scss +6 -4
- package/src/base/components/_luxButton.scss +63 -26
- package/src/base/components/_luxCard.scss +20 -6
- package/src/base/components/_luxDialog.scss +23 -4
- package/src/base/components/_luxFilter.scss +22 -2
- package/src/base/components/_luxFormControlWrapper.scss +5 -2
- package/src/base/components/_luxFormControlsAuthentic.scss +370 -159
- package/src/base/components/_luxList.scss +3 -3
- package/src/base/components/_luxMasterDetailAc.scss +6 -6
- package/src/base/components/_luxMenu.scss +28 -14
- package/src/base/components/_luxMessagebox.scss +28 -33
- package/src/base/components/_luxProgressBar.scss +5 -0
- package/src/base/components/_luxProgressSpinner.scss +13 -0
- package/src/base/components/_luxSnackbar.scss +12 -8
- package/src/base/components/_luxStepper.scss +1 -0
- package/src/base/components/_luxTable.scss +46 -25
- package/src/base/components/_luxTabs.scss +41 -19
- package/src/base/components/_luxTile.scss +83 -37
- package/src/base/components/_luxTileAc.scss +11 -2
- package/src/base/components/_luxToolTip.scss +9 -0
- package/src/base/components/_luxTourHint.scss +16 -1
- package/src/green/_custom.scss +66 -70
- package/src/green/_luxcommon.scss +6 -0
- package/src/green/luxtheme.scss +7 -1
- package/src/public/global.scss +44 -1
|
@@ -20,7 +20,7 @@ lux-list {
|
|
|
20
20
|
color: map.get(luxcommon.$componentBgColors, "gray");
|
|
21
21
|
padding: 0 8px;
|
|
22
22
|
}
|
|
23
|
-
.mat-card:not([class*="mat-elevation-z"]) {
|
|
23
|
+
.mat-mdc-card:not([class*="mat-elevation-z"]) {
|
|
24
24
|
@include luxelevations.lux-elevation-z0;
|
|
25
25
|
}
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ lux-list {
|
|
|
28
28
|
margin-bottom: 4px;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.mat-card-content.menu-item-content {
|
|
31
|
+
.mat-mdc-card-content.menu-item-content {
|
|
32
32
|
margin-bottom: 0;
|
|
33
33
|
}
|
|
34
34
|
|
|
@@ -75,7 +75,7 @@ lux-list {
|
|
|
75
75
|
|
|
76
76
|
lux-card {
|
|
77
77
|
&.lux-list-item-selected {
|
|
78
|
-
mat-card.mat-card.lux-card {
|
|
78
|
+
mat-card.mat-mdc-card.lux-card {
|
|
79
79
|
@include luxfocus.lux-selected-mixin-ac;
|
|
80
80
|
}
|
|
81
81
|
}
|
|
@@ -106,7 +106,7 @@ $listmargin: calc(luxcommon.$outline-width + 1px);
|
|
|
106
106
|
h2 {
|
|
107
107
|
font-size: 1rem;
|
|
108
108
|
}
|
|
109
|
-
mat-card-subtitle.mat-card-subtitle {
|
|
109
|
+
mat-card-subtitle.mat-mdc-card-subtitle {
|
|
110
110
|
font-size: 0.875rem;
|
|
111
111
|
}
|
|
112
112
|
.lux-master-header-content-container-ac {
|
|
@@ -118,14 +118,14 @@ $listmargin: calc(luxcommon.$outline-width + 1px);
|
|
|
118
118
|
lux-filter-form .lux-filter-card,
|
|
119
119
|
.detail-header-container .lux-detail-header-ac,
|
|
120
120
|
.lux-master-view-ac lux-list-item {
|
|
121
|
-
mat-card.mat-card {
|
|
121
|
+
mat-card.mat-mdc-card {
|
|
122
122
|
padding: 12px;
|
|
123
123
|
}
|
|
124
124
|
mat-card-title,
|
|
125
125
|
h2 {
|
|
126
126
|
font-size: 1rem;
|
|
127
127
|
}
|
|
128
|
-
mat-card-subtitle.mat-card-subtitle {
|
|
128
|
+
mat-card-subtitle.mat-mdc-card-subtitle {
|
|
129
129
|
font-size: 0.875rem;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
@@ -157,7 +157,7 @@ $listmargin: calc(luxcommon.$outline-width + 1px);
|
|
|
157
157
|
* Die List-Items basieren auf einer Card, für die Masterliste werden hier die Schriftgrößen und der White-Space verkleinert
|
|
158
158
|
*/
|
|
159
159
|
|
|
160
|
-
mat-card.mat-card {
|
|
160
|
+
mat-card.mat-mdc-card {
|
|
161
161
|
margin: 0px;
|
|
162
162
|
|
|
163
163
|
lux-list-item-content :last-child {
|
|
@@ -214,7 +214,7 @@ $listmargin: calc(luxcommon.$outline-width + 1px);
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
.lux-detail-header-ac {
|
|
217
|
-
mat-card.mat-card.lux-card {
|
|
217
|
+
mat-card.mat-mdc-card.lux-card {
|
|
218
218
|
border: none;
|
|
219
219
|
}
|
|
220
220
|
}
|
|
@@ -228,7 +228,7 @@ $listmargin: calc(luxcommon.$outline-width + 1px);
|
|
|
228
228
|
border: none;
|
|
229
229
|
background-color: unset;
|
|
230
230
|
.lux-detail-header-ac {
|
|
231
|
-
mat-card.mat-card.lux-card {
|
|
231
|
+
mat-card.mat-mdc-card.lux-card {
|
|
232
232
|
border: 2px solid luxpalette.$lux-primary-color;
|
|
233
233
|
}
|
|
234
234
|
}
|
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
@use "../luxpalette";
|
|
4
4
|
@use "../luxfocus";
|
|
5
5
|
|
|
6
|
+
.mat-mdc-menu-panel {
|
|
7
|
+
--mat-menu-container-shape: #{luxcommon.$app-border-radius};
|
|
8
|
+
}
|
|
9
|
+
|
|
6
10
|
lux-menu {
|
|
7
11
|
display: block;
|
|
8
12
|
width: 100%;
|
|
@@ -10,7 +14,7 @@ lux-menu {
|
|
|
10
14
|
.lux-menu-extended,
|
|
11
15
|
.lux-menu-trigger {
|
|
12
16
|
> lux-button {
|
|
13
|
-
button {
|
|
17
|
+
button.mat-mdc-button {
|
|
14
18
|
padding-left: 8px;
|
|
15
19
|
padding-right: 8px;
|
|
16
20
|
min-width: 36px;
|
|
@@ -29,6 +33,7 @@ lux-menu {
|
|
|
29
33
|
> lux-button {
|
|
30
34
|
margin-right: 8px;
|
|
31
35
|
&.lux-menu-item .lux-button-label {
|
|
36
|
+
white-space: nowrap;
|
|
32
37
|
font-weight: 400;
|
|
33
38
|
letter-spacing: 1px;
|
|
34
39
|
font-family: luxcommon.$app-font-family;
|
|
@@ -46,7 +51,8 @@ lux-menu {
|
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
.lux-menu-trigger-default {
|
|
49
|
-
button.mat-button {
|
|
54
|
+
button.mat-mdc-button {
|
|
55
|
+
white-space: nowrap;
|
|
50
56
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
51
57
|
}
|
|
52
58
|
}
|
|
@@ -56,30 +62,36 @@ lux-menu {
|
|
|
56
62
|
border: 2px solid luxpalette.$lux-primary-color;
|
|
57
63
|
box-shadow: none !important;
|
|
58
64
|
|
|
65
|
+
.mat-mdc-menu-item,
|
|
66
|
+
.mat-mdc-menu-item:has(.material-icons, mat-icon, [matButtonIcon]) {
|
|
67
|
+
padding: 0 16px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.mat-mdc-menu-item-text {
|
|
71
|
+
display: flex;
|
|
72
|
+
}
|
|
73
|
+
|
|
59
74
|
.lux-menu-item {
|
|
60
75
|
font-size: 1rem;
|
|
61
76
|
display: block;
|
|
62
77
|
color: luxpalette.$lux-primary-color;
|
|
63
78
|
margin-top: luxcommon.$outline-width;
|
|
64
79
|
margin-bottom: luxcommon.$outline-width;
|
|
80
|
+
hyphens: auto;
|
|
81
|
+
word-break: break-all;
|
|
65
82
|
|
|
66
83
|
.mat-icon-no-color {
|
|
67
84
|
color: luxpalette.$lux-primary-color;
|
|
68
85
|
}
|
|
69
86
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
justify-content: flex-start;
|
|
74
|
-
flex-wrap: nowrap;
|
|
75
|
-
width: 100%;
|
|
76
|
-
max-width: 100%;
|
|
87
|
+
.lux-button-label {
|
|
88
|
+
hyphens: auto;
|
|
89
|
+
word-break: break-word;
|
|
77
90
|
}
|
|
78
|
-
.lux-button-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
white-space: nowrap;
|
|
91
|
+
.lux-button-badge-container {
|
|
92
|
+
min-width: 38px;
|
|
93
|
+
vertical-align: middle;
|
|
94
|
+
align-self: center;
|
|
83
95
|
}
|
|
84
96
|
.lux-button-badge {
|
|
85
97
|
color: #fff;
|
|
@@ -87,6 +99,7 @@ lux-menu {
|
|
|
87
99
|
padding: 1px 4px;
|
|
88
100
|
font-size: 11px;
|
|
89
101
|
line-height: normal;
|
|
102
|
+
max-height: 16px;
|
|
90
103
|
min-width: 15px;
|
|
91
104
|
max-width: 38px;
|
|
92
105
|
display: inline-block;
|
|
@@ -98,6 +111,7 @@ lux-menu {
|
|
|
98
111
|
}
|
|
99
112
|
}
|
|
100
113
|
.lux-menu-item-icon {
|
|
114
|
+
align-self: center;
|
|
101
115
|
vertical-align: middle;
|
|
102
116
|
mat-icon {
|
|
103
117
|
margin: 0;
|
|
@@ -31,32 +31,19 @@ lux-message-box {
|
|
|
31
31
|
// da im Theme authentic der Schatten entfernt wurde, muss eine Weiße Messagebox eine Border erhalten.
|
|
32
32
|
border: 1px solid luxpalette.$lux-primary-color;
|
|
33
33
|
box-sizing: border-box;
|
|
34
|
-
& button.
|
|
34
|
+
& button:not([disabled]).lux-button-rounded.mat-accent.lux-fab-rounded-default:not([class*="mat-elevation-z"]) {
|
|
35
35
|
color: luxpalette.$lux-primary-color;
|
|
36
|
-
&:hover {
|
|
37
|
-
color: #fff;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&:not(.lux-bg-color-white) {
|
|
43
|
-
& button:not([disabled]):hover {
|
|
44
|
-
.mat-icon-no-color {
|
|
45
|
-
color: #fff;
|
|
46
|
-
}
|
|
47
36
|
}
|
|
48
37
|
}
|
|
49
38
|
|
|
50
39
|
& lux-button {
|
|
51
|
-
button.
|
|
40
|
+
button:not([disabled]).lux-button-rounded.mat-accent.lux-fab-rounded-default:not([class*="mat-elevation-z"]) {
|
|
52
41
|
color: #fff;
|
|
53
42
|
background-color: transparent;
|
|
54
|
-
height: 36px;
|
|
55
|
-
width: 36px;
|
|
56
43
|
@include luxelevations.lux-elevation-z0();
|
|
57
44
|
}
|
|
58
|
-
|
|
59
|
-
.mat-button-
|
|
45
|
+
|
|
46
|
+
.mat-mdc-button-ripple {
|
|
60
47
|
display: none;
|
|
61
48
|
}
|
|
62
49
|
}
|
|
@@ -91,20 +78,27 @@ lux-message-box {
|
|
|
91
78
|
@include luxfocus.focus-dark-mixin;
|
|
92
79
|
}
|
|
93
80
|
|
|
81
|
+
.mat-mdc-fab.mat-unthemed,
|
|
82
|
+
.mat-mdc-mini-fab.mat-unthemed {
|
|
83
|
+
background-color: transparent;
|
|
84
|
+
}
|
|
85
|
+
|
|
94
86
|
& .lux-message-container.lux-bg-color-white {
|
|
95
87
|
& .lux-message-text:focus-visible {
|
|
96
88
|
@include luxfocus.focus-dark-mixin;
|
|
97
89
|
border-radius: 4px;
|
|
98
90
|
}
|
|
99
91
|
|
|
100
|
-
& button:not([disabled])
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
92
|
+
& lux-button button.lux-button.mat-mdc-fab:not([disabled]).lux-fab-rounded-default {
|
|
93
|
+
&:hover {
|
|
94
|
+
color: #ffffff;
|
|
95
|
+
background-color: luxpalette.$lux-primary-color !important;
|
|
96
|
+
}
|
|
104
97
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
98
|
+
&:focus-visible {
|
|
99
|
+
@include luxfocus.focus-dark-mixin;
|
|
100
|
+
background-color: transparent !important;
|
|
101
|
+
}
|
|
108
102
|
}
|
|
109
103
|
}
|
|
110
104
|
|
|
@@ -114,16 +108,17 @@ lux-message-box {
|
|
|
114
108
|
border-radius: 4px;
|
|
115
109
|
}
|
|
116
110
|
|
|
117
|
-
& button:not([disabled])
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
& lux-button button.lux-button.mat-mdc-fab:not([disabled]).lux-fab-rounded-default {
|
|
112
|
+
&:hover {
|
|
113
|
+
color: white;
|
|
114
|
+
background-color: rgba(1, 1, 1, 0.2) !important;
|
|
115
|
+
}
|
|
121
116
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
117
|
+
&:focus-visible {
|
|
118
|
+
@include luxfocus.focus-bright-mixin;
|
|
119
|
+
color: white;
|
|
120
|
+
background-color: transparent !important;
|
|
121
|
+
}
|
|
127
122
|
}
|
|
128
123
|
}
|
|
129
124
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@use "../luxcommon";
|
|
2
|
+
|
|
3
|
+
@each $colorName, $colorNameHex in luxcommon.$componentBgColors {
|
|
4
|
+
.mat-mdc-progress-spinner.lux-color-#{"" + $colorName + ""} .mdc-circular-progress__determinate-circle {
|
|
5
|
+
stroke: $colorNameHex;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@each $colorName, $colorNameHex in luxcommon.$componentBgColors {
|
|
10
|
+
.mat-mdc-progress-spinner.lux-color-#{"" + $colorName + ""} .mdc-circular-progress__indeterminate-circle-graphic {
|
|
11
|
+
stroke: $colorNameHex;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -3,17 +3,26 @@
|
|
|
3
3
|
@use "../luxelevations";
|
|
4
4
|
|
|
5
5
|
.cdk-overlay-container {
|
|
6
|
-
.mat-snack-bar-container.
|
|
6
|
+
.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface {
|
|
7
|
+
min-width: unset;
|
|
8
|
+
border-radius: 4px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.mat-mdc-snack-bar-container.lux-snackbar {
|
|
7
12
|
@include luxelevations.lux-elevation-z6();
|
|
8
13
|
|
|
9
14
|
position: relative;
|
|
10
15
|
margin: 0 !important;
|
|
11
|
-
|
|
16
|
+
|
|
12
17
|
// Die Snackbar wird durch die App umpositioniert, bevor sie sichtbar geschaltet wird.
|
|
13
18
|
// Würde man die Snackbar nicht verstecken, würde sie von der initialen Position zur neuen
|
|
14
19
|
// springen.
|
|
15
20
|
visibility: hidden;
|
|
16
21
|
|
|
22
|
+
.mat-mdc-snack-bar-label {
|
|
23
|
+
visibility: hidden;
|
|
24
|
+
}
|
|
25
|
+
|
|
17
26
|
@each $colorName, $colorNameHex in luxcommon.$colorsForDarkBg {
|
|
18
27
|
.lux-snackbar-content .lux-bg-color-#{"" + $colorName + ""} {
|
|
19
28
|
color: $colorNameHex;
|
|
@@ -25,13 +34,8 @@
|
|
|
25
34
|
width: 2em;
|
|
26
35
|
height: 2em;
|
|
27
36
|
}
|
|
28
|
-
|
|
29
|
-
.snackbar-action {
|
|
30
|
-
.mat-button-focus-overlay {
|
|
31
|
-
display: none;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
37
|
}
|
|
38
|
+
|
|
35
39
|
.mat-snack-bar-handset snack-bar-container.mat-snack-bar-container.lux-snackbar {
|
|
36
40
|
left: 8px;
|
|
37
41
|
width: auto !important;
|
|
@@ -8,9 +8,16 @@ lux-table {
|
|
|
8
8
|
display: flex;
|
|
9
9
|
height: 100%;
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
th.mat-mdc-header-cell:first-of-type,
|
|
12
|
+
td.mat-mdc-cell:first-of-type,
|
|
13
|
+
td.mat-mdc-footer-cell:first-of-type {
|
|
14
|
+
padding-left: 24px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
table.mat-mdc-table {
|
|
12
18
|
font-family: luxcommon.$app-font-family;
|
|
13
19
|
}
|
|
20
|
+
|
|
14
21
|
.lux-row-selected {
|
|
15
22
|
background-color: luxcommon.$lux-selected-bg-color;
|
|
16
23
|
}
|
|
@@ -37,19 +44,22 @@ lux-table {
|
|
|
37
44
|
th {
|
|
38
45
|
padding: 0.5em 1em;
|
|
39
46
|
}
|
|
47
|
+
|
|
40
48
|
th {
|
|
41
49
|
padding-top: 1em;
|
|
42
50
|
}
|
|
43
|
-
|
|
51
|
+
|
|
52
|
+
tr.mat-mdc-header-row {
|
|
44
53
|
height: auto;
|
|
45
54
|
}
|
|
46
55
|
|
|
47
|
-
th.mat-header-cell,
|
|
48
|
-
td.mat-cell {
|
|
56
|
+
th.mat-mdc-header-cell,
|
|
57
|
+
td.mat-mdc-cell {
|
|
49
58
|
border: none;
|
|
50
59
|
font-size: 1rem;
|
|
51
60
|
}
|
|
52
|
-
|
|
61
|
+
|
|
62
|
+
td.mat-mdc-footer-cell {
|
|
53
63
|
border: none;
|
|
54
64
|
border-top: 1px solid luxcommon.$app-border-color;
|
|
55
65
|
font-size: 0.9375rem;
|
|
@@ -67,28 +77,36 @@ lux-table {
|
|
|
67
77
|
overflow: auto;
|
|
68
78
|
height: 100%;
|
|
69
79
|
width: 100%;
|
|
70
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
71
80
|
border-radius: 4px;
|
|
72
81
|
|
|
82
|
+
&:not(.lux-hide-borders) {
|
|
83
|
+
border: 1px solid luxcommon.$app-border-color;
|
|
84
|
+
}
|
|
85
|
+
|
|
73
86
|
table {
|
|
74
87
|
width: 100%;
|
|
75
88
|
border-spacing: 0 !important;
|
|
89
|
+
|
|
76
90
|
td .lux-form-control-wrapper {
|
|
77
91
|
margin: 0;
|
|
92
|
+
|
|
78
93
|
.lux-form-control-container-authentic {
|
|
79
94
|
padding: 0.25em 0.5em; // bei den Form-Controls in einer Tabellen-Zelle wird die Höhe reduziert
|
|
95
|
+
|
|
80
96
|
&.lux-no-input-row {
|
|
81
97
|
padding: 0em;
|
|
82
98
|
}
|
|
83
99
|
}
|
|
84
100
|
}
|
|
101
|
+
|
|
85
102
|
tbody tr:last-of-type td {
|
|
86
103
|
border-bottom: none;
|
|
87
104
|
}
|
|
88
105
|
|
|
89
|
-
.mat-footer-row > td {
|
|
106
|
+
.mat-mdc-footer-row > td {
|
|
90
107
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
|
91
108
|
}
|
|
109
|
+
|
|
92
110
|
.lux-header-title,
|
|
93
111
|
.lux-moved-header-title {
|
|
94
112
|
font-size: 0.75rem;
|
|
@@ -106,10 +124,11 @@ lux-table {
|
|
|
106
124
|
font-weight: 700;
|
|
107
125
|
}
|
|
108
126
|
|
|
109
|
-
.mat-row:nth-child(odd) {
|
|
110
|
-
background-color:
|
|
127
|
+
.mat-mdc-row:nth-child(odd) {
|
|
128
|
+
background-color: #f0f3f6;
|
|
111
129
|
}
|
|
112
|
-
|
|
130
|
+
|
|
131
|
+
.mat-mdc-row:nth-child(even) {
|
|
113
132
|
background-color: #ffffff;
|
|
114
133
|
}
|
|
115
134
|
|
|
@@ -126,10 +145,16 @@ lux-table {
|
|
|
126
145
|
display: none;
|
|
127
146
|
}
|
|
128
147
|
}
|
|
129
|
-
|
|
130
|
-
.mat-paginator
|
|
148
|
+
|
|
149
|
+
.mat-mdc-paginator,
|
|
150
|
+
.mat-mdc-paginator-page-size .mat-mdc-select-trigger {
|
|
131
151
|
font-size: 0.75rem;
|
|
152
|
+
|
|
153
|
+
.mdc-text-field--filled:not(.mdc-text-field--disabled) {
|
|
154
|
+
background-color: #ffffff;
|
|
155
|
+
}
|
|
132
156
|
}
|
|
157
|
+
|
|
133
158
|
.lux-table-overlay {
|
|
134
159
|
-webkit-transition: opacity 1s;
|
|
135
160
|
-moz-transition: opacity 1s;
|
|
@@ -152,12 +177,13 @@ lux-table {
|
|
|
152
177
|
.lux-hide {
|
|
153
178
|
display: none !important;
|
|
154
179
|
}
|
|
180
|
+
|
|
155
181
|
.lux-multiselect-th,
|
|
156
182
|
.lux-multiselect-td,
|
|
157
183
|
.lux-multiselect-tf {
|
|
158
|
-
max-width:
|
|
159
|
-
min-width:
|
|
160
|
-
width:
|
|
184
|
+
max-width: 110px;
|
|
185
|
+
min-width: 110px;
|
|
186
|
+
width: 110px;
|
|
161
187
|
}
|
|
162
188
|
|
|
163
189
|
.lux-multiselect-th {
|
|
@@ -188,16 +214,7 @@ lux-table {
|
|
|
188
214
|
height: 0;
|
|
189
215
|
}
|
|
190
216
|
|
|
191
|
-
.
|
|
192
|
-
display: inline-block;
|
|
193
|
-
|
|
194
|
-
&:hover {
|
|
195
|
-
border-radius: 50%;
|
|
196
|
-
background-color: luxcommon.$lux-hover-color;
|
|
197
|
-
cursor: pointer;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
lux-checkbox-ac .mat-checkbox-inner-container {
|
|
217
|
+
lux-checkbox-ac .mat-mdc-checkbox-inner-container {
|
|
201
218
|
margin: 0px;
|
|
202
219
|
}
|
|
203
220
|
|
|
@@ -212,6 +229,10 @@ lux-table {
|
|
|
212
229
|
// damit die Events der eigentliche Checkbox nicht zusätzlich gezählt werden
|
|
213
230
|
pointer-events: none;
|
|
214
231
|
}
|
|
232
|
+
|
|
233
|
+
.lux-element-align-top {
|
|
234
|
+
vertical-align: text-top;
|
|
235
|
+
}
|
|
215
236
|
}
|
|
216
237
|
|
|
217
238
|
/** ########## HOVER / FOCUS ########## **/
|
|
@@ -11,18 +11,29 @@ lux-tabs {
|
|
|
11
11
|
font-size: 1rem;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.mat-mdc-tab-label-container {
|
|
15
|
+
border: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.mdc-tab {
|
|
19
|
+
padding-left: 0;
|
|
20
|
+
padding-right: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
14
23
|
mat-tab-group div[role="tab"] {
|
|
15
24
|
font-size: 0.875rem;
|
|
16
25
|
font-weight: 600;
|
|
26
|
+
letter-spacing: normal;
|
|
17
27
|
min-height: unset !important;
|
|
18
|
-
|
|
28
|
+
height: unset !important;
|
|
29
|
+
&:not(.mat-tab-disabled) .mdc-tab__text-label {
|
|
19
30
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
20
31
|
opacity: 1;
|
|
21
32
|
}
|
|
22
33
|
}
|
|
23
34
|
|
|
24
|
-
mat-tab-group.lux-tabs-
|
|
25
|
-
border-bottom:
|
|
35
|
+
mat-tab-group.lux-tabs-show-divider mat-tab-header {
|
|
36
|
+
border-bottom: 1px solid luxcommon.$app-border-color;
|
|
26
37
|
}
|
|
27
38
|
|
|
28
39
|
.lux-tab-title {
|
|
@@ -43,10 +54,6 @@ lux-tabs {
|
|
|
43
54
|
padding-top: 4px;
|
|
44
55
|
}
|
|
45
56
|
|
|
46
|
-
.lux-tabs-no-anim .mat-ink-bar {
|
|
47
|
-
transition: none !important;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
57
|
.lux-notification-new {
|
|
51
58
|
background-color: map.get(luxcommon.$componentBgColors, "green");
|
|
52
59
|
}
|
|
@@ -64,12 +71,13 @@ lux-tabs {
|
|
|
64
71
|
.lux-tabs-show-border {
|
|
65
72
|
border: 1px solid luxcommon.$app-border-color;
|
|
66
73
|
border-radius: 4px;
|
|
74
|
+
background-color: luxcommon.$app-content-bg;
|
|
67
75
|
}
|
|
68
76
|
|
|
69
77
|
// Anpassungen für kleine Screensizes
|
|
70
|
-
.
|
|
71
|
-
padding-left:
|
|
72
|
-
padding-right:
|
|
78
|
+
.mdc-tab__text-label {
|
|
79
|
+
padding-left: 48px;
|
|
80
|
+
padding-right: 48px;
|
|
73
81
|
height: auto;
|
|
74
82
|
position: relative;
|
|
75
83
|
|
|
@@ -88,7 +96,7 @@ lux-tabs {
|
|
|
88
96
|
}
|
|
89
97
|
}
|
|
90
98
|
|
|
91
|
-
.mat-tab-label.lux-tab-with-icon {
|
|
99
|
+
.mat-mdc-tab-label.lux-tab-with-icon {
|
|
92
100
|
@include luxbreakpoints.sm {
|
|
93
101
|
min-width: 125px;
|
|
94
102
|
width: 125px;
|
|
@@ -103,7 +111,9 @@ lux-tabs {
|
|
|
103
111
|
// luxCounter (z.B. 10) neben dem Tablabel auf normalen bis großen Auflösungen
|
|
104
112
|
.lux-tab-group .lux-tab-title.lux-badge-notification {
|
|
105
113
|
&.mat-badge.lux-badge-no-border .mat-badge-content {
|
|
106
|
-
|
|
114
|
+
left: unset;
|
|
115
|
+
bottom: unset;
|
|
116
|
+
top: 6px;
|
|
107
117
|
right: -30px;
|
|
108
118
|
}
|
|
109
119
|
}
|
|
@@ -112,7 +122,10 @@ lux-tabs {
|
|
|
112
122
|
.lux-tab-group lux-icon.lux-badge-notification,
|
|
113
123
|
.lux-tab-group lux-image.lux-badge-notification {
|
|
114
124
|
&.mat-badge.lux-badge-no-border .mat-badge-content {
|
|
115
|
-
|
|
125
|
+
left: unset;
|
|
126
|
+
bottom: unset;
|
|
127
|
+
top: 20px;
|
|
128
|
+
right: -22px;
|
|
116
129
|
}
|
|
117
130
|
}
|
|
118
131
|
.lux-tab-header-image-right,
|
|
@@ -181,20 +194,29 @@ lux-tabs {
|
|
|
181
194
|
/** ########## HOVER / FOCUS ########## **/
|
|
182
195
|
lux-tabs,
|
|
183
196
|
mat-card lux-tabs {
|
|
184
|
-
mat-tab-group div[role="tab"]:not(.mat-tab-disabled) {
|
|
197
|
+
mat-tab-group div[role="tab"]:not(.mat-mdc-tab-disabled) {
|
|
185
198
|
&:focus-visible {
|
|
186
199
|
@include luxfocus.focus-dark-mixin-inline;
|
|
187
|
-
border-radius:
|
|
200
|
+
border-radius: luxcommon.$app-border-radius;
|
|
188
201
|
}
|
|
189
202
|
|
|
190
|
-
&:hover
|
|
191
|
-
color:
|
|
203
|
+
&:hover {
|
|
204
|
+
background-color: transparent;
|
|
205
|
+
|
|
206
|
+
&:not(.mdc-tab--active) .lux-tab-title,
|
|
207
|
+
&:not(.mdc-tab--active) lux-icon {
|
|
208
|
+
color: luxcommon.$lux-hover-color;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
&:hover .mdc-tab__ripple::before {
|
|
213
|
+
background-color: transparent;
|
|
192
214
|
}
|
|
193
215
|
}
|
|
194
216
|
|
|
195
|
-
|
|
217
|
+
.mdc-tab-indicator__content {
|
|
196
218
|
background-color: map.get(luxpalette.$lux-palette_primary, 500) !important;
|
|
197
219
|
height: 4px;
|
|
198
|
-
border-radius:
|
|
220
|
+
border-radius: luxcommon.$app-border-radius;
|
|
199
221
|
}
|
|
200
222
|
}
|