Skip to content

Commit 5d79b52

Browse files
author
Mercea Emil
committed
Style fixe
1 parent 376b4b2 commit 5d79b52

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

common/components/activity/activity-items-table.styles.ts

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ export const ActivityItemsTableStyles: CSSResult = css`
9191
}
9292
label[required] {
9393
padding-inline-end: 20px;
94+
background: url('./assets/images/required.svg') no-repeat 99% 20%/5px;
9495
}
9596
etools-input,
9697
etools-textarea {

common/components/comments-panels/comments-list/comments-group.ts

+6
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ export class CommentsGroup extends LitElement {
9494
.description {
9595
margin-top: 8px;
9696
}
97+
.space-between {
98+
justify-content: space-between;
99+
}
100+
.flex-auto {
101+
flex: auto;
102+
}
97103
`
98104
];
99105
}

common/components/comments-panels/messages-panel/message-item.ts

+3
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ export class MessageItem extends LitElement {
144144
width: 83%;
145145
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
146146
}
147+
.flex-c {
148+
flex: 1;
149+
}
147150
:host([my-comment]) {
148151
align-self: flex-end;
149152
}

common/components/comments/comments-dialog.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class CommentsDialog extends EditComments {
5555
overflow-y: auto;
5656
}
5757
</style>
58-
<etools-dialog size="md" keep-dialog-open dialog-title="${this.dialogTitle}" @close="${this.onClose}" no-padding>
58+
<etools-dialog size="md" keep-dialog-open dialog-title="${this.dialogTitle}" @close="${this.onClose}">
5959
<div class="container-dialog">
6060
${this.comments.map(
6161
(comment: any, index: number) =>

0 commit comments

Comments
 (0)