Skip to content

Commit

Permalink
fix(theme): style and RxJS fixes for Angular 11 (#954)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktor-kyryltsev-kaltura authored Jun 30, 2021
1 parent 9dc3404 commit fc689f0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ $app-styles-path: '../../../styles';
}

.kDateControl .p-inputtext {
width: 176px;
width: 176px !important;
}

.p-inputtext:disabled {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export class ReplaceFileComponent implements OnInit, AfterViewInit, OnDestroy {
this._logger.debug(`link replace type detected, load storage profiles list`);
result = this._kalturaClient
.request(new StorageProfileListAction())
.map(response => response.objects);
.pipe(map(response => response.objects));
}else {
result = ObservableOf(null);
}
Expand Down
2 changes: 1 addition & 1 deletion src/kmc-app/components/app-menu/app-menu.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@

.kIconhelp.has-notification:after {
content: ' \25CF';
color: lighten($kPrimary, 10%);
color: lighten(#00a784, 10%);
position: absolute;
right: -4px;
bottom: -4px;
Expand Down
2 changes: 1 addition & 1 deletion src/kmc-app/components/changelog/changelog.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

&.active {
color: lighten($kPrimary, 10%);
color: lighten(#00a784, 10%);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.kNoParentOption {
padding-bottom: 10px;
display: block;
display: flex;
}

.kMain {
Expand Down

0 comments on commit fc689f0

Please sign in to comment.