Skip to content

Commit

Permalink
ov-components: Added elements ids for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Jul 26, 2024
1 parent a7e5f27 commit 3014d69
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ <h4>{{ 'PANEL.BACKGROUND.IMAGES_SECTION' | translate }}</h4>
<div
*ngFor="let effect of backgroundImages"
class="effect-button"
[id]="'effect-' + effect.id"
[class.active-effect-btn]="backgroundSelectedId === effect.id"
(click)="applyBackground(effect)"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h3 class="panel-title">{{ 'PANEL.CHAT.TITLE' | translate }}</h3>
<p *ngIf="data.isLocal">{{ 'PANEL.CHAT.YOU' | translate }}</p>
<p *ngIf="!data.isLocal">{{ data.participantName }}</p>
</div>
<div class="msg-content">
<div class="chat-message">
<p [innerHTML]="data.message | linkify"></p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
color: var(--ov-panel-text-color);
}

.msg-content {
.chat-message {
position: relative;
border-radius: var(--ov-panel-radius);
padding: 8px;
Expand All @@ -102,7 +102,7 @@
text-align: left;
}

.message.left .msg-detail .msg-content {
.message.left .msg-detail .chat-message {
float: left;
}

Expand All @@ -114,7 +114,7 @@
text-align: right;
}

.message.right .msg-detail .msg-content {
.message.right .msg-detail .chat-message {
float: right;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
</button>
</mat-select-trigger>
<input
id="name-input"
matInput
(change)="updateName()"
type="text"
Expand Down

0 comments on commit 3014d69

Please sign in to comment.