@ngx-stoui/core 12.0.3 → 12.0.7
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/ngx-stoui.css +395 -401
- package/package.json +1 -1
- package/style/_fonts.scss +2 -1
- package/style/grid.scss +16 -0
- package/style/sto-dialog.scss +0 -6
- package/style/theme/_colors.scss +71 -3
- package/style/theme/_dialog.scss +29 -0
- package/style/theme/_filterpanel.scss +3 -34
- package/style/theme/_navigation-drawer.scss +51 -0
- package/style/theme/_theme-variables.scss +1 -1
- package/style/theme/components.scss +1 -0
package/ngx-stoui.css
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
@import url("https://eds-static.equinor.com/font/equinor-font.css");
|
|
2
|
-
@import url("https://fonts.googleapis.com/
|
|
2
|
+
@import url("https://fonts.googleapis.com/css?family=Material+Icons");
|
|
3
|
+
@import url("https://fonts.googleapis.com/css?family=Material+Icons+Outlined");
|
|
3
4
|
body:not(.sto-dark-theme) .sto-action-footer {
|
|
4
|
-
background-color:
|
|
5
|
-
border-top: 1px solid
|
|
5
|
+
background-color: white;
|
|
6
|
+
border-top: 1px solid gainsboro;
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
body.sto-dark-theme .sto-action-footer {
|
|
@@ -11,7 +12,7 @@ body.sto-dark-theme .sto-action-footer {
|
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
body:not(.sto-dark-theme) .sto-header {
|
|
14
|
-
background-color:
|
|
15
|
+
background-color: #FFFFFF !important;
|
|
15
16
|
}
|
|
16
17
|
body:not(.sto-dark-theme) .sto-header--test-environment {
|
|
17
18
|
border: 4px solid #ff9200;
|
|
@@ -23,13 +24,13 @@ body:not(.sto-dark-theme) .sto-header button {
|
|
|
23
24
|
color: #007079;
|
|
24
25
|
}
|
|
25
26
|
body:not(.sto-dark-theme) .sto-header button:focus {
|
|
26
|
-
background-color:
|
|
27
|
+
background-color: #f7f7f7;
|
|
27
28
|
}
|
|
28
29
|
body:not(.sto-dark-theme) .sto-header button:hover {
|
|
29
|
-
background-color:
|
|
30
|
+
background-color: #eaeaea;
|
|
30
31
|
}
|
|
31
32
|
body:not(.sto-dark-theme) .sto-header__actions--small {
|
|
32
|
-
background:
|
|
33
|
+
background: #FFFFFF;
|
|
33
34
|
}
|
|
34
35
|
body:not(.sto-dark-theme) .sto-breadcrumb__home {
|
|
35
36
|
color: #007079;
|
|
@@ -60,7 +61,7 @@ body:not(.sto-dark-theme) .sto-breadcrumb .separator {
|
|
|
60
61
|
color: #97cace;
|
|
61
62
|
}
|
|
62
63
|
.sto-dark-theme .sto-header button:focus {
|
|
63
|
-
background-color:
|
|
64
|
+
background-color: #212121;
|
|
64
65
|
}
|
|
65
66
|
.sto-dark-theme .sto-header button:hover {
|
|
66
67
|
background-color: rgba(255, 255, 255, 0.04);
|
|
@@ -194,56 +195,56 @@ body:not(.sto-dark-theme) .sto-breadcrumb .separator {
|
|
|
194
195
|
|
|
195
196
|
body:not(.sto-dark-theme) .sto-mdl-table {
|
|
196
197
|
background-color: transparent;
|
|
197
|
-
color:
|
|
198
|
+
color: #3d3d3d;
|
|
198
199
|
}
|
|
199
200
|
body:not(.sto-dark-theme) .sto-mdl-table .mat-icon-button {
|
|
200
|
-
color:
|
|
201
|
+
color: #565656;
|
|
201
202
|
}
|
|
202
203
|
body:not(.sto-dark-theme) .sto-mdl-table .mat-icon-button:hover {
|
|
203
|
-
color:
|
|
204
|
+
color: #3d3d3d;
|
|
204
205
|
}
|
|
205
206
|
body:not(.sto-dark-theme) .sto-mdl-table__actions {
|
|
206
|
-
border-bottom: 1px solid
|
|
207
|
+
border-bottom: 1px solid gainsboro;
|
|
207
208
|
}
|
|
208
209
|
body:not(.sto-dark-theme) .sto-mdl-table__header__row {
|
|
209
|
-
border-bottom: 1px solid
|
|
210
|
-
background-color: #
|
|
210
|
+
border-bottom: 1px solid gainsboro;
|
|
211
|
+
background-color: #FFFFFF;
|
|
211
212
|
}
|
|
212
213
|
body:not(.sto-dark-theme) .sto-mdl-table__header__row__cell {
|
|
213
|
-
color:
|
|
214
|
+
color: #3d3d3d;
|
|
214
215
|
}
|
|
215
216
|
body:not(.sto-dark-theme) .sto-mdl-table__header__row__cell__resize-handle span {
|
|
216
|
-
background:
|
|
217
|
+
background: gainsboro;
|
|
217
218
|
}
|
|
218
219
|
body:not(.sto-dark-theme) .sto-mdl-table__header__row__cell:hover {
|
|
219
|
-
background-color:
|
|
220
|
+
background-color: #eaeaea;
|
|
220
221
|
}
|
|
221
222
|
body:not(.sto-dark-theme) .sto-mdl-table__body__row {
|
|
222
|
-
border-bottom: 1px solid
|
|
223
|
+
border-bottom: 1px solid gainsboro;
|
|
223
224
|
}
|
|
224
225
|
body:not(.sto-dark-theme) .sto-mdl-table__body__row--selected {
|
|
225
|
-
background-color:
|
|
226
|
+
background-color: #f7f7f7;
|
|
226
227
|
}
|
|
227
228
|
body:not(.sto-dark-theme) .sto-mdl-table__body__row:not(.sto-mdl-table__body__row--selected):hover, body:not(.sto-dark-theme) .sto-mdl-table__body__row:not(.sto-mdl-table__body__row--selected):focus {
|
|
228
|
-
background-color:
|
|
229
|
+
background-color: #eaeaea;
|
|
229
230
|
}
|
|
230
231
|
body:not(.sto-dark-theme) .sto-mdl-table__footer__row {
|
|
231
|
-
border-bottom: 1px solid
|
|
232
|
-
border-top: 1px solid
|
|
233
|
-
background: #
|
|
232
|
+
border-bottom: 1px solid gainsboro;
|
|
233
|
+
border-top: 1px solid gainsboro;
|
|
234
|
+
background: #FFFFFF;
|
|
234
235
|
}
|
|
235
236
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable {
|
|
236
237
|
background-color: transparent;
|
|
237
|
-
color:
|
|
238
|
+
color: #3d3d3d;
|
|
238
239
|
}
|
|
239
240
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body mat-icon, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-header mat-icon {
|
|
240
|
-
color:
|
|
241
|
+
color: #565656;
|
|
241
242
|
}
|
|
242
243
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-header {
|
|
243
|
-
border-bottom: 1px solid
|
|
244
|
+
border-bottom: 1px solid gainsboro;
|
|
244
245
|
}
|
|
245
246
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-header .datatable-header-cell {
|
|
246
|
-
color:
|
|
247
|
+
color: #3d3d3d;
|
|
247
248
|
}
|
|
248
249
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .progress-linear .container {
|
|
249
250
|
background-color: #d5eaf4;
|
|
@@ -252,23 +253,23 @@ body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .progress
|
|
|
252
253
|
background-color: #007079;
|
|
253
254
|
}
|
|
254
255
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row .datatable-body-cell {
|
|
255
|
-
color:
|
|
256
|
-
border-bottom: 1px solid
|
|
256
|
+
color: #3d3d3d;
|
|
257
|
+
border-bottom: 1px solid gainsboro;
|
|
257
258
|
}
|
|
258
259
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):hover {
|
|
259
|
-
background-color:
|
|
260
|
+
background-color: #eaeaea;
|
|
260
261
|
}
|
|
261
262
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):hover .datatable-row-left, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):hover .datatable-row-right, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):hover .datatable-row-center {
|
|
262
|
-
background-color:
|
|
263
|
+
background-color: #eaeaea;
|
|
263
264
|
}
|
|
264
265
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-header .datatable-header-column-group .datatable-header-cell {
|
|
265
|
-
border-left: 1px solid
|
|
266
|
+
border-left: 1px solid gainsboro;
|
|
266
267
|
}
|
|
267
268
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:focus:not(.active) .datatable-row-group.datatable-row-left, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:focus:not(.active) .datatable-row-group.datatable-row-right, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:focus:not(.active) .datatable-row-group.datatable-row-center {
|
|
268
|
-
background-color:
|
|
269
|
+
background-color: #f7f7f7 !important;
|
|
269
270
|
}
|
|
270
271
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row.active {
|
|
271
|
-
background-color:
|
|
272
|
+
background-color: #f7f7f7;
|
|
272
273
|
}
|
|
273
274
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):not(:hover) .datatable-row-left, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):not(:hover) .datatable-row-right, body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):not(:hover) .datatable-row-center {
|
|
274
275
|
background-color: transparent;
|
|
@@ -282,16 +283,16 @@ body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datata
|
|
|
282
283
|
text-decoration: none;
|
|
283
284
|
}
|
|
284
285
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datatable-pager a:hover {
|
|
285
|
-
background:
|
|
286
|
+
background: #eaeaea;
|
|
286
287
|
}
|
|
287
288
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datatable-pager .pager li.pages {
|
|
288
289
|
margin: 0 2px;
|
|
289
290
|
}
|
|
290
291
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datatable-pager .pager li.pages.active {
|
|
291
|
-
background:
|
|
292
|
+
background: #f7f7f7;
|
|
292
293
|
}
|
|
293
294
|
body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datatable-pager .pager li.pages.disabled a {
|
|
294
|
-
color:
|
|
295
|
+
color: gainsboro;
|
|
295
296
|
}
|
|
296
297
|
|
|
297
298
|
.sto-dark-theme .sto-mdl-table {
|
|
@@ -324,7 +325,7 @@ body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datata
|
|
|
324
325
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
325
326
|
}
|
|
326
327
|
.sto-dark-theme .sto-mdl-table__body__row--selected {
|
|
327
|
-
background-color:
|
|
328
|
+
background-color: #212121;
|
|
328
329
|
}
|
|
329
330
|
.sto-dark-theme .sto-mdl-table__body__row:not(.sto-mdl-table__body__row--selected):hover, .sto-dark-theme .sto-mdl-table__body__row:not(.sto-mdl-table__body__row--selected):focus {
|
|
330
331
|
background-color: rgba(255, 255, 255, 0.04);
|
|
@@ -367,10 +368,10 @@ body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datata
|
|
|
367
368
|
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
368
369
|
}
|
|
369
370
|
.sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:focus:not(.active) .datatable-row-group.datatable-row-left, .sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:focus:not(.active) .datatable-row-group.datatable-row-right, .sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:focus:not(.active) .datatable-row-group.datatable-row-center {
|
|
370
|
-
background-color:
|
|
371
|
+
background-color: #212121 !important;
|
|
371
372
|
}
|
|
372
373
|
.sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row.active {
|
|
373
|
-
background-color:
|
|
374
|
+
background-color: #212121;
|
|
374
375
|
}
|
|
375
376
|
.sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):not(:hover) .datatable-row-left, .sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):not(:hover) .datatable-row-right, .sto-dark-theme .ngx-datatable.sto-datatable .datatable-body .datatable-body-row:not(.active):not(:hover) .datatable-row-center {
|
|
376
377
|
background-color: transparent;
|
|
@@ -390,7 +391,7 @@ body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datata
|
|
|
390
391
|
margin: 0 2px;
|
|
391
392
|
}
|
|
392
393
|
.sto-dark-theme .ngx-datatable.sto-datatable .datatable-footer .datatable-pager .pager li.pages.active {
|
|
393
|
-
background:
|
|
394
|
+
background: #212121;
|
|
394
395
|
}
|
|
395
396
|
.sto-dark-theme .ngx-datatable.sto-datatable .datatable-footer .datatable-pager .pager li.pages.disabled a {
|
|
396
397
|
color: rgba(255, 255, 255, 0.12);
|
|
@@ -466,19 +467,19 @@ body:not(.sto-dark-theme) .ngx-datatable.sto-datatable .datatable-footer .datata
|
|
|
466
467
|
}
|
|
467
468
|
|
|
468
469
|
body:not(.sto-dark-theme) .sto-daterange {
|
|
469
|
-
background-color:
|
|
470
|
+
background-color: white;
|
|
470
471
|
}
|
|
471
472
|
body:not(.sto-dark-theme) .sto-daterange .sto-daterange__error--container {
|
|
472
473
|
background-color: #f44336;
|
|
473
474
|
}
|
|
474
475
|
body:not(.sto-dark-theme) .sto-daterange-wrapper input.date-input-element {
|
|
475
|
-
color:
|
|
476
|
+
color: #3d3d3d;
|
|
476
477
|
}
|
|
477
478
|
body:not(.sto-dark-theme) .sto-daterange-wrapper .sto-form__field.mat-focused .mat-form-field-suffix .mat-icon {
|
|
478
|
-
color:
|
|
479
|
+
color: #565656;
|
|
479
480
|
}
|
|
480
481
|
body:not(.sto-dark-theme) .sto-date.sto-date__popout {
|
|
481
|
-
background:
|
|
482
|
+
background: white;
|
|
482
483
|
}
|
|
483
484
|
|
|
484
485
|
.sto-dark-theme .sto-daterange {
|
|
@@ -498,45 +499,45 @@ body:not(.sto-dark-theme) .sto-date.sto-date__popout {
|
|
|
498
499
|
}
|
|
499
500
|
|
|
500
501
|
body:not(.sto-dark-theme) .sto-drawer__overlay {
|
|
501
|
-
background:
|
|
502
|
+
background: #3d3d3d;
|
|
502
503
|
}
|
|
503
504
|
body:not(.sto-dark-theme) .sto-drawer {
|
|
504
|
-
background-color: #
|
|
505
|
+
background-color: #FFFFFF;
|
|
505
506
|
}
|
|
506
507
|
body:not(.sto-dark-theme) .sto-drawer__footer {
|
|
507
|
-
border-top: 1px solid
|
|
508
|
-
background-color:
|
|
509
|
-
color:
|
|
508
|
+
border-top: 1px solid gainsboro;
|
|
509
|
+
background-color: white;
|
|
510
|
+
color: #3d3d3d;
|
|
510
511
|
}
|
|
511
512
|
body:not(.sto-dark-theme) .sto-drawer__content {
|
|
512
|
-
background-color: #
|
|
513
|
-
color:
|
|
513
|
+
background-color: #FFFFFF;
|
|
514
|
+
color: #3d3d3d;
|
|
514
515
|
}
|
|
515
516
|
body:not(.sto-dark-theme) .sto-drawer__header__infix a, body:not(.sto-dark-theme) .sto-drawer__header__infix mat-icon {
|
|
516
|
-
color:
|
|
517
|
+
color: #565656;
|
|
517
518
|
}
|
|
518
519
|
body:not(.sto-dark-theme) .sto-drawer__header__infix a:hover, body:not(.sto-dark-theme) .sto-drawer__header__infix mat-icon:hover {
|
|
519
|
-
color:
|
|
520
|
+
color: #bebebe;
|
|
520
521
|
}
|
|
521
522
|
body:not(.sto-dark-theme) .sto-drawer__header__wrapper {
|
|
522
|
-
background-color:
|
|
523
|
-
color:
|
|
523
|
+
background-color: white;
|
|
524
|
+
color: #3d3d3d;
|
|
524
525
|
}
|
|
525
526
|
body:not(.sto-dark-theme) .sto-drawer .sto-slide-panel {
|
|
526
|
-
color:
|
|
527
|
-
background-color: #
|
|
527
|
+
color: #3d3d3d;
|
|
528
|
+
background-color: #FFFFFF;
|
|
528
529
|
}
|
|
529
530
|
body:not(.sto-dark-theme) .sto-drawer .sto-slide-panel .mat-list.sto-navigation .mat-list-item {
|
|
530
|
-
color:
|
|
531
|
+
color: #3d3d3d;
|
|
531
532
|
}
|
|
532
533
|
body:not(.sto-dark-theme) .sto-drawer .sto-slide-panel .mat-list.sto-navigation .mat-list-item .mat-icon {
|
|
533
|
-
color:
|
|
534
|
+
color: #565656;
|
|
534
535
|
}
|
|
535
536
|
body:not(.sto-dark-theme) .sto-drawer .sto-slide-panel .mat-list.sto-navigation .mat-list-item .sto-navigation__item__text {
|
|
536
|
-
color:
|
|
537
|
+
color: #3d3d3d;
|
|
537
538
|
}
|
|
538
539
|
body:not(.sto-dark-theme) .sto-drawer .sto-slide-panel .mat-list.sto-navigation .mat-list-item .sto-navigation__item__text a {
|
|
539
|
-
color:
|
|
540
|
+
color: #3d3d3d;
|
|
540
541
|
}
|
|
541
542
|
|
|
542
543
|
.sto-dark-theme .sto-drawer__overlay {
|
|
@@ -581,68 +582,12 @@ body:not(.sto-dark-theme) .sto-drawer .sto-slide-panel .mat-list.sto-navigation
|
|
|
581
582
|
color: white;
|
|
582
583
|
}
|
|
583
584
|
|
|
584
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header {
|
|
585
|
-
background-color: whitesmoke;
|
|
586
|
-
}
|
|
587
585
|
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header[aria-disabled=true] {
|
|
588
|
-
color:
|
|
589
|
-
}
|
|
590
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-icon-button, body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button {
|
|
591
|
-
color: rgba(0, 0, 0, 0.54);
|
|
592
|
-
}
|
|
593
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-icon-button:hover, body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button:hover {
|
|
594
|
-
color: rgba(0, 0, 0, 0.8);
|
|
595
|
-
}
|
|
596
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button-toggle-standalone.mat-button-toggle-appearance-standard {
|
|
597
|
-
background-color: transparent;
|
|
598
|
-
}
|
|
599
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button-toggle-standalone.mat-button-toggle-appearance-standard.mat-button-toggle-checked {
|
|
600
|
-
background-color: rgba(0, 0, 0, 0.12);
|
|
601
|
-
}
|
|
602
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header:not(.mat-expanded) {
|
|
603
|
-
border-bottom: solid 1px rgba(0, 0, 0, 0.12);
|
|
604
|
-
}
|
|
605
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header.mat-expanded:hover {
|
|
606
|
-
background-color: whitesmoke;
|
|
607
|
-
}
|
|
608
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .mat-expansion-panel-header.mat-expanded:focus {
|
|
609
|
-
background-color: whitesmoke;
|
|
610
|
-
}
|
|
611
|
-
body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .separator {
|
|
612
|
-
background-color: rgba(0, 0, 0, 0.12);
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header {
|
|
616
|
-
background-color: #212121;
|
|
586
|
+
color: #3d3d3d;
|
|
617
587
|
}
|
|
618
588
|
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header[aria-disabled=true] {
|
|
619
589
|
color: white;
|
|
620
590
|
}
|
|
621
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-icon-button, .sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button {
|
|
622
|
-
color: white;
|
|
623
|
-
}
|
|
624
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-icon-button:hover, .sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button:hover {
|
|
625
|
-
color: rgba(255, 255, 255, 0.8);
|
|
626
|
-
}
|
|
627
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button-toggle-standalone.mat-button-toggle-appearance-standard {
|
|
628
|
-
background-color: transparent;
|
|
629
|
-
}
|
|
630
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header .mat-button-toggle-standalone.mat-button-toggle-appearance-standard.mat-button-toggle-checked {
|
|
631
|
-
background-color: rgba(255, 255, 255, 0.12);
|
|
632
|
-
}
|
|
633
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header:not(.mat-expanded) {
|
|
634
|
-
border-bottom: solid 1px rgba(255, 255, 255, 0.12);
|
|
635
|
-
}
|
|
636
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header.mat-expanded:hover {
|
|
637
|
-
background-color: #212121;
|
|
638
|
-
}
|
|
639
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .mat-expansion-panel-header.mat-expanded:focus {
|
|
640
|
-
background-color: #212121;
|
|
641
|
-
}
|
|
642
|
-
.sto-dark-theme .sto-filter.mat-expansion-panel .separator {
|
|
643
|
-
background-color: rgba(255, 255, 255, 0.12);
|
|
644
|
-
}
|
|
645
|
-
|
|
646
591
|
.mat-typography:not(.sto-sm-typography):not(.sto-l-typography) .sto-filter .mat-expansion-panel-header {
|
|
647
592
|
font-size: 20px;
|
|
648
593
|
line-height: 28px;
|
|
@@ -659,10 +604,10 @@ body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .separator {
|
|
|
659
604
|
}
|
|
660
605
|
|
|
661
606
|
.mat-form-field.sto-form__field .sto-number-input {
|
|
662
|
-
color:
|
|
607
|
+
color: #3d3d3d;
|
|
663
608
|
}
|
|
664
609
|
.mat-form-field.sto-form__field .sto-number-input::placeholder {
|
|
665
|
-
color:
|
|
610
|
+
color: #565656;
|
|
666
611
|
}
|
|
667
612
|
|
|
668
613
|
.sto-dark-theme .mat-form-field.sto-form__field .sto-number-input {
|
|
@@ -673,17 +618,17 @@ body:not(.sto-dark-theme) .sto-filter.mat-expansion-panel .separator {
|
|
|
673
618
|
}
|
|
674
619
|
|
|
675
620
|
.mat-form-field.sto-form__field sto-number-unit-input .number-unit-input-spacer {
|
|
676
|
-
background:
|
|
621
|
+
background: gainsboro;
|
|
677
622
|
}
|
|
678
623
|
.mat-form-field.sto-form__field sto-number-unit-input .number-unit-input-element {
|
|
679
|
-
color:
|
|
624
|
+
color: #3d3d3d;
|
|
680
625
|
}
|
|
681
626
|
.mat-form-field.sto-form__field sto-number-unit-input .number-unit-input-element::placeholder {
|
|
682
|
-
color:
|
|
627
|
+
color: #565656;
|
|
683
628
|
}
|
|
684
629
|
|
|
685
630
|
.mat-option.sto-option--clear {
|
|
686
|
-
color:
|
|
631
|
+
color: #565656;
|
|
687
632
|
}
|
|
688
633
|
|
|
689
634
|
.sto-dark-theme .mat-form-field.sto-form__field sto-number-unit-input .number-unit-input-spacer {
|
|
@@ -703,13 +648,13 @@ body:not(.sto-dark-theme) .sto-form__field .mat-form-field-flex, body:not(.sto-d
|
|
|
703
648
|
background-color: rgba(102, 135, 184, 0.1);
|
|
704
649
|
}
|
|
705
650
|
body:not(.sto-dark-theme) .sto-form__field .mat-form-field-flex .mat-input, body:not(.sto-dark-theme) .sto-form__field.mat-form-field .mat-form-field-flex .mat-input {
|
|
706
|
-
color:
|
|
651
|
+
color: #3d3d3d;
|
|
707
652
|
}
|
|
708
653
|
body:not(.sto-dark-theme) .sto-form__field.sto-form__field--readonly .mat-form-field-flex, body:not(.sto-dark-theme) .sto-form__field.sto-form__field--disabled .mat-form-field-flex, body:not(.sto-dark-theme) .sto-form__field.mat-form-field.sto-form__field--readonly .mat-form-field-flex, body:not(.sto-dark-theme) .sto-form__field.mat-form-field.sto-form__field--disabled .mat-form-field-flex {
|
|
709
654
|
background-color: transparent;
|
|
710
655
|
}
|
|
711
656
|
body:not(.sto-dark-theme) .sto-form__field.sto-form__field--readonly .mat-form-field-flex .mat-select-value, body:not(.sto-dark-theme) .sto-form__field.sto-form__field--disabled .mat-form-field-flex .mat-select-value, body:not(.sto-dark-theme) .sto-form__field.mat-form-field.sto-form__field--readonly .mat-form-field-flex .mat-select-value, body:not(.sto-dark-theme) .sto-form__field.mat-form-field.sto-form__field--disabled .mat-form-field-flex .mat-select-value {
|
|
712
|
-
color:
|
|
657
|
+
color: #3d3d3d;
|
|
713
658
|
}
|
|
714
659
|
body:not(.sto-dark-theme) .sto-form__field.sto-form__field--readonly .mat-form-field-flex, body:not(.sto-dark-theme) .sto-form__field.mat-form-field.sto-form__field--readonly .mat-form-field-flex {
|
|
715
660
|
background-color: transparent;
|
|
@@ -718,13 +663,13 @@ body:not(.sto-dark-theme) .sto-form__field .mat-form-field-flex:hover + .mat-for
|
|
|
718
663
|
background-color: rgba(0, 0, 0, 0.12);
|
|
719
664
|
}
|
|
720
665
|
body:not(.sto-dark-theme) .sto-form__field.mat-focused .mat-form-field-infix .mat-form-field-label, body:not(.sto-dark-theme) .sto-form__field.mat-form-field.mat-focused .mat-form-field-infix .mat-form-field-label {
|
|
721
|
-
color:
|
|
666
|
+
color: #3d3d3d;
|
|
722
667
|
}
|
|
723
668
|
body:not(.sto-dark-theme) .sto-form__field .mat-form-field-flex:hover .mat-form-field-suffix > .mat-icon, body:not(.sto-dark-theme) .sto-form__field.mat-form-field .mat-form-field-flex:hover .mat-form-field-suffix > .mat-icon {
|
|
724
|
-
color: rgba(
|
|
669
|
+
color: rgba(86, 86, 86, 0.8);
|
|
725
670
|
}
|
|
726
671
|
body:not(.sto-dark-theme) .sto-form__field .mat-form-field-suffix > .mat-icon, body:not(.sto-dark-theme) .sto-form__field.mat-form-field .mat-form-field-suffix > .mat-icon {
|
|
727
|
-
color:
|
|
672
|
+
color: #565656;
|
|
728
673
|
}
|
|
729
674
|
|
|
730
675
|
.sto-dark-theme .sto-form__field .mat-form-field-flex, .sto-dark-theme .sto-form__field.mat-form-field .mat-form-field-flex {
|
|
@@ -819,7 +764,7 @@ body:not(.sto-dark-theme) .sto-form__field .mat-form-field-suffix > .mat-icon, b
|
|
|
819
764
|
}
|
|
820
765
|
|
|
821
766
|
body:not(.sto-dark-theme) .sto-message-panel {
|
|
822
|
-
color:
|
|
767
|
+
color: #3d3d3d;
|
|
823
768
|
}
|
|
824
769
|
body:not(.sto-dark-theme) .sto-message-panel.mat-primary {
|
|
825
770
|
background-color: #007079;
|
|
@@ -893,20 +838,20 @@ body:not(.sto-dark-theme) .sto-message-panel.mat-warning .mat-icon {
|
|
|
893
838
|
}
|
|
894
839
|
|
|
895
840
|
body:not(.sto-dark-theme) sto-preference-manager .filter-title small {
|
|
896
|
-
color:
|
|
841
|
+
color: #565656;
|
|
897
842
|
}
|
|
898
843
|
body:not(.sto-dark-theme) .mat-menu-panel.preference-manager-list .preference-manager-list-item:hover:not(.selected) {
|
|
899
|
-
background-color:
|
|
844
|
+
background-color: #eaeaea !important;
|
|
900
845
|
}
|
|
901
846
|
body:not(.sto-dark-theme) .mat-menu-panel.preference-manager-list .preference-manager-list-item.selected {
|
|
902
|
-
background-color:
|
|
847
|
+
background-color: #f7f7f7 !important;
|
|
903
848
|
}
|
|
904
849
|
body:not(.sto-dark-theme) .mat-menu-panel.preference-manager-list .preference-manager-list-item .preference-manager-list-item-title small {
|
|
905
|
-
color:
|
|
850
|
+
color: #565656;
|
|
906
851
|
}
|
|
907
852
|
body:not(.sto-dark-theme) .mat-menu-panel.preference-manager-list .preference-manager-list-footer {
|
|
908
|
-
border-top: 1px solid
|
|
909
|
-
background:
|
|
853
|
+
border-top: 1px solid gainsboro;
|
|
854
|
+
background: #eaeaea;
|
|
910
855
|
}
|
|
911
856
|
|
|
912
857
|
.sto-dark-theme sto-preference-manager .filter-title small {
|
|
@@ -916,7 +861,7 @@ body:not(.sto-dark-theme) .mat-menu-panel.preference-manager-list .preference-ma
|
|
|
916
861
|
background-color: rgba(255, 255, 255, 0.04) !important;
|
|
917
862
|
}
|
|
918
863
|
.sto-dark-theme .mat-menu-panel.preference-manager-list .preference-manager-list-item.selected {
|
|
919
|
-
background-color:
|
|
864
|
+
background-color: #212121 !important;
|
|
920
865
|
}
|
|
921
866
|
.sto-dark-theme .mat-menu-panel.preference-manager-list .preference-manager-list-item .preference-manager-list-item-title small {
|
|
922
867
|
color: rgba(255, 255, 255, 0.7);
|
|
@@ -927,7 +872,7 @@ body:not(.sto-dark-theme) .mat-menu-panel.preference-manager-list .preference-ma
|
|
|
927
872
|
}
|
|
928
873
|
|
|
929
874
|
body:not(.sto-dark-theme) .sto-select-filter {
|
|
930
|
-
background-color: #
|
|
875
|
+
background-color: #FFFFFF;
|
|
931
876
|
}
|
|
932
877
|
|
|
933
878
|
.sto-dark-theme .sto-select-filter {
|
|
@@ -997,13 +942,13 @@ body:not(.sto-dark-theme) .mat-hint.mat-warning, body:not(.sto-dark-theme) span.
|
|
|
997
942
|
}
|
|
998
943
|
|
|
999
944
|
body .sto-wysiwyg__actions {
|
|
1000
|
-
border-bottom: 1px solid
|
|
945
|
+
border-bottom: 1px solid gainsboro;
|
|
1001
946
|
}
|
|
1002
947
|
body .sto-wysiwyg__actions .divider {
|
|
1003
|
-
border-left: 1px solid
|
|
948
|
+
border-left: 1px solid gainsboro;
|
|
1004
949
|
}
|
|
1005
950
|
body .sto-wysiwyg__editor {
|
|
1006
|
-
border-bottom: 2px solid
|
|
951
|
+
border-bottom: 2px solid gainsboro;
|
|
1007
952
|
background: rgba(102, 135, 184, 0.1);
|
|
1008
953
|
}
|
|
1009
954
|
body .sto-wysiwyg__editor:focus {
|
|
@@ -1031,116 +976,169 @@ body.sto-dark-theme .sto-wysiwyg__editor--readonly {
|
|
|
1031
976
|
border: none;
|
|
1032
977
|
}
|
|
1033
978
|
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
}
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
}
|
|
1058
|
-
body:not(.sto-dark-theme) .sto-nav-drawer a.active {
|
|
1059
|
-
color: #007079;
|
|
1060
|
-
}
|
|
1061
|
-
body:not(.sto-dark-theme) .sto-nav-drawer .disabled {
|
|
1062
|
-
color: rgba(0, 0, 0, 0.38);
|
|
1063
|
-
}
|
|
1064
|
-
body:not(.sto-dark-theme) .sto-nav-drawer .disabled a {
|
|
1065
|
-
color: rgba(0, 0, 0, 0.38);
|
|
1066
|
-
}
|
|
979
|
+
/*
|
|
980
|
+
@use '~@angular/material' as mat;
|
|
981
|
+
@import "theme";
|
|
982
|
+
@import "typography";
|
|
983
|
+
|
|
984
|
+
@mixin navigation-drawer-theme($theme, $variables) {
|
|
985
|
+
$primary: map_get($variables, primary);
|
|
986
|
+
$colors: mat.get-color-config($theme);
|
|
987
|
+
$primary-palette: map-get($colors, primary);
|
|
988
|
+
$selected-bg: map-get($primary-palette, highlight);
|
|
989
|
+
$color: map_get($variables, color);
|
|
990
|
+
$secondary: map_get($variables, secondary);
|
|
991
|
+
$hover: map_get($variables, hover-bg);
|
|
992
|
+
$disabled: map_get($variables, disabled);
|
|
993
|
+
$bg-color: map_get($variables, card-bg);
|
|
994
|
+
$border-color: map_get($variables, border-color);
|
|
995
|
+
$active-bg: map_get($variables, selected-bg);
|
|
996
|
+
|
|
997
|
+
.mat-menu-item.no-hover {
|
|
998
|
+
color: $secondary;
|
|
999
|
+
}
|
|
1000
|
+
.mat-menu-item.no-hover:hover:not([disabled]) {
|
|
1001
|
+
background-color: $bg-color;
|
|
1002
|
+
}
|
|
1067
1003
|
|
|
1068
|
-
.
|
|
1069
|
-
|
|
1070
|
-
}
|
|
1071
|
-
.
|
|
1072
|
-
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
.
|
|
1087
|
-
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
|
|
1004
|
+
a.mat-menu-item.active-menu-route {
|
|
1005
|
+
background-color: $selected-bg;
|
|
1006
|
+
}
|
|
1007
|
+
a.mat-menu-item:hover {
|
|
1008
|
+
text-shadow:0 0 1px $color;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
.sto-nav-drawer {
|
|
1013
|
+
background-color: $bg-color;
|
|
1014
|
+
|
|
1015
|
+
a.mat-button {
|
|
1016
|
+
color: $primary;
|
|
1017
|
+
|
|
1018
|
+
&.active {
|
|
1019
|
+
background-color: $active-bg;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.mat-icon {
|
|
1023
|
+
color: $primary;
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
button:not(.mat-button-disabled) .mat-icon {
|
|
1028
|
+
color: $primary;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
a.sto-nav-drawer--expanded__item {
|
|
1032
|
+
text-decoration: none;
|
|
1033
|
+
|
|
1034
|
+
&:hover {
|
|
1035
|
+
background-color: $hover;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
&.active {
|
|
1039
|
+
font-weight: bold;
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.sto-nav-drawer--expanded__item:not(.disabled) .mat-icon {
|
|
1044
|
+
color: $primary;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
sto-nav-drawer-list-item {
|
|
1048
|
+
border-color: rgba($primary, 0.2);
|
|
1049
|
+
|
|
1050
|
+
a.active span {
|
|
1051
|
+
border-color: $primary;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
&:hover {
|
|
1055
|
+
background-color: $hover;
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
.sto-nav-drawer--collapsed__item {
|
|
1059
|
+
border-bottom-color: $border-color;
|
|
1060
|
+
}
|
|
1061
|
+
a:not(.disabled) {
|
|
1062
|
+
color: $color;
|
|
1063
|
+
}
|
|
1064
|
+
a.active {
|
|
1065
|
+
color: $primary;
|
|
1066
|
+
}
|
|
1067
|
+
.disabled {
|
|
1068
|
+
color: $disabled;
|
|
1069
|
+
a {
|
|
1070
|
+
color: $disabled;
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1091
1074
|
}
|
|
1092
|
-
|
|
1093
|
-
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
// Include theme styles for your custom components.
|
|
1078
|
+
body:not(.sto-dark-theme) {
|
|
1079
|
+
@include navigation-drawer-theme($sto-theme, $variables);
|
|
1094
1080
|
}
|
|
1095
|
-
|
|
1096
|
-
|
|
1081
|
+
|
|
1082
|
+
.sto-dark-theme {
|
|
1083
|
+
@include navigation-drawer-theme($sto-dark-theme, $dark-variables);
|
|
1097
1084
|
}
|
|
1098
|
-
|
|
1099
|
-
|
|
1085
|
+
|
|
1086
|
+
@mixin navigation-drawer-typography($config) {
|
|
1087
|
+
.sto-nav-drawer {
|
|
1088
|
+
sto-nav-drawer-item {
|
|
1089
|
+
font-size: mat.font-size($config, subheading-1);
|
|
1090
|
+
line-height: mat.line-height($config, subheading-1);
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
.sto-nav-drawer-menu + div .mat-menu-item {
|
|
1094
|
+
font-size: mat.font-size($config, subheading-1);
|
|
1095
|
+
}
|
|
1100
1096
|
}
|
|
1101
1097
|
|
|
1102
|
-
.mat-typography:not(.sto-sm-typography):not(.sto-l-typography)
|
|
1103
|
-
|
|
1104
|
-
line-height: 24px;
|
|
1098
|
+
.mat-typography:not(.sto-sm-typography):not(.sto-l-typography) {
|
|
1099
|
+
@include navigation-drawer-typography($sto-typography);
|
|
1105
1100
|
}
|
|
1106
|
-
|
|
1107
|
-
|
|
1101
|
+
|
|
1102
|
+
.mat-typography.sto-sm-typography {
|
|
1103
|
+
@include navigation-drawer-typography($sto-sm-typography);
|
|
1108
1104
|
}
|
|
1109
1105
|
|
|
1110
|
-
.mat-typography.sto-
|
|
1111
|
-
|
|
1112
|
-
line-height: 20px;
|
|
1106
|
+
.mat-typography.sto-l-typography {
|
|
1107
|
+
@include navigation-drawer-typography($sto-l-typography);
|
|
1113
1108
|
}
|
|
1114
|
-
|
|
1115
|
-
|
|
1109
|
+
*/
|
|
1110
|
+
body:not(.sto-dark-theme) .sto-dialog .mat-dialog-container .mat-dialog-content {
|
|
1111
|
+
border-top: solid 1px gainsboro;
|
|
1112
|
+
}
|
|
1113
|
+
body:not(.sto-dark-theme) .sto-dialog .mat-dialog-container .mat-dialog-content.scroll-lines {
|
|
1114
|
+
border-bottom: solid 1px gainsboro;
|
|
1116
1115
|
}
|
|
1117
1116
|
|
|
1118
|
-
.
|
|
1119
|
-
|
|
1120
|
-
line-height: 32px;
|
|
1117
|
+
body.sto-dark-theme .sto-dialog .mat-dialog-container .mat-dialog-content {
|
|
1118
|
+
border-top: solid 1px rgba(255, 255, 255, 0.12);
|
|
1121
1119
|
}
|
|
1122
|
-
.
|
|
1123
|
-
|
|
1120
|
+
body.sto-dark-theme .sto-dialog .mat-dialog-container .mat-dialog-content.scroll-lines {
|
|
1121
|
+
border-bottom: solid 1px rgba(255, 255, 255, 0.12);
|
|
1124
1122
|
}
|
|
1125
1123
|
|
|
1126
1124
|
body:not(.sto-dark-theme) .mat-ripple-element {
|
|
1127
|
-
background-color: rgba(
|
|
1125
|
+
background-color: rgba(61, 61, 61, 0.1);
|
|
1128
1126
|
}
|
|
1129
1127
|
body:not(.sto-dark-theme) .mat-option {
|
|
1130
|
-
color:
|
|
1128
|
+
color: #3d3d3d;
|
|
1131
1129
|
}
|
|
1132
1130
|
body:not(.sto-dark-theme) .mat-option:hover:not(.mat-option-disabled), body:not(.sto-dark-theme) .mat-option:focus:not(.mat-option-disabled) {
|
|
1133
|
-
background:
|
|
1131
|
+
background: #eaeaea;
|
|
1134
1132
|
}
|
|
1135
1133
|
body:not(.sto-dark-theme) .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
|
|
1136
|
-
background:
|
|
1134
|
+
background: #eaeaea;
|
|
1137
1135
|
}
|
|
1138
1136
|
body:not(.sto-dark-theme) .mat-option.mat-active {
|
|
1139
|
-
background:
|
|
1140
|
-
color:
|
|
1137
|
+
background: #eaeaea;
|
|
1138
|
+
color: #3d3d3d;
|
|
1141
1139
|
}
|
|
1142
1140
|
body:not(.sto-dark-theme) .mat-option.mat-option-disabled {
|
|
1143
|
-
color:
|
|
1141
|
+
color: #bebebe;
|
|
1144
1142
|
}
|
|
1145
1143
|
body:not(.sto-dark-theme) .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
|
|
1146
1144
|
color: #007079;
|
|
@@ -1152,16 +1150,16 @@ body:not(.sto-dark-theme) .mat-warn .mat-option.mat-selected:not(.mat-option-dis
|
|
|
1152
1150
|
color: #f44336;
|
|
1153
1151
|
}
|
|
1154
1152
|
body:not(.sto-dark-theme) .mat-optgroup-label {
|
|
1155
|
-
color:
|
|
1153
|
+
color: #565656;
|
|
1156
1154
|
}
|
|
1157
1155
|
body:not(.sto-dark-theme) .mat-optgroup-disabled .mat-optgroup-label {
|
|
1158
|
-
color:
|
|
1156
|
+
color: #bebebe;
|
|
1159
1157
|
}
|
|
1160
1158
|
body:not(.sto-dark-theme) .mat-pseudo-checkbox {
|
|
1161
|
-
color:
|
|
1159
|
+
color: #565656;
|
|
1162
1160
|
}
|
|
1163
1161
|
body:not(.sto-dark-theme) .mat-pseudo-checkbox::after {
|
|
1164
|
-
color:
|
|
1162
|
+
color: white;
|
|
1165
1163
|
}
|
|
1166
1164
|
body:not(.sto-dark-theme) .mat-pseudo-checkbox-disabled {
|
|
1167
1165
|
color: #b0b0b0;
|
|
@@ -1185,8 +1183,8 @@ body:not(.sto-dark-theme) .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox
|
|
|
1185
1183
|
background: #b0b0b0;
|
|
1186
1184
|
}
|
|
1187
1185
|
body:not(.sto-dark-theme) .mat-app-background, body:not(.sto-dark-theme).mat-app-background {
|
|
1188
|
-
background-color:
|
|
1189
|
-
color:
|
|
1186
|
+
background-color: white;
|
|
1187
|
+
color: #3d3d3d;
|
|
1190
1188
|
}
|
|
1191
1189
|
body:not(.sto-dark-theme) .mat-elevation-z0 {
|
|
1192
1190
|
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);
|
|
@@ -1269,7 +1267,7 @@ body:not(.sto-dark-theme) .mat-elevation-z24 {
|
|
|
1269
1267
|
|
|
1270
1268
|
body:not(.sto-dark-theme) .mat-autocomplete-panel {
|
|
1271
1269
|
background: white;
|
|
1272
|
-
color:
|
|
1270
|
+
color: #3d3d3d;
|
|
1273
1271
|
}
|
|
1274
1272
|
body:not(.sto-dark-theme) .mat-autocomplete-panel:not([class*=mat-elevation-z]) {
|
|
1275
1273
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
@@ -1278,7 +1276,7 @@ body:not(.sto-dark-theme) .mat-autocomplete-panel .mat-option.mat-selected:not(.
|
|
|
1278
1276
|
background: white;
|
|
1279
1277
|
}
|
|
1280
1278
|
body:not(.sto-dark-theme) .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
|
|
1281
|
-
color:
|
|
1279
|
+
color: #3d3d3d;
|
|
1282
1280
|
}
|
|
1283
1281
|
body:not(.sto-dark-theme) .mat-badge-content {
|
|
1284
1282
|
color: white;
|
|
@@ -1304,8 +1302,8 @@ body:not(.sto-dark-theme) .mat-badge-hidden .mat-badge-content {
|
|
|
1304
1302
|
display: none;
|
|
1305
1303
|
}
|
|
1306
1304
|
body:not(.sto-dark-theme) .mat-badge-disabled .mat-badge-content {
|
|
1307
|
-
background: #
|
|
1308
|
-
color:
|
|
1305
|
+
background: #bebebe;
|
|
1306
|
+
color: #bebebe;
|
|
1309
1307
|
}
|
|
1310
1308
|
body:not(.sto-dark-theme) .mat-badge-content {
|
|
1311
1309
|
position: absolute;
|
|
@@ -1446,7 +1444,7 @@ body:not(.sto-dark-theme) .mat-badge-large.mat-badge-overlap.mat-badge-after .ma
|
|
|
1446
1444
|
body:not(.sto-dark-theme) .mat-bottom-sheet-container {
|
|
1447
1445
|
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
1448
1446
|
background: white;
|
|
1449
|
-
color:
|
|
1447
|
+
color: #3d3d3d;
|
|
1450
1448
|
}
|
|
1451
1449
|
body:not(.sto-dark-theme) .mat-button, body:not(.sto-dark-theme) .mat-icon-button, body:not(.sto-dark-theme) .mat-stroked-button {
|
|
1452
1450
|
color: inherit;
|
|
@@ -1462,7 +1460,7 @@ body:not(.sto-dark-theme) .mat-button.mat-warn, body:not(.sto-dark-theme) .mat-i
|
|
|
1462
1460
|
color: #f44336;
|
|
1463
1461
|
}
|
|
1464
1462
|
body:not(.sto-dark-theme) .mat-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-button.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-icon-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-icon-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-icon-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-icon-button.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-stroked-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-stroked-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-stroked-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-stroked-button.mat-button-disabled.mat-button-disabled {
|
|
1465
|
-
color:
|
|
1463
|
+
color: #bebebe;
|
|
1466
1464
|
}
|
|
1467
1465
|
body:not(.sto-dark-theme) .mat-button.mat-primary .mat-button-focus-overlay, body:not(.sto-dark-theme) .mat-icon-button.mat-primary .mat-button-focus-overlay, body:not(.sto-dark-theme) .mat-stroked-button.mat-primary .mat-button-focus-overlay {
|
|
1468
1466
|
background-color: #007079;
|
|
@@ -1481,13 +1479,13 @@ body:not(.sto-dark-theme) .mat-button .mat-ripple-element, body:not(.sto-dark-th
|
|
|
1481
1479
|
background-color: currentColor;
|
|
1482
1480
|
}
|
|
1483
1481
|
body:not(.sto-dark-theme) .mat-button-focus-overlay {
|
|
1484
|
-
background:
|
|
1482
|
+
background: #3D3D3D;
|
|
1485
1483
|
}
|
|
1486
1484
|
body:not(.sto-dark-theme) .mat-stroked-button:not(.mat-button-disabled) {
|
|
1487
|
-
border-color:
|
|
1485
|
+
border-color: gainsboro;
|
|
1488
1486
|
}
|
|
1489
1487
|
body:not(.sto-dark-theme) .mat-flat-button, body:not(.sto-dark-theme) .mat-raised-button, body:not(.sto-dark-theme) .mat-fab, body:not(.sto-dark-theme) .mat-mini-fab {
|
|
1490
|
-
color:
|
|
1488
|
+
color: #3d3d3d;
|
|
1491
1489
|
background-color: white;
|
|
1492
1490
|
}
|
|
1493
1491
|
body:not(.sto-dark-theme) .mat-flat-button.mat-primary, body:not(.sto-dark-theme) .mat-raised-button.mat-primary, body:not(.sto-dark-theme) .mat-fab.mat-primary, body:not(.sto-dark-theme) .mat-mini-fab.mat-primary {
|
|
@@ -1500,7 +1498,7 @@ body:not(.sto-dark-theme) .mat-flat-button.mat-warn, body:not(.sto-dark-theme) .
|
|
|
1500
1498
|
color: white;
|
|
1501
1499
|
}
|
|
1502
1500
|
body:not(.sto-dark-theme) .mat-flat-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-flat-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-flat-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-flat-button.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-button-disabled.mat-button-disabled {
|
|
1503
|
-
color:
|
|
1501
|
+
color: #bebebe;
|
|
1504
1502
|
}
|
|
1505
1503
|
body:not(.sto-dark-theme) .mat-flat-button.mat-primary, body:not(.sto-dark-theme) .mat-raised-button.mat-primary, body:not(.sto-dark-theme) .mat-fab.mat-primary, body:not(.sto-dark-theme) .mat-mini-fab.mat-primary {
|
|
1506
1504
|
background-color: #007079;
|
|
@@ -1512,7 +1510,7 @@ body:not(.sto-dark-theme) .mat-flat-button.mat-warn, body:not(.sto-dark-theme) .
|
|
|
1512
1510
|
background-color: #f44336;
|
|
1513
1511
|
}
|
|
1514
1512
|
body:not(.sto-dark-theme) .mat-flat-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-flat-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-flat-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-flat-button.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-raised-button.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-fab.mat-button-disabled.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-primary.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-accent.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-warn.mat-button-disabled, body:not(.sto-dark-theme) .mat-mini-fab.mat-button-disabled.mat-button-disabled {
|
|
1515
|
-
background-color:
|
|
1513
|
+
background-color: #eaeaea;
|
|
1516
1514
|
}
|
|
1517
1515
|
body:not(.sto-dark-theme) .mat-flat-button.mat-primary .mat-ripple-element, body:not(.sto-dark-theme) .mat-raised-button.mat-primary .mat-ripple-element, body:not(.sto-dark-theme) .mat-fab.mat-primary .mat-ripple-element, body:not(.sto-dark-theme) .mat-mini-fab.mat-primary .mat-ripple-element {
|
|
1518
1516
|
background-color: rgba(255, 255, 255, 0.1);
|
|
@@ -1553,50 +1551,50 @@ body:not(.sto-dark-theme) .mat-button-toggle-group-appearance-standard {
|
|
|
1553
1551
|
box-shadow: none;
|
|
1554
1552
|
}
|
|
1555
1553
|
body:not(.sto-dark-theme) .mat-button-toggle {
|
|
1556
|
-
color:
|
|
1554
|
+
color: #bebebe;
|
|
1557
1555
|
}
|
|
1558
1556
|
body:not(.sto-dark-theme) .mat-button-toggle .mat-button-toggle-focus-overlay {
|
|
1559
|
-
background-color:
|
|
1557
|
+
background-color: #007079;
|
|
1560
1558
|
}
|
|
1561
1559
|
body:not(.sto-dark-theme) .mat-button-toggle-appearance-standard {
|
|
1562
|
-
color:
|
|
1560
|
+
color: #3d3d3d;
|
|
1563
1561
|
background: white;
|
|
1564
1562
|
}
|
|
1565
1563
|
body:not(.sto-dark-theme) .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
|
|
1566
|
-
background-color:
|
|
1564
|
+
background-color: #007079;
|
|
1567
1565
|
}
|
|
1568
1566
|
body:not(.sto-dark-theme) .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
|
|
1569
|
-
border-left: solid 1px
|
|
1567
|
+
border-left: solid 1px gainsboro;
|
|
1570
1568
|
}
|
|
1571
1569
|
body:not(.sto-dark-theme) [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
|
|
1572
1570
|
border-left: none;
|
|
1573
|
-
border-right: solid 1px
|
|
1571
|
+
border-right: solid 1px gainsboro;
|
|
1574
1572
|
}
|
|
1575
1573
|
body:not(.sto-dark-theme) .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
|
|
1576
1574
|
border-left: none;
|
|
1577
1575
|
border-right: none;
|
|
1578
|
-
border-top: solid 1px
|
|
1576
|
+
border-top: solid 1px gainsboro;
|
|
1579
1577
|
}
|
|
1580
1578
|
body:not(.sto-dark-theme) .mat-button-toggle-checked {
|
|
1581
|
-
background-color: #
|
|
1582
|
-
color:
|
|
1579
|
+
background-color: #f7f7f7;
|
|
1580
|
+
color: #565656;
|
|
1583
1581
|
}
|
|
1584
1582
|
body:not(.sto-dark-theme) .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
|
|
1585
|
-
color:
|
|
1583
|
+
color: #3d3d3d;
|
|
1586
1584
|
}
|
|
1587
1585
|
body:not(.sto-dark-theme) .mat-button-toggle-disabled {
|
|
1588
|
-
color:
|
|
1589
|
-
background-color: #
|
|
1586
|
+
color: #bebebe;
|
|
1587
|
+
background-color: #eaeaea;
|
|
1590
1588
|
}
|
|
1591
1589
|
body:not(.sto-dark-theme) .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
|
|
1592
1590
|
background: white;
|
|
1593
1591
|
}
|
|
1594
1592
|
body:not(.sto-dark-theme) .mat-button-toggle-disabled.mat-button-toggle-checked {
|
|
1595
|
-
background-color: #
|
|
1593
|
+
background-color: #eaeaea;
|
|
1596
1594
|
}
|
|
1597
1595
|
body:not(.sto-dark-theme) .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
|
|
1598
1596
|
body:not(.sto-dark-theme) .mat-button-toggle-group-appearance-standard {
|
|
1599
|
-
border: solid 1px
|
|
1597
|
+
border: solid 1px gainsboro;
|
|
1600
1598
|
}
|
|
1601
1599
|
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
|
|
1602
1600
|
line-height: 48px;
|
|
@@ -1604,7 +1602,7 @@ body:not(.sto-dark-theme) .mat-button-toggle-group-appearance-standard {
|
|
|
1604
1602
|
|
|
1605
1603
|
body:not(.sto-dark-theme) .mat-card {
|
|
1606
1604
|
background: white;
|
|
1607
|
-
color:
|
|
1605
|
+
color: #3d3d3d;
|
|
1608
1606
|
}
|
|
1609
1607
|
body:not(.sto-dark-theme) .mat-card:not([class*=mat-elevation-z]) {
|
|
1610
1608
|
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
@@ -1613,19 +1611,19 @@ body:not(.sto-dark-theme) .mat-card.mat-card-flat:not([class*=mat-elevation-z])
|
|
|
1613
1611
|
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);
|
|
1614
1612
|
}
|
|
1615
1613
|
body:not(.sto-dark-theme) .mat-card-subtitle {
|
|
1616
|
-
color:
|
|
1614
|
+
color: #565656;
|
|
1617
1615
|
}
|
|
1618
1616
|
body:not(.sto-dark-theme) .mat-checkbox-frame {
|
|
1619
|
-
border-color:
|
|
1617
|
+
border-color: #565656;
|
|
1620
1618
|
}
|
|
1621
1619
|
body:not(.sto-dark-theme) .mat-checkbox-checkmark {
|
|
1622
|
-
fill:
|
|
1620
|
+
fill: white;
|
|
1623
1621
|
}
|
|
1624
1622
|
body:not(.sto-dark-theme) .mat-checkbox-checkmark-path {
|
|
1625
|
-
stroke:
|
|
1623
|
+
stroke: white !important;
|
|
1626
1624
|
}
|
|
1627
1625
|
body:not(.sto-dark-theme) .mat-checkbox-mixedmark {
|
|
1628
|
-
background-color:
|
|
1626
|
+
background-color: white;
|
|
1629
1627
|
}
|
|
1630
1628
|
body:not(.sto-dark-theme) .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, body:not(.sto-dark-theme) .mat-checkbox-checked.mat-primary .mat-checkbox-background {
|
|
1631
1629
|
background-color: #007079;
|
|
@@ -1643,10 +1641,10 @@ body:not(.sto-dark-theme) .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat
|
|
|
1643
1641
|
border-color: #b0b0b0;
|
|
1644
1642
|
}
|
|
1645
1643
|
body:not(.sto-dark-theme) .mat-checkbox-disabled .mat-checkbox-label {
|
|
1646
|
-
color:
|
|
1644
|
+
color: #565656;
|
|
1647
1645
|
}
|
|
1648
1646
|
body:not(.sto-dark-theme) .mat-checkbox .mat-ripple-element {
|
|
1649
|
-
background-color:
|
|
1647
|
+
background-color: #3D3D3D;
|
|
1650
1648
|
}
|
|
1651
1649
|
body:not(.sto-dark-theme) .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
|
|
1652
1650
|
body:not(.sto-dark-theme) .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
|
|
@@ -1661,11 +1659,11 @@ body:not(.sto-dark-theme) .mat-checkbox:active:not(.mat-checkbox-disabled).mat-w
|
|
|
1661
1659
|
background: #f44336;
|
|
1662
1660
|
}
|
|
1663
1661
|
body:not(.sto-dark-theme) .mat-chip.mat-standard-chip {
|
|
1664
|
-
background-color: #
|
|
1665
|
-
color:
|
|
1662
|
+
background-color: #f7f7f7;
|
|
1663
|
+
color: #3d3d3d;
|
|
1666
1664
|
}
|
|
1667
1665
|
body:not(.sto-dark-theme) .mat-chip.mat-standard-chip .mat-chip-remove {
|
|
1668
|
-
color:
|
|
1666
|
+
color: #3d3d3d;
|
|
1669
1667
|
opacity: 0.4;
|
|
1670
1668
|
}
|
|
1671
1669
|
body:not(.sto-dark-theme) .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
|
|
@@ -1678,7 +1676,7 @@ body:not(.sto-dark-theme) .mat-chip.mat-standard-chip.mat-chip-disabled {
|
|
|
1678
1676
|
opacity: 0.4;
|
|
1679
1677
|
}
|
|
1680
1678
|
body:not(.sto-dark-theme) .mat-chip.mat-standard-chip::after {
|
|
1681
|
-
background:
|
|
1679
|
+
background: #3D3D3D;
|
|
1682
1680
|
}
|
|
1683
1681
|
body:not(.sto-dark-theme) .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
|
|
1684
1682
|
background-color: #007079;
|
|
@@ -1724,50 +1722,50 @@ body:not(.sto-dark-theme) .mat-table-sticky {
|
|
|
1724
1722
|
}
|
|
1725
1723
|
body:not(.sto-dark-theme) mat-row, body:not(.sto-dark-theme) mat-header-row, body:not(.sto-dark-theme) mat-footer-row,
|
|
1726
1724
|
body:not(.sto-dark-theme) th.mat-header-cell, body:not(.sto-dark-theme) td.mat-cell, body:not(.sto-dark-theme) td.mat-footer-cell {
|
|
1727
|
-
border-bottom-color:
|
|
1725
|
+
border-bottom-color: gainsboro;
|
|
1728
1726
|
}
|
|
1729
1727
|
body:not(.sto-dark-theme) .mat-header-cell {
|
|
1730
|
-
color:
|
|
1728
|
+
color: #565656;
|
|
1731
1729
|
}
|
|
1732
1730
|
body:not(.sto-dark-theme) .mat-cell, body:not(.sto-dark-theme) .mat-footer-cell {
|
|
1733
|
-
color:
|
|
1731
|
+
color: #3d3d3d;
|
|
1734
1732
|
}
|
|
1735
1733
|
body:not(.sto-dark-theme) .mat-calendar-arrow {
|
|
1736
|
-
border-top-color:
|
|
1734
|
+
border-top-color: #565656;
|
|
1737
1735
|
}
|
|
1738
1736
|
body:not(.sto-dark-theme) .mat-datepicker-toggle,
|
|
1739
1737
|
body:not(.sto-dark-theme) .mat-datepicker-content .mat-calendar-next-button,
|
|
1740
1738
|
body:not(.sto-dark-theme) .mat-datepicker-content .mat-calendar-previous-button {
|
|
1741
|
-
color:
|
|
1739
|
+
color: #565656;
|
|
1742
1740
|
}
|
|
1743
1741
|
body:not(.sto-dark-theme) .mat-calendar-table-header {
|
|
1744
|
-
color:
|
|
1742
|
+
color: #bebebe;
|
|
1745
1743
|
}
|
|
1746
1744
|
body:not(.sto-dark-theme) .mat-calendar-table-header-divider::after {
|
|
1747
|
-
background:
|
|
1745
|
+
background: gainsboro;
|
|
1748
1746
|
}
|
|
1749
1747
|
body:not(.sto-dark-theme) .mat-calendar-body-label {
|
|
1750
|
-
color:
|
|
1748
|
+
color: #565656;
|
|
1751
1749
|
}
|
|
1752
1750
|
body:not(.sto-dark-theme) .mat-calendar-body-cell-content,
|
|
1753
1751
|
body:not(.sto-dark-theme) .mat-date-range-input-separator {
|
|
1754
|
-
color:
|
|
1752
|
+
color: #3d3d3d;
|
|
1755
1753
|
border-color: transparent;
|
|
1756
1754
|
}
|
|
1757
1755
|
body:not(.sto-dark-theme) .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1758
|
-
color:
|
|
1756
|
+
color: #bebebe;
|
|
1759
1757
|
}
|
|
1760
1758
|
body:not(.sto-dark-theme) .mat-form-field-disabled .mat-date-range-input-separator {
|
|
1761
|
-
color:
|
|
1759
|
+
color: #bebebe;
|
|
1762
1760
|
}
|
|
1763
1761
|
body:not(.sto-dark-theme) .mat-calendar-body-in-preview {
|
|
1764
|
-
color:
|
|
1762
|
+
color: gainsboro;
|
|
1765
1763
|
}
|
|
1766
1764
|
body:not(.sto-dark-theme) .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1767
|
-
border-color:
|
|
1765
|
+
border-color: #bebebe;
|
|
1768
1766
|
}
|
|
1769
1767
|
body:not(.sto-dark-theme) .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1770
|
-
border-color: rgba(
|
|
1768
|
+
border-color: rgba(190, 190, 190, 0.8);
|
|
1771
1769
|
}
|
|
1772
1770
|
body:not(.sto-dark-theme) .mat-calendar-body-in-range::before {
|
|
1773
1771
|
background: rgba(0, 112, 121, 0.2);
|
|
@@ -1810,7 +1808,7 @@ body:not(.sto-dark-theme) .cdk-program-focused .mat-calendar-body-active > .mat-
|
|
|
1810
1808
|
body:not(.sto-dark-theme) .mat-datepicker-content {
|
|
1811
1809
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1812
1810
|
background-color: white;
|
|
1813
|
-
color:
|
|
1811
|
+
color: #3d3d3d;
|
|
1814
1812
|
}
|
|
1815
1813
|
body:not(.sto-dark-theme) .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
|
|
1816
1814
|
background: rgba(213, 234, 244, 0.2);
|
|
@@ -1901,31 +1899,31 @@ body:not(.sto-dark-theme) .mat-datepicker-toggle-active.mat-warn {
|
|
|
1901
1899
|
color: #f44336;
|
|
1902
1900
|
}
|
|
1903
1901
|
body:not(.sto-dark-theme) .mat-date-range-input-inner[disabled] {
|
|
1904
|
-
color:
|
|
1902
|
+
color: #bebebe;
|
|
1905
1903
|
}
|
|
1906
1904
|
body:not(.sto-dark-theme) .mat-dialog-container {
|
|
1907
1905
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
1908
1906
|
background: white;
|
|
1909
|
-
color:
|
|
1907
|
+
color: #3d3d3d;
|
|
1910
1908
|
}
|
|
1911
1909
|
body:not(.sto-dark-theme) .mat-divider {
|
|
1912
|
-
border-top-color:
|
|
1910
|
+
border-top-color: gainsboro;
|
|
1913
1911
|
}
|
|
1914
1912
|
body:not(.sto-dark-theme) .mat-divider-vertical {
|
|
1915
|
-
border-right-color:
|
|
1913
|
+
border-right-color: gainsboro;
|
|
1916
1914
|
}
|
|
1917
1915
|
body:not(.sto-dark-theme) .mat-expansion-panel {
|
|
1918
1916
|
background: white;
|
|
1919
|
-
color:
|
|
1917
|
+
color: #3d3d3d;
|
|
1920
1918
|
}
|
|
1921
1919
|
body:not(.sto-dark-theme) .mat-expansion-panel:not([class*=mat-elevation-z]) {
|
|
1922
1920
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
1923
1921
|
}
|
|
1924
1922
|
body:not(.sto-dark-theme) .mat-action-row {
|
|
1925
|
-
border-top-color:
|
|
1923
|
+
border-top-color: gainsboro;
|
|
1926
1924
|
}
|
|
1927
1925
|
body:not(.sto-dark-theme) .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), body:not(.sto-dark-theme) .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), body:not(.sto-dark-theme) .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
|
|
1928
|
-
background:
|
|
1926
|
+
background: #eaeaea;
|
|
1929
1927
|
}
|
|
1930
1928
|
@media (hover: none) {
|
|
1931
1929
|
body:not(.sto-dark-theme) .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
|
|
@@ -1933,14 +1931,14 @@ body:not(.sto-dark-theme) .mat-expansion-panel .mat-expansion-panel-header.cdk-k
|
|
|
1933
1931
|
}
|
|
1934
1932
|
}
|
|
1935
1933
|
body:not(.sto-dark-theme) .mat-expansion-panel-header-title {
|
|
1936
|
-
color:
|
|
1934
|
+
color: #3d3d3d;
|
|
1937
1935
|
}
|
|
1938
1936
|
body:not(.sto-dark-theme) .mat-expansion-panel-header-description,
|
|
1939
1937
|
body:not(.sto-dark-theme) .mat-expansion-indicator::after {
|
|
1940
|
-
color:
|
|
1938
|
+
color: #565656;
|
|
1941
1939
|
}
|
|
1942
1940
|
body:not(.sto-dark-theme) .mat-expansion-panel-header[aria-disabled=true] {
|
|
1943
|
-
color:
|
|
1941
|
+
color: #bebebe;
|
|
1944
1942
|
}
|
|
1945
1943
|
body:not(.sto-dark-theme) .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
|
|
1946
1944
|
body:not(.sto-dark-theme) .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
|
|
@@ -1954,10 +1952,10 @@ body:not(.sto-dark-theme) .mat-expansion-panel-header[aria-disabled=true] .mat-e
|
|
|
1954
1952
|
}
|
|
1955
1953
|
|
|
1956
1954
|
body:not(.sto-dark-theme) .mat-form-field-label {
|
|
1957
|
-
color: rgba(
|
|
1955
|
+
color: rgba(86, 86, 86, 0.6);
|
|
1958
1956
|
}
|
|
1959
1957
|
body:not(.sto-dark-theme) .mat-hint {
|
|
1960
|
-
color: rgba(
|
|
1958
|
+
color: rgba(86, 86, 86, 0.6);
|
|
1961
1959
|
}
|
|
1962
1960
|
body:not(.sto-dark-theme) .mat-form-field.mat-focused .mat-form-field-label {
|
|
1963
1961
|
color: #007079;
|
|
@@ -1972,7 +1970,7 @@ body:not(.sto-dark-theme) .mat-focused .mat-form-field-required-marker {
|
|
|
1972
1970
|
color: #d5eaf4;
|
|
1973
1971
|
}
|
|
1974
1972
|
body:not(.sto-dark-theme) .mat-form-field-ripple {
|
|
1975
|
-
background-color: rgba(
|
|
1973
|
+
background-color: rgba(220, 220, 220, 0.87);
|
|
1976
1974
|
}
|
|
1977
1975
|
body:not(.sto-dark-theme) .mat-form-field.mat-focused .mat-form-field-ripple {
|
|
1978
1976
|
background-color: #007079;
|
|
@@ -2007,47 +2005,47 @@ body:not(.sto-dark-theme) .mat-error {
|
|
|
2007
2005
|
color: #f44336;
|
|
2008
2006
|
}
|
|
2009
2007
|
body:not(.sto-dark-theme) .mat-form-field-appearance-legacy .mat-form-field-label {
|
|
2010
|
-
color:
|
|
2008
|
+
color: #565656;
|
|
2011
2009
|
}
|
|
2012
2010
|
body:not(.sto-dark-theme) .mat-form-field-appearance-legacy .mat-hint {
|
|
2013
|
-
color:
|
|
2011
|
+
color: #565656;
|
|
2014
2012
|
}
|
|
2015
2013
|
body:not(.sto-dark-theme) .mat-form-field-appearance-legacy .mat-form-field-underline {
|
|
2016
|
-
background-color: rgba(
|
|
2014
|
+
background-color: rgba(220, 220, 220, 0.42);
|
|
2017
2015
|
}
|
|
2018
2016
|
body:not(.sto-dark-theme) .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
|
|
2019
|
-
background-image: linear-gradient(to right, rgba(
|
|
2017
|
+
background-image: linear-gradient(to right, rgba(220, 220, 220, 0.42) 0%, rgba(220, 220, 220, 0.42) 33%, transparent 0%);
|
|
2020
2018
|
background-size: 4px 100%;
|
|
2021
2019
|
background-repeat: repeat-x;
|
|
2022
2020
|
}
|
|
2023
2021
|
body:not(.sto-dark-theme) .mat-form-field-appearance-standard .mat-form-field-underline {
|
|
2024
|
-
background-color: rgba(
|
|
2022
|
+
background-color: rgba(220, 220, 220, 0.42);
|
|
2025
2023
|
}
|
|
2026
2024
|
body:not(.sto-dark-theme) .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
|
|
2027
|
-
background-image: linear-gradient(to right, rgba(
|
|
2025
|
+
background-image: linear-gradient(to right, rgba(220, 220, 220, 0.42) 0%, rgba(220, 220, 220, 0.42) 33%, transparent 0%);
|
|
2028
2026
|
background-size: 4px 100%;
|
|
2029
2027
|
background-repeat: repeat-x;
|
|
2030
2028
|
}
|
|
2031
2029
|
body:not(.sto-dark-theme) .mat-form-field-appearance-fill .mat-form-field-flex {
|
|
2032
|
-
background-color: rgba(
|
|
2030
|
+
background-color: rgba(61, 61, 61, 0.04);
|
|
2033
2031
|
}
|
|
2034
2032
|
body:not(.sto-dark-theme) .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
|
|
2035
|
-
background-color: rgba(
|
|
2033
|
+
background-color: rgba(61, 61, 61, 0.02);
|
|
2036
2034
|
}
|
|
2037
2035
|
body:not(.sto-dark-theme) .mat-form-field-appearance-fill .mat-form-field-underline::before {
|
|
2038
|
-
background-color: rgba(
|
|
2036
|
+
background-color: rgba(220, 220, 220, 0.42);
|
|
2039
2037
|
}
|
|
2040
2038
|
body:not(.sto-dark-theme) .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
|
|
2041
|
-
color:
|
|
2039
|
+
color: #bebebe;
|
|
2042
2040
|
}
|
|
2043
2041
|
body:not(.sto-dark-theme) .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
|
|
2044
2042
|
background-color: transparent;
|
|
2045
2043
|
}
|
|
2046
2044
|
body:not(.sto-dark-theme) .mat-form-field-appearance-outline .mat-form-field-outline {
|
|
2047
|
-
color: rgba(
|
|
2045
|
+
color: rgba(220, 220, 220, 0.12);
|
|
2048
2046
|
}
|
|
2049
2047
|
body:not(.sto-dark-theme) .mat-form-field-appearance-outline .mat-form-field-outline-thick {
|
|
2050
|
-
color: rgba(
|
|
2048
|
+
color: rgba(220, 220, 220, 0.87);
|
|
2051
2049
|
}
|
|
2052
2050
|
body:not(.sto-dark-theme) .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
|
|
2053
2051
|
color: #007079;
|
|
@@ -2062,10 +2060,10 @@ body:not(.sto-dark-theme) .mat-form-field-appearance-outline.mat-form-field-inva
|
|
|
2062
2060
|
color: #f44336;
|
|
2063
2061
|
}
|
|
2064
2062
|
body:not(.sto-dark-theme) .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
|
|
2065
|
-
color:
|
|
2063
|
+
color: #bebebe;
|
|
2066
2064
|
}
|
|
2067
2065
|
body:not(.sto-dark-theme) .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
|
|
2068
|
-
color: rgba(
|
|
2066
|
+
color: rgba(220, 220, 220, 0.06);
|
|
2069
2067
|
}
|
|
2070
2068
|
body:not(.sto-dark-theme) .mat-icon.mat-primary {
|
|
2071
2069
|
color: #007079;
|
|
@@ -2077,26 +2075,26 @@ body:not(.sto-dark-theme) .mat-icon.mat-warn {
|
|
|
2077
2075
|
color: #f44336;
|
|
2078
2076
|
}
|
|
2079
2077
|
body:not(.sto-dark-theme) .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
|
|
2080
|
-
color:
|
|
2078
|
+
color: #565656;
|
|
2081
2079
|
}
|
|
2082
2080
|
body:not(.sto-dark-theme) .mat-input-element:disabled,
|
|
2083
2081
|
body:not(.sto-dark-theme) .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
|
|
2084
|
-
color:
|
|
2082
|
+
color: #bebebe;
|
|
2085
2083
|
}
|
|
2086
2084
|
body:not(.sto-dark-theme) .mat-input-element {
|
|
2087
2085
|
caret-color: #007079;
|
|
2088
2086
|
}
|
|
2089
2087
|
body:not(.sto-dark-theme) .mat-input-element::placeholder {
|
|
2090
|
-
color: rgba(
|
|
2088
|
+
color: rgba(86, 86, 86, 0.42);
|
|
2091
2089
|
}
|
|
2092
2090
|
body:not(.sto-dark-theme) .mat-input-element::-moz-placeholder {
|
|
2093
|
-
color: rgba(
|
|
2091
|
+
color: rgba(86, 86, 86, 0.42);
|
|
2094
2092
|
}
|
|
2095
2093
|
body:not(.sto-dark-theme) .mat-input-element::-webkit-input-placeholder {
|
|
2096
|
-
color: rgba(
|
|
2094
|
+
color: rgba(86, 86, 86, 0.42);
|
|
2097
2095
|
}
|
|
2098
2096
|
body:not(.sto-dark-theme) .mat-input-element:-ms-input-placeholder {
|
|
2099
|
-
color: rgba(
|
|
2097
|
+
color: rgba(86, 86, 86, 0.42);
|
|
2100
2098
|
}
|
|
2101
2099
|
body:not(.sto-dark-theme) .mat-form-field.mat-accent .mat-input-element {
|
|
2102
2100
|
caret-color: #d5eaf4;
|
|
@@ -2109,26 +2107,26 @@ body:not(.sto-dark-theme) .mat-form-field-type-mat-native-select.mat-form-field-
|
|
|
2109
2107
|
color: #f44336;
|
|
2110
2108
|
}
|
|
2111
2109
|
body:not(.sto-dark-theme) .mat-list-base .mat-list-item {
|
|
2112
|
-
color:
|
|
2110
|
+
color: #3d3d3d;
|
|
2113
2111
|
}
|
|
2114
2112
|
body:not(.sto-dark-theme) .mat-list-base .mat-list-option {
|
|
2115
|
-
color:
|
|
2113
|
+
color: #3d3d3d;
|
|
2116
2114
|
}
|
|
2117
2115
|
body:not(.sto-dark-theme) .mat-list-base .mat-subheader {
|
|
2118
|
-
color:
|
|
2116
|
+
color: #565656;
|
|
2119
2117
|
}
|
|
2120
2118
|
body:not(.sto-dark-theme) .mat-list-item-disabled {
|
|
2121
|
-
background-color: #
|
|
2119
|
+
background-color: #eaeaea;
|
|
2122
2120
|
}
|
|
2123
2121
|
body:not(.sto-dark-theme) .mat-list-option:hover, body:not(.sto-dark-theme) .mat-list-option:focus,
|
|
2124
2122
|
body:not(.sto-dark-theme) .mat-nav-list .mat-list-item:hover,
|
|
2125
2123
|
body:not(.sto-dark-theme) .mat-nav-list .mat-list-item:focus,
|
|
2126
2124
|
body:not(.sto-dark-theme) .mat-action-list .mat-list-item:hover,
|
|
2127
2125
|
body:not(.sto-dark-theme) .mat-action-list .mat-list-item:focus {
|
|
2128
|
-
background:
|
|
2126
|
+
background: #eaeaea;
|
|
2129
2127
|
}
|
|
2130
2128
|
body:not(.sto-dark-theme) .mat-list-single-selected-option, body:not(.sto-dark-theme) .mat-list-single-selected-option:hover, body:not(.sto-dark-theme) .mat-list-single-selected-option:focus {
|
|
2131
|
-
background: rgba(
|
|
2129
|
+
background: rgba(234, 234, 234, 0.12);
|
|
2132
2130
|
}
|
|
2133
2131
|
body:not(.sto-dark-theme) .mat-menu-panel {
|
|
2134
2132
|
background: white;
|
|
@@ -2138,71 +2136,71 @@ body:not(.sto-dark-theme) .mat-menu-panel:not([class*=mat-elevation-z]) {
|
|
|
2138
2136
|
}
|
|
2139
2137
|
body:not(.sto-dark-theme) .mat-menu-item {
|
|
2140
2138
|
background: transparent;
|
|
2141
|
-
color:
|
|
2139
|
+
color: #3d3d3d;
|
|
2142
2140
|
}
|
|
2143
2141
|
body:not(.sto-dark-theme) .mat-menu-item[disabled], body:not(.sto-dark-theme) .mat-menu-item[disabled]::after,
|
|
2144
2142
|
body:not(.sto-dark-theme) .mat-menu-item[disabled] .mat-icon-no-color {
|
|
2145
|
-
color:
|
|
2143
|
+
color: #bebebe;
|
|
2146
2144
|
}
|
|
2147
2145
|
body:not(.sto-dark-theme) .mat-menu-item .mat-icon-no-color,
|
|
2148
2146
|
body:not(.sto-dark-theme) .mat-menu-item-submenu-trigger::after {
|
|
2149
|
-
color:
|
|
2147
|
+
color: #565656;
|
|
2150
2148
|
}
|
|
2151
2149
|
body:not(.sto-dark-theme) .mat-menu-item:hover:not([disabled]),
|
|
2152
2150
|
body:not(.sto-dark-theme) .mat-menu-item.cdk-program-focused:not([disabled]),
|
|
2153
2151
|
body:not(.sto-dark-theme) .mat-menu-item.cdk-keyboard-focused:not([disabled]),
|
|
2154
2152
|
body:not(.sto-dark-theme) .mat-menu-item-highlighted:not([disabled]) {
|
|
2155
|
-
background:
|
|
2153
|
+
background: #eaeaea;
|
|
2156
2154
|
}
|
|
2157
2155
|
body:not(.sto-dark-theme) .mat-paginator {
|
|
2158
2156
|
background: white;
|
|
2159
2157
|
}
|
|
2160
2158
|
body:not(.sto-dark-theme) .mat-paginator,
|
|
2161
2159
|
body:not(.sto-dark-theme) .mat-paginator-page-size .mat-select-trigger {
|
|
2162
|
-
color:
|
|
2160
|
+
color: #565656;
|
|
2163
2161
|
}
|
|
2164
2162
|
body:not(.sto-dark-theme) .mat-paginator-decrement,
|
|
2165
2163
|
body:not(.sto-dark-theme) .mat-paginator-increment {
|
|
2166
|
-
border-top: 2px solid
|
|
2167
|
-
border-right: 2px solid
|
|
2164
|
+
border-top: 2px solid #565656;
|
|
2165
|
+
border-right: 2px solid #565656;
|
|
2168
2166
|
}
|
|
2169
2167
|
body:not(.sto-dark-theme) .mat-paginator-first,
|
|
2170
2168
|
body:not(.sto-dark-theme) .mat-paginator-last {
|
|
2171
|
-
border-top: 2px solid
|
|
2169
|
+
border-top: 2px solid #565656;
|
|
2172
2170
|
}
|
|
2173
2171
|
body:not(.sto-dark-theme) .mat-icon-button[disabled] .mat-paginator-decrement,
|
|
2174
2172
|
body:not(.sto-dark-theme) .mat-icon-button[disabled] .mat-paginator-increment,
|
|
2175
2173
|
body:not(.sto-dark-theme) .mat-icon-button[disabled] .mat-paginator-first,
|
|
2176
2174
|
body:not(.sto-dark-theme) .mat-icon-button[disabled] .mat-paginator-last {
|
|
2177
|
-
border-color:
|
|
2175
|
+
border-color: #bebebe;
|
|
2178
2176
|
}
|
|
2179
2177
|
.mat-paginator-container {
|
|
2180
2178
|
min-height: 56px;
|
|
2181
2179
|
}
|
|
2182
2180
|
|
|
2183
2181
|
body:not(.sto-dark-theme) .mat-progress-bar-background {
|
|
2184
|
-
fill: #
|
|
2182
|
+
fill: #bfdbde;
|
|
2185
2183
|
}
|
|
2186
2184
|
body:not(.sto-dark-theme) .mat-progress-bar-buffer {
|
|
2187
|
-
background-color: #
|
|
2185
|
+
background-color: #bfdbde;
|
|
2188
2186
|
}
|
|
2189
2187
|
body:not(.sto-dark-theme) .mat-progress-bar-fill::after {
|
|
2190
2188
|
background-color: #007079;
|
|
2191
2189
|
}
|
|
2192
2190
|
body:not(.sto-dark-theme) .mat-progress-bar.mat-accent .mat-progress-bar-background {
|
|
2193
|
-
fill: #
|
|
2191
|
+
fill: #f5fafc;
|
|
2194
2192
|
}
|
|
2195
2193
|
body:not(.sto-dark-theme) .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
|
|
2196
|
-
background-color: #
|
|
2194
|
+
background-color: #f5fafc;
|
|
2197
2195
|
}
|
|
2198
2196
|
body:not(.sto-dark-theme) .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
|
|
2199
2197
|
background-color: #d5eaf4;
|
|
2200
2198
|
}
|
|
2201
2199
|
body:not(.sto-dark-theme) .mat-progress-bar.mat-warn .mat-progress-bar-background {
|
|
2202
|
-
fill: #
|
|
2200
|
+
fill: #fcd0cd;
|
|
2203
2201
|
}
|
|
2204
2202
|
body:not(.sto-dark-theme) .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
|
|
2205
|
-
background-color: #
|
|
2203
|
+
background-color: #fcd0cd;
|
|
2206
2204
|
}
|
|
2207
2205
|
body:not(.sto-dark-theme) .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
|
|
2208
2206
|
background-color: #f44336;
|
|
@@ -2217,7 +2215,7 @@ body:not(.sto-dark-theme) .mat-progress-spinner.mat-warn circle, body:not(.sto-d
|
|
|
2217
2215
|
stroke: #f44336;
|
|
2218
2216
|
}
|
|
2219
2217
|
body:not(.sto-dark-theme) .mat-radio-outer-circle {
|
|
2220
|
-
border-color:
|
|
2218
|
+
border-color: #565656;
|
|
2221
2219
|
}
|
|
2222
2220
|
body:not(.sto-dark-theme) .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
|
|
2223
2221
|
border-color: #007079;
|
|
@@ -2242,29 +2240,29 @@ body:not(.sto-dark-theme) .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripp
|
|
|
2242
2240
|
}
|
|
2243
2241
|
body:not(.sto-dark-theme) .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
|
|
2244
2242
|
body:not(.sto-dark-theme) .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
|
|
2245
|
-
border-color:
|
|
2243
|
+
border-color: #bebebe;
|
|
2246
2244
|
}
|
|
2247
2245
|
body:not(.sto-dark-theme) .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
|
|
2248
2246
|
body:not(.sto-dark-theme) .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
|
|
2249
|
-
background-color:
|
|
2247
|
+
background-color: #bebebe;
|
|
2250
2248
|
}
|
|
2251
2249
|
body:not(.sto-dark-theme) .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
|
|
2252
|
-
color:
|
|
2250
|
+
color: #bebebe;
|
|
2253
2251
|
}
|
|
2254
2252
|
body:not(.sto-dark-theme) .mat-radio-button .mat-ripple-element {
|
|
2255
|
-
background-color:
|
|
2253
|
+
background-color: #3D3D3D;
|
|
2256
2254
|
}
|
|
2257
2255
|
body:not(.sto-dark-theme) .mat-select-value {
|
|
2258
|
-
color:
|
|
2256
|
+
color: #3d3d3d;
|
|
2259
2257
|
}
|
|
2260
2258
|
body:not(.sto-dark-theme) .mat-select-placeholder {
|
|
2261
|
-
color: rgba(
|
|
2259
|
+
color: rgba(86, 86, 86, 0.42);
|
|
2262
2260
|
}
|
|
2263
2261
|
body:not(.sto-dark-theme) .mat-select-disabled .mat-select-value {
|
|
2264
|
-
color:
|
|
2262
|
+
color: #bebebe;
|
|
2265
2263
|
}
|
|
2266
2264
|
body:not(.sto-dark-theme) .mat-select-arrow {
|
|
2267
|
-
color:
|
|
2265
|
+
color: #565656;
|
|
2268
2266
|
}
|
|
2269
2267
|
body:not(.sto-dark-theme) .mat-select-panel {
|
|
2270
2268
|
background: white;
|
|
@@ -2273,7 +2271,7 @@ body:not(.sto-dark-theme) .mat-select-panel:not([class*=mat-elevation-z]) {
|
|
|
2273
2271
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
2274
2272
|
}
|
|
2275
2273
|
body:not(.sto-dark-theme) .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
|
|
2276
|
-
background: rgba(
|
|
2274
|
+
background: rgba(234, 234, 234, 0.12);
|
|
2277
2275
|
}
|
|
2278
2276
|
body:not(.sto-dark-theme) .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
|
|
2279
2277
|
color: #007079;
|
|
@@ -2288,15 +2286,15 @@ body:not(.sto-dark-theme) .mat-form-field .mat-select.mat-select-invalid .mat-se
|
|
|
2288
2286
|
color: #f44336;
|
|
2289
2287
|
}
|
|
2290
2288
|
body:not(.sto-dark-theme) .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
|
|
2291
|
-
color:
|
|
2289
|
+
color: #bebebe;
|
|
2292
2290
|
}
|
|
2293
2291
|
body:not(.sto-dark-theme) .mat-drawer-container {
|
|
2294
|
-
background-color:
|
|
2295
|
-
color:
|
|
2292
|
+
background-color: white;
|
|
2293
|
+
color: #3d3d3d;
|
|
2296
2294
|
}
|
|
2297
2295
|
body:not(.sto-dark-theme) .mat-drawer {
|
|
2298
2296
|
background-color: white;
|
|
2299
|
-
color:
|
|
2297
|
+
color: #3d3d3d;
|
|
2300
2298
|
}
|
|
2301
2299
|
body:not(.sto-dark-theme) .mat-drawer.mat-drawer-push {
|
|
2302
2300
|
background-color: white;
|
|
@@ -2305,19 +2303,19 @@ body:not(.sto-dark-theme) .mat-drawer:not(.mat-drawer-side) {
|
|
|
2305
2303
|
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
2306
2304
|
}
|
|
2307
2305
|
body:not(.sto-dark-theme) .mat-drawer-side {
|
|
2308
|
-
border-right: solid 1px
|
|
2306
|
+
border-right: solid 1px gainsboro;
|
|
2309
2307
|
}
|
|
2310
2308
|
body:not(.sto-dark-theme) .mat-drawer-side.mat-drawer-end {
|
|
2311
|
-
border-left: solid 1px
|
|
2309
|
+
border-left: solid 1px gainsboro;
|
|
2312
2310
|
border-right: none;
|
|
2313
2311
|
}
|
|
2314
2312
|
body:not(.sto-dark-theme) [dir=rtl] .mat-drawer-side {
|
|
2315
|
-
border-left: solid 1px
|
|
2313
|
+
border-left: solid 1px gainsboro;
|
|
2316
2314
|
border-right: none;
|
|
2317
2315
|
}
|
|
2318
2316
|
body:not(.sto-dark-theme) [dir=rtl] .mat-drawer-side.mat-drawer-end {
|
|
2319
2317
|
border-left: none;
|
|
2320
|
-
border-right: solid 1px
|
|
2318
|
+
border-right: solid 1px gainsboro;
|
|
2321
2319
|
}
|
|
2322
2320
|
body:not(.sto-dark-theme) .mat-drawer-backdrop.mat-drawer-shown {
|
|
2323
2321
|
background-color: rgba(0, 0, 0, 0.6);
|
|
@@ -2350,17 +2348,17 @@ body:not(.sto-dark-theme) .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-ele
|
|
|
2350
2348
|
background-color: #f44336;
|
|
2351
2349
|
}
|
|
2352
2350
|
body:not(.sto-dark-theme) .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
|
|
2353
|
-
background-color:
|
|
2351
|
+
background-color: #3d3d3d;
|
|
2354
2352
|
}
|
|
2355
2353
|
body:not(.sto-dark-theme) .mat-slide-toggle-thumb {
|
|
2356
2354
|
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
2357
2355
|
background-color: #fafafa;
|
|
2358
2356
|
}
|
|
2359
2357
|
body:not(.sto-dark-theme) .mat-slide-toggle-bar {
|
|
2360
|
-
background-color:
|
|
2358
|
+
background-color: #bebebe;
|
|
2361
2359
|
}
|
|
2362
2360
|
body:not(.sto-dark-theme) .mat-slider-track-background {
|
|
2363
|
-
background-color:
|
|
2361
|
+
background-color: #bebebe;
|
|
2364
2362
|
}
|
|
2365
2363
|
body:not(.sto-dark-theme) .mat-primary .mat-slider-track-fill,
|
|
2366
2364
|
body:not(.sto-dark-theme) .mat-primary .mat-slider-thumb,
|
|
@@ -2397,49 +2395,49 @@ body:not(.sto-dark-theme) .mat-warn .mat-slider-focus-ring {
|
|
|
2397
2395
|
}
|
|
2398
2396
|
body:not(.sto-dark-theme) .mat-slider:hover .mat-slider-track-background,
|
|
2399
2397
|
body:not(.sto-dark-theme) .cdk-focused .mat-slider-track-background {
|
|
2400
|
-
background-color:
|
|
2398
|
+
background-color: #bebebe;
|
|
2401
2399
|
}
|
|
2402
2400
|
body:not(.sto-dark-theme) .mat-slider-disabled .mat-slider-track-background,
|
|
2403
2401
|
body:not(.sto-dark-theme) .mat-slider-disabled .mat-slider-track-fill,
|
|
2404
2402
|
body:not(.sto-dark-theme) .mat-slider-disabled .mat-slider-thumb {
|
|
2405
|
-
background-color:
|
|
2403
|
+
background-color: #bebebe;
|
|
2406
2404
|
}
|
|
2407
2405
|
body:not(.sto-dark-theme) .mat-slider-disabled:hover .mat-slider-track-background {
|
|
2408
|
-
background-color:
|
|
2406
|
+
background-color: #bebebe;
|
|
2409
2407
|
}
|
|
2410
2408
|
body:not(.sto-dark-theme) .mat-slider-min-value .mat-slider-focus-ring {
|
|
2411
|
-
background-color: rgba(
|
|
2409
|
+
background-color: rgba(61, 61, 61, 0.12);
|
|
2412
2410
|
}
|
|
2413
2411
|
body:not(.sto-dark-theme) .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
|
|
2414
2412
|
body:not(.sto-dark-theme) .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
|
|
2415
|
-
background-color:
|
|
2413
|
+
background-color: #3d3d3d;
|
|
2416
2414
|
}
|
|
2417
2415
|
body:not(.sto-dark-theme) .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
|
|
2418
2416
|
body:not(.sto-dark-theme) .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
|
|
2419
|
-
background-color:
|
|
2417
|
+
background-color: #bebebe;
|
|
2420
2418
|
}
|
|
2421
2419
|
body:not(.sto-dark-theme) .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
|
|
2422
|
-
border-color:
|
|
2420
|
+
border-color: #bebebe;
|
|
2423
2421
|
background-color: transparent;
|
|
2424
2422
|
}
|
|
2425
2423
|
body:not(.sto-dark-theme) .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, body:not(.sto-dark-theme) .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
|
|
2426
|
-
border-color:
|
|
2424
|
+
border-color: #bebebe;
|
|
2427
2425
|
}
|
|
2428
2426
|
body:not(.sto-dark-theme) .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, body:not(.sto-dark-theme) .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
|
|
2429
|
-
border-color:
|
|
2427
|
+
border-color: #bebebe;
|
|
2430
2428
|
}
|
|
2431
2429
|
body:not(.sto-dark-theme) .mat-slider-has-ticks .mat-slider-wrapper::after {
|
|
2432
|
-
border-color: rgba(
|
|
2430
|
+
border-color: rgba(61, 61, 61, 0.7);
|
|
2433
2431
|
}
|
|
2434
2432
|
body:not(.sto-dark-theme) .mat-slider-horizontal .mat-slider-ticks {
|
|
2435
|
-
background-image: repeating-linear-gradient(to right, rgba(
|
|
2436
|
-
background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(
|
|
2433
|
+
background-image: repeating-linear-gradient(to right, rgba(61, 61, 61, 0.7), rgba(61, 61, 61, 0.7) 2px, transparent 0, transparent);
|
|
2434
|
+
background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(61, 61, 61, 0.7), rgba(61, 61, 61, 0.7) 2px, transparent 0, transparent);
|
|
2437
2435
|
}
|
|
2438
2436
|
body:not(.sto-dark-theme) .mat-slider-vertical .mat-slider-ticks {
|
|
2439
|
-
background-image: repeating-linear-gradient(to bottom, rgba(
|
|
2437
|
+
background-image: repeating-linear-gradient(to bottom, rgba(61, 61, 61, 0.7), rgba(61, 61, 61, 0.7) 2px, transparent 0, transparent);
|
|
2440
2438
|
}
|
|
2441
2439
|
body:not(.sto-dark-theme) .mat-step-header.cdk-keyboard-focused, body:not(.sto-dark-theme) .mat-step-header.cdk-program-focused, body:not(.sto-dark-theme) .mat-step-header:hover {
|
|
2442
|
-
background-color:
|
|
2440
|
+
background-color: #eaeaea;
|
|
2443
2441
|
}
|
|
2444
2442
|
@media (hover: none) {
|
|
2445
2443
|
body:not(.sto-dark-theme) .mat-step-header:hover {
|
|
@@ -2448,10 +2446,10 @@ body:not(.sto-dark-theme) .mat-step-header.cdk-keyboard-focused, body:not(.sto-d
|
|
|
2448
2446
|
}
|
|
2449
2447
|
body:not(.sto-dark-theme) .mat-step-header .mat-step-label,
|
|
2450
2448
|
body:not(.sto-dark-theme) .mat-step-header .mat-step-optional {
|
|
2451
|
-
color:
|
|
2449
|
+
color: #565656;
|
|
2452
2450
|
}
|
|
2453
2451
|
body:not(.sto-dark-theme) .mat-step-header .mat-step-icon {
|
|
2454
|
-
background-color:
|
|
2452
|
+
background-color: #565656;
|
|
2455
2453
|
color: white;
|
|
2456
2454
|
}
|
|
2457
2455
|
body:not(.sto-dark-theme) .mat-step-header .mat-step-icon-selected,
|
|
@@ -2483,7 +2481,7 @@ body:not(.sto-dark-theme) .mat-step-header .mat-step-icon-state-error {
|
|
|
2483
2481
|
color: #f44336;
|
|
2484
2482
|
}
|
|
2485
2483
|
body:not(.sto-dark-theme) .mat-step-header .mat-step-label.mat-step-label-active {
|
|
2486
|
-
color:
|
|
2484
|
+
color: #3d3d3d;
|
|
2487
2485
|
}
|
|
2488
2486
|
body:not(.sto-dark-theme) .mat-step-header .mat-step-label.mat-step-label-error {
|
|
2489
2487
|
color: #f44336;
|
|
@@ -2492,12 +2490,12 @@ body:not(.sto-dark-theme) .mat-stepper-horizontal, body:not(.sto-dark-theme) .ma
|
|
|
2492
2490
|
background-color: white;
|
|
2493
2491
|
}
|
|
2494
2492
|
body:not(.sto-dark-theme) .mat-stepper-vertical-line::before {
|
|
2495
|
-
border-left-color:
|
|
2493
|
+
border-left-color: gainsboro;
|
|
2496
2494
|
}
|
|
2497
2495
|
body:not(.sto-dark-theme) .mat-horizontal-stepper-header::before,
|
|
2498
2496
|
body:not(.sto-dark-theme) .mat-horizontal-stepper-header::after,
|
|
2499
2497
|
body:not(.sto-dark-theme) .mat-stepper-horizontal-line {
|
|
2500
|
-
border-top-color:
|
|
2498
|
+
border-top-color: gainsboro;
|
|
2501
2499
|
}
|
|
2502
2500
|
.mat-horizontal-stepper-header {
|
|
2503
2501
|
height: 72px;
|
|
@@ -2522,28 +2520,28 @@ body:not(.sto-dark-theme) .mat-stepper-horizontal-line {
|
|
|
2522
2520
|
}
|
|
2523
2521
|
|
|
2524
2522
|
body:not(.sto-dark-theme) .mat-sort-header-arrow {
|
|
2525
|
-
color: #
|
|
2523
|
+
color: #565656;
|
|
2526
2524
|
}
|
|
2527
2525
|
body:not(.sto-dark-theme) .mat-tab-nav-bar,
|
|
2528
2526
|
body:not(.sto-dark-theme) .mat-tab-header {
|
|
2529
|
-
border-bottom: 1px solid
|
|
2527
|
+
border-bottom: 1px solid gainsboro;
|
|
2530
2528
|
}
|
|
2531
2529
|
body:not(.sto-dark-theme) .mat-tab-group-inverted-header .mat-tab-nav-bar,
|
|
2532
2530
|
body:not(.sto-dark-theme) .mat-tab-group-inverted-header .mat-tab-header {
|
|
2533
|
-
border-top: 1px solid
|
|
2531
|
+
border-top: 1px solid gainsboro;
|
|
2534
2532
|
border-bottom: none;
|
|
2535
2533
|
}
|
|
2536
2534
|
body:not(.sto-dark-theme) .mat-tab-label, body:not(.sto-dark-theme) .mat-tab-link {
|
|
2537
|
-
color:
|
|
2535
|
+
color: #3d3d3d;
|
|
2538
2536
|
}
|
|
2539
2537
|
body:not(.sto-dark-theme) .mat-tab-label.mat-tab-disabled, body:not(.sto-dark-theme) .mat-tab-link.mat-tab-disabled {
|
|
2540
|
-
color:
|
|
2538
|
+
color: #bebebe;
|
|
2541
2539
|
}
|
|
2542
2540
|
body:not(.sto-dark-theme) .mat-tab-header-pagination-chevron {
|
|
2543
|
-
border-color:
|
|
2541
|
+
border-color: #3d3d3d;
|
|
2544
2542
|
}
|
|
2545
2543
|
body:not(.sto-dark-theme) .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
|
2546
|
-
border-color:
|
|
2544
|
+
border-color: #bebebe;
|
|
2547
2545
|
}
|
|
2548
2546
|
body:not(.sto-dark-theme) .mat-tab-group[class*=mat-background-] .mat-tab-header,
|
|
2549
2547
|
body:not(.sto-dark-theme) .mat-tab-nav-bar[class*=mat-background-] {
|
|
@@ -2701,8 +2699,8 @@ body:not(.sto-dark-theme) .mat-tab-nav-bar.mat-background-warn > .mat-tab-header
|
|
|
2701
2699
|
background-color: rgba(255, 255, 255, 0.12);
|
|
2702
2700
|
}
|
|
2703
2701
|
body:not(.sto-dark-theme) .mat-toolbar {
|
|
2704
|
-
background:
|
|
2705
|
-
color:
|
|
2702
|
+
background: white;
|
|
2703
|
+
color: #3d3d3d;
|
|
2706
2704
|
}
|
|
2707
2705
|
body:not(.sto-dark-theme) .mat-toolbar.mat-primary {
|
|
2708
2706
|
background: #007079;
|
|
@@ -2749,14 +2747,14 @@ body:not(.sto-dark-theme) .mat-toolbar .mat-input-element {
|
|
|
2749
2747
|
}
|
|
2750
2748
|
}
|
|
2751
2749
|
body:not(.sto-dark-theme) .mat-tooltip {
|
|
2752
|
-
background: rgba(
|
|
2750
|
+
background: rgba(0, 0, 0, 0.9);
|
|
2753
2751
|
}
|
|
2754
2752
|
body:not(.sto-dark-theme) .mat-tree {
|
|
2755
2753
|
background: white;
|
|
2756
2754
|
}
|
|
2757
2755
|
body:not(.sto-dark-theme) .mat-tree-node,
|
|
2758
2756
|
body:not(.sto-dark-theme) .mat-nested-tree-node {
|
|
2759
|
-
color:
|
|
2757
|
+
color: #3d3d3d;
|
|
2760
2758
|
}
|
|
2761
2759
|
.mat-tree-node {
|
|
2762
2760
|
min-height: 48px;
|
|
@@ -6633,10 +6631,6 @@ Use with StoGridDirective
|
|
|
6633
6631
|
margin: 0;
|
|
6634
6632
|
padding: 12px 24px 16px;
|
|
6635
6633
|
}
|
|
6636
|
-
.sto-dialog .mat-dialog-container .mat-dialog-content.scroll-lines {
|
|
6637
|
-
border-top: solid 1px #E0E0E0;
|
|
6638
|
-
border-bottom: solid 1px #E0E0E0;
|
|
6639
|
-
}
|
|
6640
6634
|
.sto-dialog .mat-dialog-container .mat-dialog-content .sto-selection-list {
|
|
6641
6635
|
margin: -24px;
|
|
6642
6636
|
}
|
|
@@ -6764,10 +6758,6 @@ Below styles overrides Angular Material defaults
|
|
|
6764
6758
|
line-height: 13px;
|
|
6765
6759
|
}
|
|
6766
6760
|
|
|
6767
|
-
.mat-button, .mat-raised-button, .mat-flat-button, .mat-stroked-button {
|
|
6768
|
-
text-transform: uppercase;
|
|
6769
|
-
}
|
|
6770
|
-
|
|
6771
6761
|
.mat-menu-item.active {
|
|
6772
6762
|
color: #3f51b5;
|
|
6773
6763
|
}
|
|
@@ -6894,7 +6884,7 @@ body:not(.sto-dark-theme) .sto-form__field .mat-form-field-flex:hover {
|
|
|
6894
6884
|
background-color: rgba(102, 135, 184, 0.15);
|
|
6895
6885
|
}
|
|
6896
6886
|
body:not(.sto-dark-theme) .sto-form__field .mat-form-field-wrapper .mat-form-field-underline {
|
|
6897
|
-
background-color: rgba(
|
|
6887
|
+
background-color: rgba(61, 61, 61, 0.12);
|
|
6898
6888
|
}
|
|
6899
6889
|
body:not(.sto-dark-theme) .sto-form__field--readonly .mat-form-field-flex:hover {
|
|
6900
6890
|
background-color: transparent;
|
|
@@ -6903,16 +6893,16 @@ body:not(.sto-dark-theme) .sto-form__field--readonly .mat-form-field-flex:hover
|
|
|
6903
6893
|
background-color: transparent;
|
|
6904
6894
|
}
|
|
6905
6895
|
body:not(.sto-dark-theme) .sto-form__field--disabled {
|
|
6906
|
-
color:
|
|
6896
|
+
color: #bebebe;
|
|
6907
6897
|
}
|
|
6908
6898
|
body:not(.sto-dark-theme) .sto-form__field--disabled .mat-form-field-flex:hover {
|
|
6909
|
-
background-color:
|
|
6899
|
+
background-color: #bebebe;
|
|
6910
6900
|
}
|
|
6911
6901
|
body:not(.sto-dark-theme) .sto-form__field--disabled .mat-form-field-flex:hover + .mat-form-field-underline {
|
|
6912
6902
|
background-color: transparent;
|
|
6913
6903
|
}
|
|
6914
6904
|
body:not(.sto-dark-theme) .sto-form__field--disabled .mat-form-field-flex {
|
|
6915
|
-
color:
|
|
6905
|
+
color: #bebebe;
|
|
6916
6906
|
}
|
|
6917
6907
|
body:not(.sto-dark-theme) .sto-form__field--disabled .mat-select.mat-select-disabled .mat-select-arrow {
|
|
6918
6908
|
color: rgba(0, 0, 0, 0.38);
|
|
@@ -7172,4 +7162,8 @@ body.sto-dark-theme .sto-form__field--disabled .mat-select.mat-select-disabled .
|
|
|
7172
7162
|
|
|
7173
7163
|
.negative-number .mat-input-element:disabled {
|
|
7174
7164
|
color: #cc1414;
|
|
7165
|
+
}
|
|
7166
|
+
|
|
7167
|
+
.mat-typography .mat-calendar-body-cell-content.mat-focus-indicator {
|
|
7168
|
+
position: absolute !important;
|
|
7175
7169
|
}
|