diff --git a/frontend/app/features/content/shared/list/content-list-cell.directive.ts b/frontend/app/features/content/shared/list/content-list-cell.directive.ts index 9fa0a1b4b..c3cb45572 100644 --- a/frontend/app/features/content/shared/list/content-list-cell.directive.ts +++ b/frontend/app/features/content/shared/list/content-list-cell.directive.ts @@ -86,7 +86,5 @@ export class ContentListCellDirective implements OnChanges { this.renderer.setStyle(this.element.nativeElement, 'max-width', width); this.renderer.setStyle(this.element.nativeElement, 'width', width); } - - this.renderer.setStyle(this.element.nativeElement, 'position', 'relative'); } } \ No newline at end of file diff --git a/frontend/app/features/content/shared/list/content-value.component.scss b/frontend/app/features/content/shared/list/content-value.component.scss index 3de8b1711..e08e1c228 100644 --- a/frontend/app/features/content/shared/list/content-value.component.scss +++ b/frontend/app/features/content/shared/list/content-value.component.scss @@ -1,9 +1,16 @@ +:host { + direction: ltr; + display: block; + position: relative; +} + :host ::ng-deep { img { + margin-top: -25px; max-height: 50px; min-height: 50px; position: absolute; - top: 5px; + top: 50%; } img + span { @@ -12,5 +19,9 @@ span { @include truncate; + + &::after { + content: ''; + } } } \ No newline at end of file