-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Maps] Design updates for draw shape mode and timeslider (#103493)
* Timeslider icons and styles * Exit feature editing. Animations for toolbar and timeslider * Removing unnecessary line * Adding padding to tooltip field popover * Adding pulse animation on open timeslider * Adding isDraggable to timeslider * More timeslider styles * Better positioning of the exit edit mode button * Enable edit mode when new vector layer added * Review feedback. Update action name. Remove unneeded component state * Minor updates. One more action for cancel. Type updates. Snapshot update * fixing tests and eslint error * Added new exit mode design. Renamed animations * Features instead of feature to be consistent with popover * fix type error Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Aaron Caldwell <aaron.caldwell@elastic.co>
- Loading branch information
1 parent
5ab8d59
commit 4b67373
Showing
21 changed files
with
175 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
@keyframes mapAnimationHeadShake { | ||
0% { | ||
transform: translateX(0); | ||
} | ||
|
||
6.5% { | ||
transform: translateX(-6px) rotateY(-9deg); | ||
} | ||
|
||
18.5% { | ||
transform: translateX(5px) rotateY(7deg); | ||
} | ||
|
||
31.5% { | ||
transform: translateX(-3px) rotateY(-5deg); | ||
} | ||
|
||
43.5% { | ||
transform: translateX(2px) rotateY(3deg); | ||
} | ||
|
||
50% { | ||
transform: translateX(0); | ||
} | ||
} | ||
|
||
@keyframes mapAnimationPulse { | ||
from { | ||
transform: scale3d(1, 1, 1); | ||
} | ||
|
||
50% { | ||
transform: scale3d(1.005, 1.005, 1.005); | ||
} | ||
|
||
to { | ||
transform: scale3d(1, 1, 1); | ||
} | ||
} |
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
8 changes: 6 additions & 2 deletions
8
.../public/components/tooltip_selector/__snapshots__/add_tooltip_field_popover.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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.