-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fix css scrollbar header intent and added tooltip in action menu
- Loading branch information
1 parent
76be40c
commit 3e6f35b
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
19 changes: 17 additions & 2 deletions
19
...actions/shared/cds-action-controls/cds-action-controls/cds-action-controls.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,10 +1,25 @@ | ||
<div class="action-controls"> | ||
<div class="action-control-btns-wpr"> | ||
<div class="action-control-btn icon" (click)="onClickAction('delete', $event)"> | ||
|
||
<div class="action-control-btn icon" | ||
matTooltipClass="cds-mat-tooltip" | ||
matTooltip="delete action" | ||
#tooltip="matTooltip" | ||
matTooltipPosition='above' | ||
matTooltipHideDelay="100" | ||
(click)="onClickAction('delete', $event)"> | ||
<img src="assets/images/icons/bin.svg"> | ||
</div> | ||
<div class="action-control-btn icon" (click)="onClickAction('edit', $event)"> | ||
<div class="action-control-btn icon" | ||
matTooltipClass="cds-mat-tooltip" | ||
matTooltip="edit action" | ||
#tooltip="matTooltip" | ||
matTooltipPosition='above' | ||
matTooltipHideDelay="100" | ||
(click)="onClickAction('edit', $event)"> | ||
<img src="assets/images/icons/edit.svg"> | ||
</div> | ||
|
||
|
||
</div> | ||
</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