Skip to content

Commit

Permalink
Quick Fix for style and visualization (refs #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsayer2 committed May 22, 2017
1 parent ff9d576 commit 5b3451f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/data_import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,15 +207,15 @@ class DataImport implements MAppViews {

this.storeData();

// events.fire(AppConstants.EVENT_DATA_PARSED, this.parseResults.data);
events.fire(AppConstants.EVENT_DATA_PARSED, this.parseResults.data);
console.log('In edit mode');
} else {
d3.select('.dataLoadingView').classed('invisibleClass', true);
d3.select('.dataVizView').classed('invisibleClass', false);

this.storeData();

// events.fire(AppConstants.EVENT_DATA_PARSED, this.parseResults.data);
events.fire(AppConstants.EVENT_DATA_PARSED, this.parseResults.data);
console.log('Not in edit mode');
}
const evt = <MouseEvent>d3.event;
Expand Down
39 changes: 38 additions & 1 deletion src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,41 @@ node text {

.link:hover {
stroke-opacity: .5;
}
}

.sankey_details {
background-color: grey;
}

/**
Part of the global settings view.
*/
.globalSettings {
width: 16%;
height: 810px;
position: absolute;
top: 200px;
left: 10px;
border: 1px solid black;
}

#backBtn {
background: $valid-color2;
color: white;
}

.dialogBox {
margin-top: 20%;
z-index: 100001;
}


.global_settings {
width: 16%;
height: 810px;
position: absolute;
top: 200px;
left: 10px;
border: 1px solid black;
}

0 comments on commit 5b3451f

Please sign in to comment.