-
Notifications
You must be signed in to change notification settings - Fork 269
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
* [ACS-8634] Limit drag area for dragging datatable rows * ACS-8634 Fixed styles for context menu * [ACS-8634] Keep row and cell appearance while dragging --------- Co-authored-by: Aleksander Sklorz <Aleksander.Sklorz@hyland.com>
- Loading branch information
1 parent
c93823a
commit f4cd4dc
Showing
4 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
lib/core/src/lib/context-menu/context-menu-list.component.scss
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@use '@angular/material' as mat; | ||
|
||
@keyframes delayed-elevation { | ||
0% { | ||
box-shadow: none; | ||
} | ||
|
||
100% { | ||
@include mat.elevation(8); | ||
} | ||
} | ||
|
||
adf-context-menu { | ||
animation: delayed-elevation 0.5s ease-in-out 0.1s forwards; | ||
} |
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