@ihk-gfi/lux-components-theme 19.1.0 → 19.3.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 +8 -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 +186 -38
- 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 +272 -40
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base/_luxcomponents.scss +7 -0
- package/src/base/_luxfocus.scss +9 -0
- package/src/base/_luxstyles.scss +12 -0
- package/src/base/components/_luxButton.scss +0 -10
- package/src/base/components/_luxFilter.scss +3 -37
- package/src/base/components/_luxFormControlsAuthentic.scss +7 -1
- package/src/base/components/_luxMenu.scss +162 -1
- package/src/base/components/_luxTile.scss +0 -1
- package/src/base/components/_luxTileAc.scss +15 -1
- package/src/green/_custom.scss +101 -3
|
@@ -244,6 +244,13 @@ lux-datetimepicker-ac mat-datepicker-toggle .mat-mdc-button-persistent-ripple::b
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
/** ########## Select-AC ########## **/
|
|
247
|
+
@media (prefers-contrast: more) {
|
|
248
|
+
lux-select-ac .mat-mdc-select:focus,
|
|
249
|
+
lux-lookup-combobox-ac .mat-mdc-select:focus {
|
|
250
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
247
254
|
.lux-select-panel-ac mat-option.mat-mdc-option-multiple:hover:not(.mdc-list-item--disabled), .lux-select-panel-ac mat-option.mat-mdc-option-multiple:focus-visible:not(.mdc-list-item--disabled), .lux-select-panel-ac mat-option.mat-mdc-option-multiple.mat-mdc-option-active:not(.mdc-list-item--disabled),
|
|
248
255
|
.lux-select-panel-ac-multiple mat-option.mat-mdc-option-multiple:hover:not(.mdc-list-item--disabled),
|
|
249
256
|
.lux-select-panel-ac-multiple mat-option.mat-mdc-option-multiple:focus-visible:not(.mdc-list-item--disabled),
|
|
@@ -1084,19 +1091,28 @@ lux-tile-ac .mat-mdc-card.lux-tile-ac .lux-tile-content {
|
|
|
1084
1091
|
width: 100%;
|
|
1085
1092
|
grid-template-columns: 1fr auto;
|
|
1086
1093
|
gap: 5px;
|
|
1094
|
+
min-width: 0;
|
|
1087
1095
|
}
|
|
1088
1096
|
lux-tile-ac .mat-mdc-card.lux-tile-ac .lux-tile-content mat-card-title.lux-tile-title {
|
|
1089
1097
|
color: rgba(0, 0, 0, 0.87);
|
|
1090
|
-
font-family: "Blogger Sans", "Source Sans Pro", Helvetica, Arial, sans-serif;
|
|
1091
1098
|
line-height: 30px;
|
|
1092
1099
|
font-size: 1.25rem;
|
|
1093
1100
|
margin: 0;
|
|
1101
|
+
min-width: 0;
|
|
1102
|
+
}
|
|
1103
|
+
lux-tile-ac .mat-mdc-card.lux-tile-ac .lux-tile-content mat-card-title.lux-tile-title span {
|
|
1104
|
+
font-family: "Blogger Sans", "Source Sans Pro", Helvetica, Arial, sans-serif;
|
|
1105
|
+
}
|
|
1106
|
+
lux-tile-ac .mat-mdc-card.lux-tile-ac .lux-tile-content mat-card-subtitle.lux-tile-subtitle span {
|
|
1107
|
+
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
|
|
1108
|
+
font-size: 0.9375rem;
|
|
1094
1109
|
}
|
|
1095
1110
|
lux-tile-ac .mat-mdc-card.lux-tile-ac .lux-tile-content mat-card-subtitle.mat-mdc-card-subtitle:not(:first-child) {
|
|
1096
1111
|
color: rgba(0, 0, 0, 0.6);
|
|
1097
1112
|
font-size: 0.875rem;
|
|
1098
1113
|
font-weight: normal;
|
|
1099
1114
|
margin: 0px;
|
|
1115
|
+
min-width: 0;
|
|
1100
1116
|
grid-row-start: 2;
|
|
1101
1117
|
}
|
|
1102
1118
|
lux-tile-ac .mat-mdc-card.lux-tile-ac:not([class*=mat-elevation-z]) {
|
|
@@ -1235,7 +1251,6 @@ lux-tile .lux-tile-label {
|
|
|
1235
1251
|
flex-shrink: 1;
|
|
1236
1252
|
flex-grow: 0;
|
|
1237
1253
|
min-height: 40px;
|
|
1238
|
-
max-height: 70px;
|
|
1239
1254
|
text-align: center;
|
|
1240
1255
|
text-decoration-line: underline;
|
|
1241
1256
|
}
|
|
@@ -1791,6 +1806,18 @@ lux-card.lux-card-grow mat-card-content {
|
|
|
1791
1806
|
text-overflow: ellipsis;
|
|
1792
1807
|
}
|
|
1793
1808
|
|
|
1809
|
+
.lux-crop-2-lines {
|
|
1810
|
+
overflow: hidden;
|
|
1811
|
+
white-space: normal;
|
|
1812
|
+
word-wrap: break-word;
|
|
1813
|
+
overflow-wrap: break-word;
|
|
1814
|
+
display: -webkit-box;
|
|
1815
|
+
-webkit-box-orient: vertical;
|
|
1816
|
+
-webkit-line-clamp: 2;
|
|
1817
|
+
line-clamp: 2;
|
|
1818
|
+
text-overflow: ellipsis;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1794
1821
|
.lux-label {
|
|
1795
1822
|
color: rgba(0, 0, 0, 0.6);
|
|
1796
1823
|
font-size: 0.75rem;
|
|
@@ -4474,6 +4501,12 @@ lux-lookup-combobox-ac mat-select .mat-mdc-select-arrow-wrapper .mat-mdc-select-
|
|
|
4474
4501
|
mask-position: center;
|
|
4475
4502
|
mask-size: cover;
|
|
4476
4503
|
}
|
|
4504
|
+
@media (prefers-contrast: more) {
|
|
4505
|
+
lux-select-ac mat-select .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow svg,
|
|
4506
|
+
lux-lookup-combobox-ac mat-select .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow svg {
|
|
4507
|
+
background-color: ButtonText;
|
|
4508
|
+
}
|
|
4509
|
+
}
|
|
4477
4510
|
lux-select-ac mat-select[aria-readonly=true] .mat-mdc-select-arrow,
|
|
4478
4511
|
lux-lookup-combobox-ac mat-select[aria-readonly=true] .mat-mdc-select-arrow {
|
|
4479
4512
|
background-color: rgba(0, 0, 0, 0.38);
|
|
@@ -5460,9 +5493,6 @@ lux-button button:not([disabled]):focus-visible {
|
|
|
5460
5493
|
lux-button button:not([disabled]):not(.mat-mdc-fab):not(.mat-mdc-raised-button):not(.mat-mdc-unelevated-button):hover, lux-button button:not([disabled]).mat-mdc-outlined-button:hover {
|
|
5461
5494
|
background-color: #3c5772;
|
|
5462
5495
|
}
|
|
5463
|
-
lux-button button:not([disabled]):not(.mat-mdc-fab):not(.mat-mdc-raised-button):not(.mat-mdc-unelevated-button):hover.mat-accent, lux-button button:not([disabled]).mat-mdc-outlined-button:hover.mat-accent {
|
|
5464
|
-
color: #2b9838;
|
|
5465
|
-
}
|
|
5466
5496
|
lux-button button:not([disabled]).mat-mdc-fab:hover, lux-button button:not([disabled]).mat-mdc-raised-button:hover, lux-button button:not([disabled]).mat-mdc-unelevated-button:hover {
|
|
5467
5497
|
background-color: #3c5772 !important;
|
|
5468
5498
|
}
|
|
@@ -6217,6 +6247,113 @@ lux-menu .lux-menu-trigger > lux-button button.mat-mdc-button {
|
|
|
6217
6247
|
margin: 0;
|
|
6218
6248
|
}
|
|
6219
6249
|
|
|
6250
|
+
.lux-menu-section-panel,
|
|
6251
|
+
.lux-menu-section-panel:not(.lux-menu-panel-large) {
|
|
6252
|
+
min-width: 260px !important;
|
|
6253
|
+
max-width: 100%;
|
|
6254
|
+
}
|
|
6255
|
+
|
|
6256
|
+
.lux-menu-section-panel,
|
|
6257
|
+
.lux-menu-section-panel:has(.lux-menu-panel-large) {
|
|
6258
|
+
min-width: 360px !important;
|
|
6259
|
+
max-width: 100%;
|
|
6260
|
+
}
|
|
6261
|
+
|
|
6262
|
+
.lux-menu-section-panel .lux-menu-item-content {
|
|
6263
|
+
display: flex;
|
|
6264
|
+
align-items: center;
|
|
6265
|
+
width: 100%;
|
|
6266
|
+
}
|
|
6267
|
+
.lux-menu-section-panel .lux-menu-item-icon {
|
|
6268
|
+
margin-right: 8px;
|
|
6269
|
+
flex-shrink: 0;
|
|
6270
|
+
}
|
|
6271
|
+
.lux-menu-section-panel .lux-button-label {
|
|
6272
|
+
text-align: left;
|
|
6273
|
+
flex: 1 1 auto;
|
|
6274
|
+
white-space: normal;
|
|
6275
|
+
}
|
|
6276
|
+
.lux-menu-section-panel .lux-menu-item-badge-right {
|
|
6277
|
+
min-width: 0px !important;
|
|
6278
|
+
margin-left: auto;
|
|
6279
|
+
align-self: center;
|
|
6280
|
+
display: flex;
|
|
6281
|
+
}
|
|
6282
|
+
.lux-menu-section-panel .lux-button-label-subtitle {
|
|
6283
|
+
color: #3a5f94;
|
|
6284
|
+
font-size: 0.875rem;
|
|
6285
|
+
font-style: normal;
|
|
6286
|
+
font-weight: 400;
|
|
6287
|
+
letter-spacing: 0.07px;
|
|
6288
|
+
}
|
|
6289
|
+
.lux-menu-section-panel .lux-menu-panelheader-username {
|
|
6290
|
+
display: flex;
|
|
6291
|
+
padding: 12px 16px;
|
|
6292
|
+
flex-direction: column;
|
|
6293
|
+
align-items: flex-start;
|
|
6294
|
+
gap: 4px;
|
|
6295
|
+
align-self: stretch;
|
|
6296
|
+
font-weight: 600;
|
|
6297
|
+
font-size: 1rem;
|
|
6298
|
+
font-style: normal;
|
|
6299
|
+
line-height: 120%;
|
|
6300
|
+
}
|
|
6301
|
+
.lux-menu-section-panel .lux-menu-panelheader-username-subtitle {
|
|
6302
|
+
display: flex;
|
|
6303
|
+
flex-direction: column;
|
|
6304
|
+
align-items: flex-start;
|
|
6305
|
+
gap: 4px;
|
|
6306
|
+
align-self: stretch;
|
|
6307
|
+
font-weight: 400;
|
|
6308
|
+
font-size: 0.75rem;
|
|
6309
|
+
font-style: normal;
|
|
6310
|
+
line-height: normal;
|
|
6311
|
+
}
|
|
6312
|
+
.lux-menu-section-panel .lux-menu-section-title {
|
|
6313
|
+
display: flex;
|
|
6314
|
+
padding: 8px 16px;
|
|
6315
|
+
flex-direction: column;
|
|
6316
|
+
justify-content: center;
|
|
6317
|
+
align-items: flex-start;
|
|
6318
|
+
align-self: stretch;
|
|
6319
|
+
color: #605e5e;
|
|
6320
|
+
font-weight: 600;
|
|
6321
|
+
font-size: 1rem;
|
|
6322
|
+
letter-spacing: 0.08px;
|
|
6323
|
+
line-height: 120%; /* 19.2px */
|
|
6324
|
+
}
|
|
6325
|
+
.lux-menu-section-panel .lux-menu-item-divider {
|
|
6326
|
+
padding: 4px;
|
|
6327
|
+
}
|
|
6328
|
+
.lux-menu-section-panel .lux-menu-item-divider-large {
|
|
6329
|
+
margin-right: 16px;
|
|
6330
|
+
margin-left: 16px;
|
|
6331
|
+
}
|
|
6332
|
+
.lux-menu-section-panel .lux-menu-item.lux-menu-item-selected {
|
|
6333
|
+
background-color: #d5e3ff !important;
|
|
6334
|
+
}
|
|
6335
|
+
.lux-menu-section-panel .lux-menu-item-selected {
|
|
6336
|
+
background-color: #d5e3ff;
|
|
6337
|
+
}
|
|
6338
|
+
.lux-menu-section-panel .lux-menu-item-selected.lux-button-label {
|
|
6339
|
+
text-decoration-line: underline;
|
|
6340
|
+
text-decoration-style: solid;
|
|
6341
|
+
text-decoration-thickness: 10%;
|
|
6342
|
+
text-underline-offset: 5%;
|
|
6343
|
+
text-underline-position: from-font;
|
|
6344
|
+
}
|
|
6345
|
+
.lux-menu-section-panel .lux-menu-item-selected.lux-button-label-subtitle {
|
|
6346
|
+
text-decoration-color: #3a5f94;
|
|
6347
|
+
text-decoration-line: underline;
|
|
6348
|
+
text-decoration-style: solid;
|
|
6349
|
+
text-decoration-thickness: 12%;
|
|
6350
|
+
text-underline-offset: 5%;
|
|
6351
|
+
text-underline-position: from-font;
|
|
6352
|
+
}
|
|
6353
|
+
.lux-menu-section-panel .lux-menu-item-badge-right {
|
|
6354
|
+
text-align: end;
|
|
6355
|
+
}
|
|
6356
|
+
|
|
6220
6357
|
/** ########## Hover / Focus ########## **/
|
|
6221
6358
|
.lux-menu-panel .lux-menu-item:not([disabled=true]):focus-visible {
|
|
6222
6359
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
@@ -6232,7 +6369,40 @@ lux-menu .lux-menu-trigger > lux-button button.mat-mdc-button {
|
|
|
6232
6369
|
background-color: #4d7094;
|
|
6233
6370
|
}
|
|
6234
6371
|
.lux-menu-panel .lux-menu-item:not([disabled=true]):hover .mat-icon-no-color {
|
|
6235
|
-
color: #
|
|
6372
|
+
color: #ffffff;
|
|
6373
|
+
}
|
|
6374
|
+
|
|
6375
|
+
/** ########## Hover / Focus ########## **/
|
|
6376
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):focus-visible {
|
|
6377
|
+
background-color: #ffffff;
|
|
6378
|
+
color: #003366;
|
|
6379
|
+
border-radius: 4px;
|
|
6380
|
+
}
|
|
6381
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):focus-visible:after {
|
|
6382
|
+
width: 0px;
|
|
6383
|
+
border: none;
|
|
6384
|
+
}
|
|
6385
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):focus-visible .lux-button-label-subtitle {
|
|
6386
|
+
color: #3a5f94;
|
|
6387
|
+
}
|
|
6388
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):focus-visible .mat-icon-no-color {
|
|
6389
|
+
color: #003366;
|
|
6390
|
+
}
|
|
6391
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):hover {
|
|
6392
|
+
color: #ffffff;
|
|
6393
|
+
}
|
|
6394
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):hover .mat-icon-no-color {
|
|
6395
|
+
color: #ffffff;
|
|
6396
|
+
}
|
|
6397
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):hover .lux-button-label-subtitle {
|
|
6398
|
+
color: #ecf1ff;
|
|
6399
|
+
}
|
|
6400
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):hover .lux-button-label.lux-menu-item-selected {
|
|
6401
|
+
background-color: #4d7094;
|
|
6402
|
+
}
|
|
6403
|
+
.lux-menu-panel.lux-menu-section-panel .lux-menu-item:not([disabled=true]):hover .lux-button-label-subtitle.lux-menu-item-selected {
|
|
6404
|
+
background-color: #4d7094;
|
|
6405
|
+
text-decoration-color: #ffffff;
|
|
6236
6406
|
}
|
|
6237
6407
|
|
|
6238
6408
|
lux-table {
|
|
@@ -6447,8 +6617,7 @@ lux-table th.cdk-keyboard-focused div.mat-sort-header-container {
|
|
|
6447
6617
|
}
|
|
6448
6618
|
|
|
6449
6619
|
lux-filter-form lux-menu div.lux-menu-custom-trigger {
|
|
6450
|
-
padding
|
|
6451
|
-
padding-bottom: 4px;
|
|
6620
|
+
padding: 4px;
|
|
6452
6621
|
}
|
|
6453
6622
|
lux-filter-form .no-filter-active {
|
|
6454
6623
|
padding: 8px 25px;
|
|
@@ -6480,44 +6649,16 @@ lux-filter-form .filterPanel .mat-action-row {
|
|
|
6480
6649
|
padding: 0 !important;
|
|
6481
6650
|
border: none;
|
|
6482
6651
|
}
|
|
6483
|
-
lux-filter-form .
|
|
6484
|
-
|
|
6485
|
-
}
|
|
6486
|
-
lux-filter-form lux-menu.filter-menu .lux-menu-extended {
|
|
6487
|
-
padding: 0 !important;
|
|
6652
|
+
lux-filter-form .lux-filter-form-button button.lux-button.lux-icon-button {
|
|
6653
|
+
margin-left: 16px;
|
|
6488
6654
|
}
|
|
6489
6655
|
lux-filter-form lux-menu.filter-menu .lux-filter-menu-trigger button.lux-button-rounded {
|
|
6490
6656
|
height: 36px;
|
|
6491
6657
|
width: 36px;
|
|
6492
6658
|
min-width: 36px;
|
|
6493
6659
|
max-width: 36px;
|
|
6494
|
-
background-color: transparent;
|
|
6495
|
-
color: #003366;
|
|
6496
|
-
padding: 0px !important;
|
|
6497
|
-
margin: 0px 4px !important;
|
|
6498
6660
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
6499
6661
|
}
|
|
6500
|
-
lux-filter-form lux-menu .lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:hover {
|
|
6501
|
-
background-color: transparent !important;
|
|
6502
|
-
color: #4d7094;
|
|
6503
|
-
}
|
|
6504
|
-
lux-filter-form lux-menu .lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:focus-visible {
|
|
6505
|
-
outline: 4px solid rgb(0, 152, 218) !important;
|
|
6506
|
-
outline-offset: -4px;
|
|
6507
|
-
background-color: transparent !important;
|
|
6508
|
-
}
|
|
6509
|
-
lux-filter-form lux-menu .lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:active {
|
|
6510
|
-
background-color: transparent !important;
|
|
6511
|
-
color: #002753;
|
|
6512
|
-
}
|
|
6513
|
-
lux-filter-form lux-accordion lux-panel-header-title {
|
|
6514
|
-
width: 100%;
|
|
6515
|
-
}
|
|
6516
|
-
lux-filter-form lux-accordion lux-panel-header-title mat-panel-title.mat-expansion-panel-header-title {
|
|
6517
|
-
align-items: center;
|
|
6518
|
-
justify-content: space-between;
|
|
6519
|
-
margin: 0px;
|
|
6520
|
-
}
|
|
6521
6662
|
lux-filter-form lux-card .lux-card-header .lux-card-title,
|
|
6522
6663
|
lux-filter-form lux-card .lux-card-header .lux-card-subtitle {
|
|
6523
6664
|
height: 36px;
|
|
@@ -7495,6 +7636,13 @@ mat-expansion-panel.mat-expansion-panel:not([class*=mat-elevation-z]) .mat-expan
|
|
|
7495
7636
|
font-size: 1rem;
|
|
7496
7637
|
}
|
|
7497
7638
|
|
|
7639
|
+
.mat-expansion-panel-header.lux-dynamic-height {
|
|
7640
|
+
min-height: unset;
|
|
7641
|
+
height: unset;
|
|
7642
|
+
padding-top: 11px;
|
|
7643
|
+
padding-bottom: 11px;
|
|
7644
|
+
}
|
|
7645
|
+
|
|
7498
7646
|
.mat-expansion-panel {
|
|
7499
7647
|
--mat-expansion-container-shape: 4px;
|
|
7500
7648
|
--mat-expansion-container-shape: 4px;
|