Skip to content

Commit

Permalink
Implemented commented changes
Browse files Browse the repository at this point in the history
Signed-off-by: Amit-Nawale <[email protected]>
  • Loading branch information
Amit-Nawale committed Oct 28, 2022
1 parent cb27324 commit 7dedd61
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,3 @@
.mainContentTabs .euiResizableContainer {
height: calc(100vh - 298px);
}

.data_config_resizable_btn {
margin-left: 2px !important;
}

.chart_style_resizable_btn {
margin-right: 2px !important;
}

.ws__configPanel--right {
border-left: 1px solid #d3dae6;
}
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,18 @@ $vis-editor-sidebar-min-width: 350px;
overflow-y: unset; // unset default setting
}

#vis__mainContent .data_config_resizable_btn {
margin-left: 3px;
}

#vis__mainContent .chart_style_resizable_btn {
margin-right: 3px;
}

#vis__mainContent .ws__configPanel--right {
border-left: 1px solid #d3dae6;
}

.panelItem_button {
display: grid;
grid-template-columns: 1fr auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@ export interface TitleProps {

export const DataConfigItemClickPanel = ({ title, isSecondary, closeMenu }: TitleProps) => {
const icon = isSecondary && (
<EuiIcon
style={{ cursor: 'pointer' }}
type="arrowLeft"
onClick={closeMenu}
data-test-subj="panelCloseBtn"
/>
<EuiIcon style={{ cursor: 'pointer' }} type="arrowLeft" onClick={closeMenu} data-test-subj="panelCloseBtn"/>
);
return (
<>
Expand Down

0 comments on commit 7dedd61

Please sign in to comment.