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

Nogo bugs 4 #617

Open
wants to merge 2 commits into
base: new-design2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 14 additions & 13 deletions src/components/B4ACodeTree/B4ACodeTree.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,20 +363,21 @@ export default class B4ACodeTree extends React.Component {
</ReactFileReader>
</div>
</div>
<Resizable className={styles['files-tree']}
defaultSize={{ height: '100%', overflow: 'srcoll', width: '100%' }}
enable={{
top:false,
right:false,
bottom:true,
left:false,
topRight:false,
bottomRight:false,
bottomLeft:false,
topLeft:false
}}>
<div className={styles['files-tree']}
// defaultSize={{ height: '100%', overflow: 'srcoll', width: '100%' }}
// enable={{
// top:false,
// right:false,
// bottom:true,
// left:false,
// topRight:false,
// bottomRight:false,
// bottomLeft:false,
// topLeft:false
// }}
>
<div id={'tree'} onClick={this.watchSelectedNode.bind(this)}></div>
</Resizable>
</div>
</div>
</div>
<div className={styles.filePreview}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/B4ACodeTree/B4ACodeTree.scss
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
}

.files-tree {
height: calc(100% - 57px)!important;
height: calc(100% - 57px - 16px)!important;
overflow: overlay;
}

Expand Down
9 changes: 7 additions & 2 deletions src/components/DataBrowserHeaderBar/DataBrowserHeaderBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,16 @@
.handle {
position: relative;
display: inline-block;
width: 1px;
background-color: rgba(249, 249, 249, 0.06);
width: 5px;
// background-color: rgba(249, 249, 249, 0.06);
height: 46px;
// margin: 0 1rem;
cursor: ew-resize;
border-right: 1px solid rgba(249, 249, 249, 0.06);
transition: 0.5s all ease-in;
// &:hover {
// background-color: rgba(249, 249, 249, 0.06);
// }
}

.pickerPointer {
Expand Down
7 changes: 4 additions & 3 deletions src/dashboard/Data/Browser/Browser.scss
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,10 @@ body:global(.sidebarCollapsed) {
& .cellSeparator {
// margin: 0 1rem;
height: 36px;
width: 1px;
background: rgba(249, 249, 249, 0.06);
width: 5px;
// background: rgba(249, 249, 249, 0.06);
display: inline-block;
border-right: 1px solid rgba(249, 249, 249, 0.06);
}
}

Expand Down Expand Up @@ -457,7 +458,7 @@ body:global(.sidebarCollapsed) {
}

& .cellSeparator {
background: #CCCCCC29;
// background: #CCCCCC29;
}
}
.deleteBtn {
Expand Down