Skip to content

Commit

Permalink
bivariate structural changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kripanshu committed Oct 30, 2017
1 parent 546be8e commit d2c56a8
Show file tree
Hide file tree
Showing 2 changed files with 203 additions and 72 deletions.
37 changes: 33 additions & 4 deletions app.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,11 +390,13 @@ div#scatterplot svg {
shape-rendering: crispEdges;

}

div#scatterplot .axis path,
div#scatterplot .axis line {
div#scatterplot .axis line{fill: none;
stroke: #BBDEFB;
shape-rendering: crispEdges;}
div#scatterplot .axis path
{
fill: none;
stroke: rgba(0, 0, 0, 0.1);
stroke: #BDBDBD;
shape-rendering: crispEdges;
}

Expand Down Expand Up @@ -526,6 +528,33 @@ div#resultsView_tabular #btnDiv {
fill: #fff;
}

#tooltipPlotA {
visibility: hidden;
width: 120px;
background-color: grey;
color: #fff;
text-align: center;
border-radius: 4px;
padding: 4px 0;
margin: 1px;
/* Position the tooltip */
position: relative;
z-index: 1;
}

#tooltipPlotB
{
visibility: hidden;
width: 120px;
background-color: grey;
color: #fff;
text-align: center;
border-radius: 4px;
padding: 4px 0;
margin: 1px;


/* Position the tooltip */
position: relative;
z-index: 1;
}
Loading

0 comments on commit d2c56a8

Please sign in to comment.