diff --git a/iobio.viz.js b/iobio.viz.js index 43968c1..84d69b8 100644 --- a/iobio.viz.js +++ b/iobio.viz.js @@ -2263,7 +2263,6 @@ var pieChooser = function() { if (singleSelection) { clickedSlice = theSlice; - //dispatch.clickslice(d.data, i); } else { clickedSlices.push(theSlice); diff --git a/iobio.viz.min.css b/iobio.viz.min.css index adb0325..0fd490b 100644 --- a/iobio.viz.min.css +++ b/iobio.viz.min.css @@ -1,4 +1,5 @@ .iobio-axis line,.iobio-axis path{fill:none;stroke:#000;shape-rendering:crispEdges}.iobio-tooltip{position:fixed;top:0;text-align:center;z-index:20;color:#fff;padding:4px 6px;font:11px arial;background:#505050;border:0;border-radius:4px;pointer-events:none}.iobio-brush .extent{stroke:#000;fill-opacity:.125;shape-rendering:crispEdges} .iobio-gene .cds,.iobio-gene .utr{fill:#2d8fc1;stroke:#2d8fc1}.iobio-gene .reference{stroke:#969696}.iobio-gene .name{font-size:10px;fill:#787878}.iobio-gene .arrow{stroke:#969696;fill:none}.iobio-gene .iobio-axis line,.iobio-gene .iobio-axis path{fill:none;stroke:#d2d2d2;stroke-width:2px;shape-rendering:crispEdges}.iobio-gene .iobio-axis line{stroke-width:4px}.iobio-gene .iobio-axis text{font-size:11px;fill:#828282} .iobio-pie .iobio-center-text{text-align:center}.iobio-pie .iobio-center-text .iobio-percent{fill:#646464;color:#646464;font-size:23px}.iobio-pie .iobio-center-text .iobio-count{font-size:14px;letter-spacing:3px;font-weight:400;color:#969696} +.iobio-pie text#all-text{fill:#000;font-size:11px}.iobio-pie circle#all-circle:hover{fill:#F7F3BA}.iobio-pie circle#all-circle.selected{fill:#F7F3BA;stroke-width:1.5px}.iobio-pie .arc text{font-size:9px;fill:#fff} path.link{fill:none;stroke:#ccc;stroke-width:1.5px}.above-variant{stroke:red;fill:none}.below-variant{stroke:#00f;fill:none}.reference{fill:gray} \ No newline at end of file diff --git a/src/css/pie.css b/src/css/pie.css index 2c77e41..00710c7 100644 --- a/src/css/pie.css +++ b/src/css/pie.css @@ -10,4 +10,5 @@ letter-spacing: 3px; font-weight: 400; color: rgb(150,150,150); -} \ No newline at end of file +} + diff --git a/src/css/pieChooser.css b/src/css/pieChooser.css new file mode 100644 index 0000000..0f6b865 --- /dev/null +++ b/src/css/pieChooser.css @@ -0,0 +1,17 @@ +.iobio-pie text#all-text +{ + fill: black; + font-size: 11px; +} +.iobio-pie circle#all-circle:hover +{ + fill: #F7F3BA; +} +.iobio-pie circle#all-circle.selected { + fill: #F7F3BA; stroke-width: 1.5px; +} + +.iobio-pie .arc text { + font-size: 9px; + fill: white; +} diff --git a/src/viz/pieChooser.js b/src/viz/pieChooser.js index e7938ea..051dc6d 100644 --- a/src/viz/pieChooser.js +++ b/src/viz/pieChooser.js @@ -286,7 +286,6 @@ var pieChooser = function() { if (singleSelection) { clickedSlice = theSlice; - //dispatch.clickslice(d.data, i); } else { clickedSlices.push(theSlice);