Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.7] Fix for hover issue on docs of discover/explorer data grid (#329) #358

Merged
merged 1 commit into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
745 changes: 373 additions & 372 deletions public/components/event_analytics/explorer/events_views/data_grid.scss

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion public/components/event_analytics/explorer/explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,9 @@ export const Explorer = ({
}}
>
<div
className={`dscAppContainer${uiSettingsService.get('theme:darkMode') && ' explorer-dark'}`}
className={`obsExplorer dscAppContainer${
uiSettingsService.get('theme:darkMode') && ' explorer-dark'
}`}
>
<Search
key="search-component"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

exports[`<para_input /> spec renders the markdown component 1`] = `
<div
class="sc-gKXOVf fPkmRS"
class="sc-gLDzan gebGCr"
>
<div
class="sc-bczRLJ hRTESd"
class="sc-beqWaB CSaoA"
/>
<div
style="width: 100%;"
Expand Down Expand Up @@ -52,10 +52,10 @@ exports[`<para_input /> spec renders the markdown component 1`] = `

exports[`<para_input /> spec renders the visualization component 1`] = `
<div
class="sc-gKXOVf fPkmRS"
class="sc-gLDzan gebGCr"
>
<div
class="sc-bczRLJ hRTESd"
class="sc-beqWaB CSaoA"
/>
<div
class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsFlexEnd euiFlexGroup--directionRow euiFlexGroup--responsive"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exports[`<ParaOutput /> spec renders other types of outputs 1`] = `
class="euiText euiText--medium"
>
<div
class="sc-crXcEl gqVnJo"
class="sc-csCMJt hFpeNP"
/>
</div>
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ exports[`<Paragraphs /> spec renders the component 1`] = `
class="euiFormRow__fieldWrapper"
>
<div
class="sc-gKXOVf fPkmRS"
class="sc-gLDzan gebGCr"
>
<div
class="sc-bczRLJ hRTESd"
class="sc-beqWaB CSaoA"
/>
<div
style="width: 100%;"
Expand Down
Loading