-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
## Tasks - [x] Be sure that all buttons has tooltips and position should be bottom - [x] Change the Icon for the copy url - [x] unify color of borders, in preview, edit and divider - [x] fix double border - [x] Issue with info display showing on user locking the page ## Screenshots https://github.com/user-attachments/assets/db6a0c27-79b2-4e8f-a699-ad0fb38c5756
- Loading branch information
Showing
14 changed files
with
226 additions
and
163 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
12 changes: 7 additions & 5 deletions
12
...nents/dot-uve-toolbar/components/dot-ema-info-display/dot-ema-info-display.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,16 +1,18 @@ | ||
@if ($options()?.actionIcon) { | ||
@let options = $options(); | ||
|
||
@if (options?.actionIcon) { | ||
<p-button | ||
(onClick)="handleAction()" | ||
[icon]="$options()?.actionIcon" | ||
[icon]="options?.actionIcon" | ||
styleClass="p-button-text p-button-sm p-button-rounded" | ||
data-testId="info-action"></p-button> | ||
} | ||
|
||
<div class="info-container"> | ||
@if (!!$options()?.icon) { | ||
<i [class]="$options()?.icon + ' info-container__icon'" data-testId="info-icon"></i> | ||
@if (!!options?.icon) { | ||
<i [class]="options?.icon + ' info-container__icon'" data-testId="info-icon"></i> | ||
} | ||
<span | ||
[innerHTML]="$options()?.info.message | dm: $options()?.info.args" | ||
[innerHTML]="options?.info.message | dm: options?.info.args" | ||
data-testId="info-text"></span> | ||
</div> |
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
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
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
Oops, something went wrong.