Showing
1 changed file
with
3 additions
and
3 deletions
... | ... | @@ -15,9 +15,8 @@ |
15 | 15 | limitations under the License. |
16 | 16 | |
17 | 17 | --> |
18 | -<fieldset class="tb-help-popup-button-container"> | |
18 | +<fieldset class="tb-help-popup-button-container" *ngIf="!textMode"> | |
19 | 19 | <div #toggleHelpButton |
20 | - [fxShow]="!textMode" | |
21 | 20 | matTooltip="{{'help.show-help' | translate}}" |
22 | 21 | matTooltipPosition="above" |
23 | 22 | style="border-radius: 50%" |
... | ... | @@ -30,8 +29,9 @@ |
30 | 29 | <mat-spinner *ngIf="popoverVisible && !popoverReady" class="tb-help-popup-button-loading" mode="indeterminate" diameter="20" strokeWidth="2"></mat-spinner> |
31 | 30 | </button> |
32 | 31 | </div> |
32 | +</fieldset> | |
33 | +<fieldset class="tb-help-popup-button-container" *ngIf="textMode"> | |
33 | 34 | <div #toggleHelpTextButton |
34 | - [fxShow]="textMode" | |
35 | 35 | (click)="toggleHelp()"> |
36 | 36 | <button mat-button |
37 | 37 | color="primary" | ... | ... |