@ihk-gfi/lux-components-theme 16.0.1 → 16.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/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 +1 -2
- 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 +54 -30
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base/_luxcomponents.scss +0 -1
- package/src/base/components/_luxMasterDetailAc.scss +1 -1
- package/src/green/_custom.scss +42 -3
- package/src/green/_luxcommon.scss +4 -3
package/src/green/_custom.scss
CHANGED
|
@@ -34,7 +34,7 @@ h3,
|
|
|
34
34
|
h4,
|
|
35
35
|
h5,
|
|
36
36
|
h6 {
|
|
37
|
-
font-family:
|
|
37
|
+
font-family: luxcommon.$app-headline-font;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
/*
|
|
@@ -59,6 +59,27 @@ lux-panel {
|
|
|
59
59
|
border-radius: 4px;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
/*
|
|
63
|
+
* Theming for LUX-App-Header
|
|
64
|
+
*/
|
|
65
|
+
lux-app-header .lux-app-header {
|
|
66
|
+
|
|
67
|
+
.lux-header-title {
|
|
68
|
+
p, div, span {
|
|
69
|
+
font-weight: 400;
|
|
70
|
+
font-family: luxcommon.$app-button-font-family;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.lux-header-user {
|
|
75
|
+
p, div, span {
|
|
76
|
+
font-weight: 400;
|
|
77
|
+
font-family: luxcommon.$app-button-font-family;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
|
|
62
83
|
/*
|
|
63
84
|
* Theming for LUX-App-Footer
|
|
64
85
|
*/
|
|
@@ -70,6 +91,12 @@ lux-app-footer {
|
|
|
70
91
|
button {
|
|
71
92
|
&.lux-button {
|
|
72
93
|
font-size: $button-font-size;
|
|
94
|
+
|
|
95
|
+
p,
|
|
96
|
+
div,
|
|
97
|
+
span {
|
|
98
|
+
font-family: luxcommon.$app-button-font-family;
|
|
99
|
+
}
|
|
73
100
|
}
|
|
74
101
|
}
|
|
75
102
|
}
|
|
@@ -81,8 +108,14 @@ lux-app-footer {
|
|
|
81
108
|
* Theming for LUX-Button
|
|
82
109
|
*/
|
|
83
110
|
lux-button button.lux-button {
|
|
84
|
-
font-weight:
|
|
85
|
-
font-family: luxcommon.$app-font-family;
|
|
111
|
+
font-weight: 400 !important;
|
|
112
|
+
font-family: luxcommon.$app-button-font-family;
|
|
113
|
+
|
|
114
|
+
p,
|
|
115
|
+
div,
|
|
116
|
+
span {
|
|
117
|
+
font-family: luxcommon.$app-button-font-family;
|
|
118
|
+
}
|
|
86
119
|
|
|
87
120
|
&.mat-button,
|
|
88
121
|
&.mat-raised-button,
|
|
@@ -174,6 +207,12 @@ lux-button button.lux-button {
|
|
|
174
207
|
*/
|
|
175
208
|
.lux-menu-extended {
|
|
176
209
|
> lux-button {
|
|
210
|
+
|
|
211
|
+
&.lux-menu-item .lux-button-label {
|
|
212
|
+
font-weight: 400;
|
|
213
|
+
font-family: luxcommon.$app-button-font-family;
|
|
214
|
+
}
|
|
215
|
+
|
|
177
216
|
button {
|
|
178
217
|
padding-left: 16px;
|
|
179
218
|
padding-right: 16px;
|
|
@@ -19,13 +19,14 @@ $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%);
|
|
21
21
|
$app-border-color: rgba(black, 0.12);
|
|
22
|
-
$app-headline-font: Korb,
|
|
23
|
-
$app-font-family:
|
|
22
|
+
$app-headline-font: Korb, "Blogger Sans", "Source Sans Pro", Arial, sans-serif;
|
|
23
|
+
$app-font-family: "Source Sans Pro", Arial, sans-serif;
|
|
24
|
+
$app-button-font-family: "Blogger Sans", $app-font-family;
|
|
24
25
|
$app-border-radius: 4px;
|
|
25
26
|
|
|
26
27
|
// Form
|
|
27
28
|
$form-border-color: rgba(0, 0, 0, 0.42);
|
|
28
|
-
$form-control-font-size:
|
|
29
|
+
$form-control-font-size: 1rem;
|
|
29
30
|
$form-control-buffer: 6px;
|
|
30
31
|
|
|
31
32
|
// Button
|