Skip to content

Commit 416c64f

Browse files
Merge branch 'main' into not_found_page_design_change
2 parents 9781364 + b7d4569 commit 416c64f

File tree

6 files changed

+12
-17
lines changed

6 files changed

+12
-17
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"@types/lodash-es": "^4.17.4",
9393
"@types/node": "^15.12.5",
9494
"@types/uuid": "^8.3.1",
95-
"@types/webpack-env": "^1.14.0",
95+
"@types/webpack-env": "^1.16.2",
9696
"codelyzer": "^6.0.2",
9797
"commitizen": "^4.2.4",
9898
"cz-conventional-changelog": "^3.3.0",

projects/components/src/link/link.component.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import { EMPTY, Observable } from 'rxjs';
1212
<a
1313
*htLetAsync="this.navData$ as navData"
1414
class="ht-link"
15-
target="{{ this.openInNewTab ? '_blank' : '' }}"
16-
rel="noopener noreferrer"
1715
[ngClass]="{ disabled: this.disabled || !navData }"
1816
[routerLink]="navData?.path"
1917
[queryParams]="navData?.extras?.queryParams"
@@ -29,9 +27,6 @@ export class LinkComponent implements OnChanges {
2927
@Input()
3028
public paramsOrUrl?: NavigationParams | string | null;
3129

32-
@Input()
33-
public openInNewTab?: boolean;
34-
3530
@Input()
3631
public disabled?: boolean;
3732

projects/components/src/sequence/sequence-chart.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
.selected-row {
6969
.backdrop {
7070
fill-opacity: 100;
71-
fill: $blue-1;
71+
fill: $gray-1;
7272
}
7373

7474
.backdrop-border-top {

projects/components/src/table/table.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ $header-height: 32px;
4848
}
4949

5050
&.selected-row {
51-
background: $blue-1;
51+
background: $gray-1;
5252
border-bottom: 1px solid $blue-2;
5353
border-top: 1px solid $blue-2;
5454

projects/observability/src/shared/components/card-list/card-list.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
@include card-hover();
2626

2727
&.selected-card {
28-
background: $blue-1;
28+
background: $gray-1;
2929
border: 1px solid $blue-2;
3030

3131
&.grouped-style {
3232
margin-bottom: 8px;
33-
@include grouped-style($blue-1);
33+
@include grouped-style($gray-1);
3434
}
3535

3636
&:hover {

0 commit comments

Comments
 (0)