Skip to content

Commit

Permalink
updated tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
pflopez committed Oct 22, 2024
1 parent edcb03d commit dedb0b8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 28 deletions.
40 changes: 12 additions & 28 deletions src/interface/src/app/shared/nav-bar/nav-bar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@
Planning Area.
</p>

<p>
From this page you can create new scenarios for your planning area
by selecting either the “Upload Scenario” or “+ New Scenario”
buttons.
</p>

<p>
For each scenario that has been started or completed, you will see
the number of project areas and the status of each scenario.
Expand Down Expand Up @@ -82,21 +76,24 @@
</div>
</mat-menu>
</button>
<button mat-button class="action-button" (click)="print()" data-id="print">
<mat-icon class="material-symbols-outlined nav-icon" color="primary">
print
</mat-icon>

<button
sg-button
variant="text"
icon="print"
[outlined]="true"
(click)="print()"
data-id="print">
Print
</button>

<button
mat-button
class="action-button"
sg-button
variant="text"
icon="share"
(click)="share()"
data-id="share"
*ngIf="area === 'EXPLORE'">
<mat-icon class="material-symbols-outlined nav-icon" color="primary">
share
</mat-icon>
Share
</button>

Expand All @@ -107,22 +104,9 @@
(click)="sharePlan()"
data-id="share"
*ngIf="area === 'SCENARIOS' && (canSharePlan$ | async)">
<mat-icon class="material-symbols-outlined nav-icon" color="primary">
share
</mat-icon>
Share
</button>

<button
sg-button
variant="text"
icon="print"
[outlined]="true"
(click)="print()"
data-id="print">
Print
</button>

<ng-content></ng-content>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ section {
top: 0;
right: 0;
cursor: pointer;
z-index: 10000;
}

0 comments on commit dedb0b8

Please sign in to comment.