-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(octra): new line option for text converter
- Loading branch information
1 parent
0449311
commit e670ad9
Showing
98 changed files
with
4,137 additions
and
3,885 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 15 additions & 15 deletions
30
apps/octra/src/app/core/component/alert/alert.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
@for (toast of alertService.queue; track toast) { | ||
<ngb-toast | ||
[ngClass]="{ | ||
'bg-danger text-light': toast.type === 'danger', | ||
'bg-success text-light': toast.type === 'success', | ||
'bg-warning text-dark': toast.type === 'warning' | ||
}" | ||
(mouseenter)="toast.autohide = false" | ||
(mouseleave)="toast.autohide = true" | ||
(hide)="toast.autohide = true" | ||
[autohide]="toast.autohide" | ||
[delay]="toast.duration" | ||
(hidden)="alertService.closeAlert(toast.id)" | ||
> | ||
{{ toast.message }} | ||
</ngb-toast> | ||
<ngb-toast | ||
[ngClass]="{ | ||
'bg-danger text-light': toast.type === 'danger', | ||
'bg-success text-light': toast.type === 'success', | ||
'bg-warning text-dark': toast.type === 'warning' | ||
}" | ||
(mouseenter)="toast.autohide = false" | ||
(mouseleave)="toast.autohide = true" | ||
(hide)="toast.autohide = true" | ||
[autohide]="toast.autohide" | ||
[delay]="toast.duration" | ||
(hidden)="alertService.closeAlert(toast.id)" | ||
> | ||
{{ toast.message }} | ||
</ngb-toast> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
:host { | ||
position: absolute; | ||
margin-top:40px; | ||
margin-top: 40px; | ||
top: 0; | ||
right: 0; | ||
z-index: 10000; | ||
|
Oops, something went wrong.