qms-angular 2.0.5 → 2.0.6
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/esm2022/lib/components/select-access-dialog/select-access-dialog.component.mjs +3 -3
- package/fesm2022/qms-angular.mjs +2 -2
- package/fesm2022/qms-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/select-access-dialog/select-access-dialog.component.scss +3 -1
- package/src/themes/core/_tab.scss +26 -12
- package/src/themes/core/_table.scss +0 -1
package/package.json
CHANGED
@@ -7,8 +7,9 @@
|
|
7
7
|
display: flex;
|
8
8
|
flex-direction: column;
|
9
9
|
align-items: center;
|
10
|
-
color: theme-apply($tab-dark-background);
|
10
|
+
// color: theme-apply($tab-dark-background);
|
11
11
|
font-family: Open Sans, Arial, Sans-Serif;
|
12
|
+
font-weight: 600;
|
12
13
|
}
|
13
14
|
|
14
15
|
.qms-tab-label:hover {
|
@@ -76,7 +77,7 @@
|
|
76
77
|
align-items: center;
|
77
78
|
color: theme-apply($popup-title-color);
|
78
79
|
font-family: Open Sans, Arial, Sans-Serif;
|
79
|
-
font-weight:
|
80
|
+
font-weight: 600;
|
80
81
|
.mat-icon {
|
81
82
|
color: black(0.6);
|
82
83
|
}
|
@@ -175,7 +176,7 @@
|
|
175
176
|
}
|
176
177
|
|
177
178
|
&.qms-tab-group-advanced.primary {
|
178
|
-
background: theme-apply($tab-dark-background);
|
179
|
+
// background: theme-apply($tab-dark-background);
|
179
180
|
/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
|
180
181
|
.mat-tab-labels {
|
181
182
|
border-bottom: 1px solid theme-apply($tab-primary-label);
|
@@ -185,7 +186,7 @@
|
|
185
186
|
flex-direction: column;
|
186
187
|
align-items: center;
|
187
188
|
color: white;
|
188
|
-
font-weight:
|
189
|
+
font-weight: 600;
|
189
190
|
.mat-icon {
|
190
191
|
color: theme-apply($tab-primary-icon);
|
191
192
|
}
|
@@ -250,7 +251,7 @@
|
|
250
251
|
}
|
251
252
|
/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
|
252
253
|
&.mat-tab-disabled:hover {
|
253
|
-
background: theme-apply($tab-dark-background);
|
254
|
+
// background: theme-apply($tab-dark-background);
|
254
255
|
}
|
255
256
|
}
|
256
257
|
|
@@ -295,8 +296,9 @@
|
|
295
296
|
display: flex;
|
296
297
|
flex-direction: column;
|
297
298
|
align-items: center;
|
298
|
-
color: theme-apply($tab-dark-background);
|
299
|
+
// color: theme-apply($tab-dark-background);
|
299
300
|
font-family: Open Sans, Arial, Sans-Serif;
|
301
|
+
font-weight: 600;
|
300
302
|
}
|
301
303
|
|
302
304
|
.qms-tab-label:hover {
|
@@ -352,6 +354,18 @@
|
|
352
354
|
border-color: theme-apply($tab-border);
|
353
355
|
}
|
354
356
|
}
|
357
|
+
|
358
|
+
.mdc-tab-indicator__content--underline {
|
359
|
+
border-top-width: 3px;
|
360
|
+
border-color: theme-apply($active);
|
361
|
+
}
|
362
|
+
|
363
|
+
.mdc-tab--active {
|
364
|
+
.mdc-tab__text-label {
|
365
|
+
color: theme-apply($active);
|
366
|
+
font-weight: 600;
|
367
|
+
}
|
368
|
+
}
|
355
369
|
}
|
356
370
|
|
357
371
|
&.qms-tab-group-advanced {
|
@@ -359,9 +373,9 @@
|
|
359
373
|
display: flex;
|
360
374
|
flex-direction: column;
|
361
375
|
align-items: center;
|
362
|
-
color: theme-apply($tab-dark-background);
|
376
|
+
// color: theme-apply($tab-dark-background);
|
363
377
|
font-family: Open Sans, Arial, Sans-Serif;
|
364
|
-
font-weight:
|
378
|
+
font-weight: 600;
|
365
379
|
.mat-icon {
|
366
380
|
color: black(0.6);
|
367
381
|
}
|
@@ -452,14 +466,14 @@
|
|
452
466
|
}
|
453
467
|
|
454
468
|
&.qms-tab-group-advanced.primary {
|
455
|
-
background: theme-apply($tab-dark-background);
|
469
|
+
// background: theme-apply($tab-dark-background);
|
456
470
|
|
457
471
|
.qms-tab-label {
|
458
472
|
display: flex;
|
459
473
|
flex-direction: column;
|
460
474
|
align-items: center;
|
461
475
|
color: white;
|
462
|
-
font-weight:
|
476
|
+
font-weight: 600;
|
463
477
|
.mat-icon {
|
464
478
|
color: theme-apply($tab-primary-icon);
|
465
479
|
}
|
@@ -498,7 +512,7 @@
|
|
498
512
|
}
|
499
513
|
|
500
514
|
.mat-ripple-element {
|
501
|
-
background-color: theme-apply($tab-dark-background);
|
515
|
+
// background-color: theme-apply($tab-dark-background);
|
502
516
|
}
|
503
517
|
/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
|
504
518
|
&.mdc-tab--active {
|
@@ -519,7 +533,7 @@
|
|
519
533
|
}
|
520
534
|
/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
|
521
535
|
&.mat-tab-disabled:hover {
|
522
|
-
background: theme-apply($tab-dark-background);
|
536
|
+
// background: theme-apply($tab-dark-background);
|
523
537
|
}
|
524
538
|
}
|
525
539
|
|