mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
687 B
18 lines
687 B
<ng-container *sqxModal="tooltipModal">
|
|
<div class="onboarding-rect" [sqxAnchoredTo]="for" [offset]="4" [position]="'full'"></div>
|
|
<div class="onboarding-help" [sqxAnchoredTo]="for" [offset]="4" [position]="position" @fade>
|
|
<div class="onboarding-text">
|
|
<ng-content></ng-content>
|
|
</div>
|
|
|
|
<div class="onboarding-buttons clearfix">
|
|
<button (click)="hideAll()" class="btn btn-text-primary btn-sm float-left">
|
|
Stop Tour
|
|
</button>
|
|
|
|
<button (click)="hideThis()" class="btn btn-text-success btn-sm float-right">
|
|
Got It
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</ng-container>
|