Skip to content

Commit

Permalink
Merge branch 'master' into 7983-courses-long-collections-break-format…
Browse files Browse the repository at this point in the history
…ting
  • Loading branch information
dogi authored Dec 23, 2024
2 parents 530ae46 + 97fc1bb commit d2f031a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/chat/chat-sidebar/chat-sidebar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</ul>
</ng-container>
<ng-template #noChats>
<div i18n>No previous conversations.</div>
<div class="no-chats-message" i18n>No previous conversations.</div>
</ng-template>
</mat-drawer>

Expand Down
4 changes: 4 additions & 0 deletions src/app/chat/chat-sidebar/chat-sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ li:hover {
margin: 0;
}

.no-chats-message {
margin-left: 4px;
}

@media only screen and (max-width: $screen-md) {
.expand-button {
top: 10px;
Expand Down
4 changes: 2 additions & 2 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ <h1><ng-container>Planet</ng-container> {{planetName}}</h1>
</ng-container>
<span *ngIf="layout === 'classic' && !forceModern">
<button mat-icon-button routerLink="/chat" i18n-title title="Chat"><mat-icon>chat_bubble_outline</mat-icon></button>
<button mat-icon-button planetFeedback i18n-title title="Feedback"><mat-icon>feedback_outline</mat-icon></button>
<button mat-icon-button routerLink="/feedback" i18n-title title="Messages"><mat-icon>mail_outline</mat-icon></button>
<button mat-icon-button planetFeedback i18n-title title="Submit Feedback"><mat-icon>feedback_outline</mat-icon></button>
<button mat-icon-button routerLink="/feedback" i18n-title title="Review Feedback"><mat-icon>mail_outline</mat-icon></button>
<ng-container *planetAuthorizedRoles>
<button mat-icon-button planetSync i18n-title title="Sync" *ngIf="onlineStatus === 'accepted'"><mat-icon svgIcon="feedback"></mat-icon></button>
</ng-container>
Expand Down
8 changes: 8 additions & 0 deletions src/app/teams/teams-view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
margin: 0;
}

.mat-subheading-2 b {
display: inline-block;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.toolbar-button{
flex-shrink: 0;
}
Expand Down

0 comments on commit d2f031a

Please sign in to comment.