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.
30 lines
949 B
30 lines
949 B
<ng-container *sqxModal="tooltipModal">
|
|
<div class="onboarding-rect"
|
|
[sqxAnchoredTo]="for"
|
|
[offsetX]="4"
|
|
[offsetY]="4"
|
|
[adjustWidth]="true"
|
|
[adjustHeight]="true"
|
|
anchorX="left-to-left"
|
|
anchorY="top-to-top"></div>
|
|
|
|
<div class="onboarding-help"
|
|
[sqxAnchoredTo]="for"
|
|
[offsetX]="4"
|
|
[offsetY]="4"
|
|
[position]="position" @fade>
|
|
<small class="onboarding-text">
|
|
<ng-content></ng-content>
|
|
</small>
|
|
|
|
<div class="onboarding-buttons clearfix">
|
|
<button (click)="hideAll()" class="btn btn-text-primary btn-sm float-start">
|
|
{{ 'tour.tooltipStop' | sqxTranslate }}
|
|
</button>
|
|
|
|
<button (click)="hideThis()" class="btn btn-text-success btn-sm float-end">
|
|
{{ 'tour.tooltipConfirm' | sqxTranslate }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</ng-container>
|