Skip to content

Commit

Permalink
[VisBuilder] [BUG] fix empty workspace animation does not work in fir…
Browse files Browse the repository at this point in the history
…efox (#2853)

* fix: fix VisBuilder empty animation does not work in firefox

Signed-off-by: raintygao <tygao@amazon.com>

* doc: add changelog for pull request

Signed-off-by: raintygao <tygao@amazon.com>

Signed-off-by: raintygao <tygao@amazon.com>
  • Loading branch information
raintygao committed Nov 11, 2022
1 parent d53fbf8 commit 28c3df3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -65,6 +65,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- [Multi DataSource] Update default audit log path ([#2793](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2793))
- [Table Visualization] Fix first column sort issue ([#2828](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2828))
- Temporary workaround for task-kill exceptions on Windows when it is passed a pid for a process that is already dead ([#2842](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2842))
- [Vis Builder] Fix empty workspace animation does not work in firefox ([#2853](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2853))

### 🚞 Infrastructure

Expand Down
Expand Up @@ -30,6 +30,7 @@ $keyframe-multiplier: 1 / $animation-multiplier;
animation: vbDragAnimation #{$total-duartion}s ease-in-out infinite forwards;
position: absolute;
top: 34.5%;
width: 50% !important;
}
}

Expand Down
Expand Up @@ -93,14 +93,14 @@ export const Workspace: FC = ({ children }) => {
body={
<>
<p>Drag a field to the configuration panel to generate a visualization.</p>
<span className="vbWorkspace__container">
<div className="vbWorkspace__container">
<EuiIcon className="vbWorkspace__fieldSvg" type={fields_bg} size="original" />
<EuiIcon
className="vbWorkspace__handFieldSvg"
type={hand_field}
size="original"
/>
</span>
</div>
</>
}
/>
Expand Down

0 comments on commit 28c3df3

Please sign in to comment.