@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
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
/*
|
|
6
6
|
* Theming for LUX-App-Content
|
|
7
7
|
*/
|
|
8
|
-
@import 'https://use.fontawesome.com/releases/v5.13.0/css/all.css';
|
|
9
|
-
@import 'https://fonts.googleapis.com/icon?family=Material+Icons';
|
|
10
8
|
lux-app-content {
|
|
11
9
|
background-color: #ffffff;
|
|
12
10
|
}
|
|
@@ -18,7 +16,7 @@ lux-app-footer .lux-app-footer {
|
|
|
18
16
|
background-color: #E3EBF5;
|
|
19
17
|
}
|
|
20
18
|
lux-app-footer .footerFont {
|
|
21
|
-
font-family: "Source
|
|
19
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
22
20
|
}
|
|
23
21
|
|
|
24
22
|
/*
|
|
@@ -73,7 +71,7 @@ lux-app-header .lux-side-nav .lux-side-nav-content lux-button, lux-app-header .l
|
|
|
73
71
|
* Theming for LUX-Button
|
|
74
72
|
*/
|
|
75
73
|
lux-button button.lux-button {
|
|
76
|
-
font-family: "Source
|
|
74
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
77
75
|
}
|
|
78
76
|
lux-button button.lux-button.mat-button, lux-button button.lux-button.mat-raised-button {
|
|
79
77
|
height: 45px;
|
|
@@ -211,6 +209,200 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
211
209
|
background: #003366;
|
|
212
210
|
}
|
|
213
211
|
|
|
212
|
+
/*
|
|
213
|
+
* Theming für Lux-File-Upload
|
|
214
|
+
*/
|
|
215
|
+
.lux-file-upload-container {
|
|
216
|
+
display: flex;
|
|
217
|
+
flex-direction: column;
|
|
218
|
+
flex: 1 1 auto;
|
|
219
|
+
/* Die eigentliche File-Inputs und den Download-Anchor blenden wir aus */
|
|
220
|
+
}
|
|
221
|
+
.lux-file-upload-container .lux-file-upload-drop-container {
|
|
222
|
+
display: flex;
|
|
223
|
+
flex-direction: column;
|
|
224
|
+
justify-content: space-between;
|
|
225
|
+
align-items: center;
|
|
226
|
+
flex: 1 1 auto;
|
|
227
|
+
border: 1px solid var(--lux-theme-primary-500);
|
|
228
|
+
border-radius: 4px;
|
|
229
|
+
color: var(--lux-theme-primary-500);
|
|
230
|
+
}
|
|
231
|
+
.lux-file-upload-container .lux-file-upload-drop-container .lux-file-upload-drop-label-container {
|
|
232
|
+
display: flex;
|
|
233
|
+
flex-direction: row;
|
|
234
|
+
justify-content: space-between;
|
|
235
|
+
align-items: center;
|
|
236
|
+
flex: 1 1 auto;
|
|
237
|
+
gap: 12px;
|
|
238
|
+
padding: 24px 48px;
|
|
239
|
+
}
|
|
240
|
+
.lux-file-upload-container .lux-file-upload-drop-container .lux-file-upload-drop-container-progress, .lux-file-upload-container .lux-file-upload-drop-container .lux-file-upload-drop-container-no-progress {
|
|
241
|
+
height: 8px;
|
|
242
|
+
}
|
|
243
|
+
.lux-file-upload-container .lux-file-upload-drop-container.lux-file-upload-drop-container-disabled {
|
|
244
|
+
color: var(--lux-theme-dark-disabled-text);
|
|
245
|
+
background-color: var(--lux-theme-app-data-bg);
|
|
246
|
+
border: 1px solid var(--lux-theme-dark-disabled-text);
|
|
247
|
+
}
|
|
248
|
+
.lux-file-upload-container .lux-file-upload-drop-container.lux-file-upload-drop-container-disabled .lux-file-upload-link {
|
|
249
|
+
cursor: default;
|
|
250
|
+
}
|
|
251
|
+
.lux-file-upload-container .lux-file-upload-drop-container.lux-file-upload-drag-active {
|
|
252
|
+
background-color: var(--lux-theme-selected-bg-color);
|
|
253
|
+
}
|
|
254
|
+
.lux-file-upload-container .lux-file-upload-drop-container .lux-file-upload-icon {
|
|
255
|
+
display: flex;
|
|
256
|
+
flex: 0 0 auto;
|
|
257
|
+
}
|
|
258
|
+
.lux-file-upload-container .lux-file-upload-drop-container .lux-file-upload-label-container {
|
|
259
|
+
display: flex;
|
|
260
|
+
flex: 1 1 auto;
|
|
261
|
+
}
|
|
262
|
+
.lux-file-upload-container .lux-file-upload-drop-container .lux-file-upload-link {
|
|
263
|
+
cursor: pointer;
|
|
264
|
+
text-decoration: underline;
|
|
265
|
+
white-space: nowrap;
|
|
266
|
+
}
|
|
267
|
+
.lux-file-upload-container .lux-file-upload-error-container {
|
|
268
|
+
display: flex;
|
|
269
|
+
flex-direction: row;
|
|
270
|
+
justify-content: space-between;
|
|
271
|
+
align-items: center;
|
|
272
|
+
flex: 1 1 auto;
|
|
273
|
+
gap: 12px;
|
|
274
|
+
border: 1px solid var(--lux-theme-warn-500);
|
|
275
|
+
border-radius: 4px;
|
|
276
|
+
color: var(--lux-theme-warn-500);
|
|
277
|
+
padding: 18px 15px 15px 26px;
|
|
278
|
+
margin-bottom: 12px;
|
|
279
|
+
}
|
|
280
|
+
.lux-file-upload-container .lux-file-upload-error-container .lux-file-upload-error-icon {
|
|
281
|
+
display: flex;
|
|
282
|
+
flex: 0 0 30px;
|
|
283
|
+
}
|
|
284
|
+
.lux-file-upload-container .lux-file-upload-error-container .lux-file-upload-error-message {
|
|
285
|
+
display: flex;
|
|
286
|
+
flex: 1 1 auto;
|
|
287
|
+
}
|
|
288
|
+
.lux-file-upload-container .lux-file-upload-error-container .lux-file-upload-error-button {
|
|
289
|
+
display: flex;
|
|
290
|
+
flex: 0 0 auto;
|
|
291
|
+
}
|
|
292
|
+
.lux-file-upload-container .lux-file-upload-error-container .lux-file-upload-error-button button {
|
|
293
|
+
padding: 0;
|
|
294
|
+
margin: 0;
|
|
295
|
+
border-radius: 8px;
|
|
296
|
+
min-width: 40px;
|
|
297
|
+
min-height: 30px;
|
|
298
|
+
}
|
|
299
|
+
.lux-file-upload-container .lux-file-upload-error-container .lux-file-upload-error-button button i {
|
|
300
|
+
font-size: 24px;
|
|
301
|
+
}
|
|
302
|
+
.lux-file-upload-container .lux-file-upload-hint-container {
|
|
303
|
+
margin-top: 4px;
|
|
304
|
+
margin-bottom: 12px;
|
|
305
|
+
}
|
|
306
|
+
.lux-file-upload-container .lux-file-upload-no-hint-container {
|
|
307
|
+
min-height: 12px;
|
|
308
|
+
}
|
|
309
|
+
.lux-file-upload-container .lux-file-upload-view-item-container {
|
|
310
|
+
display: flex;
|
|
311
|
+
flex-direction: row;
|
|
312
|
+
justify-content: space-between;
|
|
313
|
+
align-items: center;
|
|
314
|
+
flex: 1 1 auto;
|
|
315
|
+
gap: 12px;
|
|
316
|
+
background-color: var(--lux-theme-selected-bg-color);
|
|
317
|
+
border: 1px solid var(--lux-theme-accent-500);
|
|
318
|
+
border-radius: 4px;
|
|
319
|
+
color: var(--lux-theme-primary-500);
|
|
320
|
+
padding: 18px 15px 18px 26px;
|
|
321
|
+
margin-bottom: 12px;
|
|
322
|
+
}
|
|
323
|
+
.lux-file-upload-container .lux-file-upload-view-item-container.lux-file-upload-view-item-disabled {
|
|
324
|
+
color: var(--lux-theme-dark-disabled-text);
|
|
325
|
+
background-color: var(--lux-theme-app-data-bg);
|
|
326
|
+
border: 1px solid var(--lux-theme-dark-disabled-text);
|
|
327
|
+
}
|
|
328
|
+
.lux-file-upload-container .lux-file-upload-view-item-container .lux-file-upload-view-item {
|
|
329
|
+
display: flex;
|
|
330
|
+
flex-direction: row;
|
|
331
|
+
justify-content: space-between;
|
|
332
|
+
align-items: center;
|
|
333
|
+
flex: 1 1 auto;
|
|
334
|
+
gap: 12px;
|
|
335
|
+
}
|
|
336
|
+
.lux-file-upload-container .lux-file-upload-view-item-container .lux-file-upload-view-item .lux-file-upload-view-item-icon {
|
|
337
|
+
display: flex;
|
|
338
|
+
flex: 0 0 30px;
|
|
339
|
+
}
|
|
340
|
+
.lux-file-upload-container .lux-file-upload-view-item-container .lux-file-upload-view-item .lux-file-upload-view-item-label-container {
|
|
341
|
+
display: flex;
|
|
342
|
+
flex: 1 1 auto;
|
|
343
|
+
}
|
|
344
|
+
.lux-file-upload-container .lux-file-upload-view-item-container .lux-file-upload-view-item lux-button.lux-file-upload-view-item-delete-button {
|
|
345
|
+
display: flex;
|
|
346
|
+
align-items: center;
|
|
347
|
+
}
|
|
348
|
+
.lux-file-upload-container .lux-file-upload-view-item-container .lux-file-upload-view-item lux-button.lux-file-upload-view-item-delete-button button {
|
|
349
|
+
padding: 0;
|
|
350
|
+
margin: 0;
|
|
351
|
+
border-radius: 8px;
|
|
352
|
+
min-width: 40px;
|
|
353
|
+
min-height: 30px;
|
|
354
|
+
}
|
|
355
|
+
.lux-file-upload-container .lux-file-upload-view-item-container .lux-file-upload-view-item lux-button.lux-file-upload-view-item-delete-button button i {
|
|
356
|
+
font-size: 24px;
|
|
357
|
+
}
|
|
358
|
+
.lux-file-upload-container .lux-file-upload-input {
|
|
359
|
+
display: none;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.file-upload-dialog-title-container {
|
|
363
|
+
display: flex;
|
|
364
|
+
flex-direction: column;
|
|
365
|
+
gap: 10px;
|
|
366
|
+
}
|
|
367
|
+
.file-upload-dialog-title-container .file-upload-dialog-close-button-container {
|
|
368
|
+
display: flex;
|
|
369
|
+
flex: 1 0 auto;
|
|
370
|
+
justify-content: flex-end;
|
|
371
|
+
align-items: center;
|
|
372
|
+
}
|
|
373
|
+
.file-upload-dialog-title-container .file-upload-dialog-close-button-container .file-upload-dialog-close-button {
|
|
374
|
+
display: flex;
|
|
375
|
+
flex: 0 0 auto;
|
|
376
|
+
}
|
|
377
|
+
.file-upload-dialog-title-container .file-upload-dialog-close-button-container .file-upload-dialog-close-button button {
|
|
378
|
+
padding: 0;
|
|
379
|
+
margin: 0;
|
|
380
|
+
border-radius: 8px;
|
|
381
|
+
min-width: 40px;
|
|
382
|
+
min-height: 40px;
|
|
383
|
+
}
|
|
384
|
+
.file-upload-dialog-title-container .file-upload-dialog-close-button-container .file-upload-dialog-close-button button i,
|
|
385
|
+
.file-upload-dialog-title-container .file-upload-dialog-close-button-container .file-upload-dialog-close-button button mat-icon {
|
|
386
|
+
font-size: 30px !important;
|
|
387
|
+
}
|
|
388
|
+
.file-upload-dialog-title-container .file-upload-dialog-title {
|
|
389
|
+
padding-right: 50px;
|
|
390
|
+
}
|
|
391
|
+
.file-upload-dialog-title-container .file-upload-dialog-content-text {
|
|
392
|
+
padding-bottom: 30px;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.file-dialog div.mat-dialog-title.lux-dialog-title {
|
|
396
|
+
font-size: 28px;
|
|
397
|
+
font-weight: normal;
|
|
398
|
+
margin-bottom: 0;
|
|
399
|
+
}
|
|
400
|
+
.file-dialog p {
|
|
401
|
+
margin: 0;
|
|
402
|
+
padding-top: 12px;
|
|
403
|
+
padding-bottom: 30px;
|
|
404
|
+
}
|
|
405
|
+
|
|
214
406
|
/*
|
|
215
407
|
* Theming for LUX-Form-Controls
|
|
216
408
|
*/
|
|
@@ -592,7 +784,7 @@ lux-tile .lux-highlight {
|
|
|
592
784
|
*/
|
|
593
785
|
lux-toggle .mat-slide-toggle label {
|
|
594
786
|
color: #003366;
|
|
595
|
-
font-family: "Source
|
|
787
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
596
788
|
}
|
|
597
789
|
lux-toggle .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
|
|
598
790
|
background-color: #b3c2d1;
|
|
@@ -623,6 +815,237 @@ mat-tooltip-component .mat-tooltip {
|
|
|
623
815
|
font-size: 14px;
|
|
624
816
|
}
|
|
625
817
|
|
|
818
|
+
/*
|
|
819
|
+
* Theming für Lux-Stepper-Large
|
|
820
|
+
*/
|
|
821
|
+
lux-stepper-large {
|
|
822
|
+
display: flex;
|
|
823
|
+
flex-direction: row;
|
|
824
|
+
height: 100%;
|
|
825
|
+
overflow-y: hidden;
|
|
826
|
+
background-color: transparent;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.lux-stepper-large-container {
|
|
830
|
+
display: flex;
|
|
831
|
+
flex: 1 1 auto;
|
|
832
|
+
flex-direction: row;
|
|
833
|
+
gap: 30px;
|
|
834
|
+
}
|
|
835
|
+
.lux-stepper-large-container .lux-stepper-large-button-container {
|
|
836
|
+
display: flex;
|
|
837
|
+
flex-flow: row wrap;
|
|
838
|
+
justify-content: space-between;
|
|
839
|
+
align-items: center;
|
|
840
|
+
gap: 30px;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.lux-stepper-large-button-container {
|
|
844
|
+
margin-top: 30px;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.lux-stepper-large-nav-container {
|
|
848
|
+
display: flex;
|
|
849
|
+
flex-direction: column;
|
|
850
|
+
flex: 0 1 30%;
|
|
851
|
+
gap: 12px;
|
|
852
|
+
padding: 12px;
|
|
853
|
+
overflow-y: auto;
|
|
854
|
+
min-width: 400px;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.lux-stepper-large-nav-item {
|
|
858
|
+
display: flex;
|
|
859
|
+
flex-direction: row;
|
|
860
|
+
justify-content: flex-start;
|
|
861
|
+
align-items: center;
|
|
862
|
+
font-size: 22px;
|
|
863
|
+
line-height: 1.5;
|
|
864
|
+
}
|
|
865
|
+
.lux-stepper-large-nav-item.lux-active {
|
|
866
|
+
font-weight: bold;
|
|
867
|
+
}
|
|
868
|
+
.lux-stepper-large-nav-item.lux-completed {
|
|
869
|
+
color: #2E8533;
|
|
870
|
+
}
|
|
871
|
+
.lux-stepper-large-nav-item.lux-completed a {
|
|
872
|
+
text-decoration: underline;
|
|
873
|
+
}
|
|
874
|
+
.lux-stepper-large-nav-item.lux-disabled {
|
|
875
|
+
opacity: 0.6;
|
|
876
|
+
}
|
|
877
|
+
.lux-stepper-large-nav-item.lux-completed .lux-stepper-large-nav-item-number-container {
|
|
878
|
+
color: #ffffff;
|
|
879
|
+
background-color: #2E8533;
|
|
880
|
+
}
|
|
881
|
+
.lux-stepper-large-nav-item.lux-active .lux-stepper-large-nav-item-number-container {
|
|
882
|
+
color: #ffffff;
|
|
883
|
+
background-color: #003366;
|
|
884
|
+
}
|
|
885
|
+
.lux-stepper-large-nav-item.lux-disabled .lux-stepper-large-nav-item-number-container {
|
|
886
|
+
color: #003366;
|
|
887
|
+
background-color: #eff3f6;
|
|
888
|
+
}
|
|
889
|
+
.lux-stepper-large-nav-item.lux-disabled .lux-stepper-large-nav-item-label {
|
|
890
|
+
color: #003366;
|
|
891
|
+
}
|
|
892
|
+
.lux-stepper-large-nav-item .lux-stepper-large-nav-item-number-container {
|
|
893
|
+
max-width: 45px;
|
|
894
|
+
max-height: 45px;
|
|
895
|
+
margin: 0 15px 0 0;
|
|
896
|
+
padding: 6px 11px;
|
|
897
|
+
border-radius: 18px;
|
|
898
|
+
}
|
|
899
|
+
.lux-stepper-large-nav-item .lux-stepper-large-nav-item-number-container .lux-stepper-large-nav-item-number {
|
|
900
|
+
text-align: center;
|
|
901
|
+
}
|
|
902
|
+
.lux-stepper-large-nav-item .lux-stepper-large-nav-item-label-container {
|
|
903
|
+
display: flex;
|
|
904
|
+
flex-direction: row;
|
|
905
|
+
justify-content: center;
|
|
906
|
+
align-items: center;
|
|
907
|
+
}
|
|
908
|
+
.lux-stepper-large-nav-item .lux-stepper-large-nav-item-label-container .lux-stepper-large-nav-item-label-link {
|
|
909
|
+
cursor: pointer;
|
|
910
|
+
}
|
|
911
|
+
.lux-stepper-large-nav-item .lux-stepper-large-nav-item-label-container .lux-stepper-large-nav-item-complete {
|
|
912
|
+
color: #2E8533;
|
|
913
|
+
font-size: 23px;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.lux-stepper-large-content {
|
|
917
|
+
display: flex;
|
|
918
|
+
flex-direction: column;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.lux-stepper-large-content-container {
|
|
922
|
+
display: flex;
|
|
923
|
+
flex-direction: column;
|
|
924
|
+
flex: 1 1 70%;
|
|
925
|
+
overflow-y: auto;
|
|
926
|
+
padding: 12px;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.lux-stepper-large-mobile-container {
|
|
930
|
+
display: flex;
|
|
931
|
+
flex-direction: column;
|
|
932
|
+
flex: 1 1 auto;
|
|
933
|
+
overflow-y: auto;
|
|
934
|
+
padding: 12px;
|
|
935
|
+
}
|
|
936
|
+
.lux-stepper-large-mobile-container lux-button {
|
|
937
|
+
display: flex;
|
|
938
|
+
}
|
|
939
|
+
.lux-stepper-large-mobile-container lux-button button {
|
|
940
|
+
display: flex;
|
|
941
|
+
flex: 1 1 auto;
|
|
942
|
+
justify-content: center;
|
|
943
|
+
}
|
|
944
|
+
.lux-stepper-large-mobile-container .lux-stepper-large-button-container {
|
|
945
|
+
display: flex;
|
|
946
|
+
flex-direction: column;
|
|
947
|
+
justify-content: center;
|
|
948
|
+
align-items: stretch;
|
|
949
|
+
gap: 30px;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.lux-stepper-large-mobile-header {
|
|
953
|
+
display: flex;
|
|
954
|
+
flex-direction: row;
|
|
955
|
+
justify-content: flex-start;
|
|
956
|
+
align-items: center;
|
|
957
|
+
margin-top: 2px;
|
|
958
|
+
font-size: 12px;
|
|
959
|
+
}
|
|
960
|
+
.lux-stepper-large-mobile-header .lux-stepper-large-mobile-header-label {
|
|
961
|
+
display: flex;
|
|
962
|
+
flex: 0 1 auto;
|
|
963
|
+
}
|
|
964
|
+
.lux-stepper-large-mobile-header .lux-stepper-large-mobile-header-button {
|
|
965
|
+
display: flex;
|
|
966
|
+
flex: 0 0 auto;
|
|
967
|
+
padding: 0;
|
|
968
|
+
}
|
|
969
|
+
.lux-stepper-large-mobile-header .lux-stepper-large-mobile-header-button button {
|
|
970
|
+
padding: 0;
|
|
971
|
+
min-height: 45px;
|
|
972
|
+
min-width: 45px;
|
|
973
|
+
display: flex;
|
|
974
|
+
justify-content: center;
|
|
975
|
+
}
|
|
976
|
+
.lux-stepper-large-mobile-header .lux-stepper-large-mobile-header-button button i {
|
|
977
|
+
font-size: 25px;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.lux-stepper-large-mobile-overlay-backdrop {
|
|
981
|
+
opacity: 0.6;
|
|
982
|
+
background-color: #636d76;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.lux-stepper-large-mobile-nav-container {
|
|
986
|
+
display: flex;
|
|
987
|
+
flex-direction: column;
|
|
988
|
+
overflow: hidden;
|
|
989
|
+
min-height: calc(100% - 0px);
|
|
990
|
+
max-height: calc(100% - 0px);
|
|
991
|
+
padding: 0;
|
|
992
|
+
background: #ffffff;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.lux-stepper-large-mobile-nav-close-button-container {
|
|
996
|
+
display: flex;
|
|
997
|
+
flex-direction: row;
|
|
998
|
+
justify-content: flex-end;
|
|
999
|
+
align-items: center;
|
|
1000
|
+
margin-top: 13px;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.lux-stepper-large-mobile-nav-header {
|
|
1004
|
+
display: flex;
|
|
1005
|
+
flex-direction: row;
|
|
1006
|
+
padding: 0 30px 24px 30px;
|
|
1007
|
+
}
|
|
1008
|
+
.lux-stepper-large-mobile-nav-header div {
|
|
1009
|
+
font-family: "Korb", "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
1010
|
+
font-size: 28px;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.lux-stepper-large-mobile-nav-item-container {
|
|
1014
|
+
display: flex;
|
|
1015
|
+
flex-direction: column;
|
|
1016
|
+
gap: 12px;
|
|
1017
|
+
overflow: auto;
|
|
1018
|
+
padding: 0 30px 30px 30px;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.lux-stepper-large-mobile-nav-item {
|
|
1022
|
+
display: flex;
|
|
1023
|
+
flex-direction: row;
|
|
1024
|
+
justify-content: flex-start;
|
|
1025
|
+
align-items: center;
|
|
1026
|
+
font-size: 18px;
|
|
1027
|
+
}
|
|
1028
|
+
.lux-stepper-large-mobile-nav-item .lux-stepper-large-mobile-nav-item-number-container {
|
|
1029
|
+
max-width: 30px;
|
|
1030
|
+
max-height: 30px;
|
|
1031
|
+
margin: 0 10px 0 0;
|
|
1032
|
+
padding: 1px 6px 2px 5px;
|
|
1033
|
+
border-radius: 12px;
|
|
1034
|
+
}
|
|
1035
|
+
.lux-stepper-large-mobile-nav-item .lux-stepper-large-mobile-nav-item-label-container {
|
|
1036
|
+
display: flex;
|
|
1037
|
+
flex-direction: row;
|
|
1038
|
+
justify-content: center;
|
|
1039
|
+
align-items: center;
|
|
1040
|
+
}
|
|
1041
|
+
.lux-stepper-large-mobile-nav-item .lux-stepper-large-mobile-nav-item-label-container .lux-stepper-large-mobile-nav-item-label-link {
|
|
1042
|
+
cursor: pointer;
|
|
1043
|
+
}
|
|
1044
|
+
.lux-stepper-large-mobile-nav-item .lux-stepper-large-mobile-nav-item-label-container .lux-stepper-large-mobile-nav-item-complete {
|
|
1045
|
+
color: #2E8533;
|
|
1046
|
+
font-size: 18px;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
626
1049
|
/*
|
|
627
1050
|
Dieses Partial-SCSS dient der Verwaltung der Styles für Fokus, Hover und Selected für die LUX-Components und
|
|
628
1051
|
die ihnen zugrunde liegenden Material Components.
|
|
@@ -1121,6 +1544,28 @@ lux-message-box div.lux-message-box-content div.lux-message-container:not(.lux-b
|
|
|
1121
1544
|
color: #e3ebf5;
|
|
1122
1545
|
}
|
|
1123
1546
|
|
|
1547
|
+
/** ########## Stepper large ########## **/
|
|
1548
|
+
lux-stepper-large a:focus {
|
|
1549
|
+
outline: none;
|
|
1550
|
+
}
|
|
1551
|
+
lux-stepper-large a:hover {
|
|
1552
|
+
background-color: #e3ebf5 !important;
|
|
1553
|
+
border-radius: 4px;
|
|
1554
|
+
}
|
|
1555
|
+
lux-stepper-large a.lux-focused {
|
|
1556
|
+
background-color: #e3ebf5 !important;
|
|
1557
|
+
border-radius: 4px;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
/** ########## File-Upload ########## **/
|
|
1561
|
+
.lux-file-upload-drop-container {
|
|
1562
|
+
margin-left: 1px;
|
|
1563
|
+
margin-right: 1px;
|
|
1564
|
+
}
|
|
1565
|
+
.lux-file-upload-drop-container:focus {
|
|
1566
|
+
outline: 1px dotted #000000 !important;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1124
1569
|
:root {
|
|
1125
1570
|
--lux-theme-primary-50: #e0e7ed;
|
|
1126
1571
|
--lux-theme-primary-50-contrast: #000000;
|
|
@@ -1265,7 +1710,7 @@ body,
|
|
|
1265
1710
|
}
|
|
1266
1711
|
|
|
1267
1712
|
h1, h2, h3, h4, h5, h6 {
|
|
1268
|
-
font-family: "Source
|
|
1713
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
1269
1714
|
}
|
|
1270
1715
|
|
|
1271
1716
|
h1 {
|
|
@@ -1402,7 +1847,7 @@ body {
|
|
|
1402
1847
|
}
|
|
1403
1848
|
|
|
1404
1849
|
div {
|
|
1405
|
-
font-family: "Source
|
|
1850
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
1406
1851
|
}
|
|
1407
1852
|
|
|
1408
1853
|
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.lux-file-preview-backdrop {
|
|
@@ -1451,10 +1896,18 @@ lux-card.lux-card-grow mat-card-content {
|
|
|
1451
1896
|
display: none;
|
|
1452
1897
|
}
|
|
1453
1898
|
|
|
1899
|
+
.lux-display-none-important {
|
|
1900
|
+
display: none !important;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1454
1903
|
.lux-hidden {
|
|
1455
1904
|
visibility: hidden;
|
|
1456
1905
|
}
|
|
1457
1906
|
|
|
1907
|
+
.lux-hidden-important {
|
|
1908
|
+
visibility: hidden !important;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1458
1911
|
.lux-nowrap {
|
|
1459
1912
|
white-space: nowrap;
|
|
1460
1913
|
}
|
|
@@ -6602,15 +7055,15 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
6602
7055
|
|
|
6603
7056
|
body {
|
|
6604
7057
|
color: #003366;
|
|
6605
|
-
font-family: "Source
|
|
7058
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
6606
7059
|
}
|
|
6607
7060
|
|
|
6608
7061
|
p, div {
|
|
6609
|
-
font-family: "Source
|
|
7062
|
+
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
6610
7063
|
}
|
|
6611
7064
|
|
|
6612
7065
|
h1, h2, h3, h4, h5, h6 {
|
|
6613
|
-
font-family: "Korb", "Source
|
|
7066
|
+
font-family: "Korb", "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
6614
7067
|
}
|
|
6615
7068
|
|
|
6616
7069
|
lux-card .mat-card {
|
|
@@ -6625,7 +7078,7 @@ lux-panel .mat-expansion-panel, lux-panel .mat-expansion-panel-header-title, lux
|
|
|
6625
7078
|
* Theming for LUX-App-Footer
|
|
6626
7079
|
*/
|
|
6627
7080
|
lux-app-footer .lux-app-footer .lux-menu-extended > lux-button button.lux-button {
|
|
6628
|
-
font-size:
|
|
7081
|
+
font-size: 22px;
|
|
6629
7082
|
}
|
|
6630
7083
|
|
|
6631
7084
|
lux-app-header .lux-app-header {
|
|
@@ -6742,7 +7195,7 @@ lux-button button.lux-button {
|
|
|
6742
7195
|
lux-button button.lux-button.mat-button, lux-button button.lux-button.mat-raised-button {
|
|
6743
7196
|
border-radius: 18px;
|
|
6744
7197
|
height: 45px;
|
|
6745
|
-
font-size:
|
|
7198
|
+
font-size: 22px;
|
|
6746
7199
|
margin-left: 1px;
|
|
6747
7200
|
margin-right: 1px;
|
|
6748
7201
|
}
|