Blame view

bower_components/charts-d3/dist/charts-d3.css 1.4 KB
752c1f5a   mwasiluk   updated d3-scatte...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  svg.mw-d3-scatterplot-matrix {
    background-color: white;
    font-size: 11px;
    height: 100%; }
    svg.mw-d3-scatterplot-matrix .mw-axis {
      shape-rendering: crispEdges; }
      svg.mw-d3-scatterplot-matrix .mw-axis path {
        display: none; }
      svg.mw-d3-scatterplot-matrix .mw-axis line {
        stroke: #ddd; }
      svg.mw-d3-scatterplot-matrix .mw-axis.mw-no-guides line {
        display: none; }
    svg.mw-d3-scatterplot-matrix .mw-frame {
      shape-rendering: crispEdges;
      fill: none;
      stroke: #aaa; }
    svg.mw-d3-scatterplot-matrix .mw-cell text {
      font-weight: bold;
      text-transform: capitalize; }
    svg.mw-d3-scatterplot-matrix circle {
      fill-opacity: .7; }
      svg.mw-d3-scatterplot-matrix circle.hidden {
        fill: #ccc !important; }
    svg.mw-d3-scatterplot-matrix .extent {
      fill: #000;
      fill-opacity: .125;
      stroke: #fff; }
  
  .mw-tooltip {
    position: absolute;
    pointer-events: none;
    font-size: 11px;
    background: #fdfdfd;
    padding: 3px 5px;
    border-radius: 8px;
e09a3d19   mwasiluk   charts-d3 update,...
36
37
    box-shadow: 1px 3px 3px #b7b7b7;
    text-align: center; }
40c0e489   mwasiluk   charts-d3, d3 sc...
38
39
40
41
42
43
44
45
46
47
48
49
50
  
  svg.mw-d3-scatterplot {
    background-color: white;
    font-size: 11px;
    height: 100%; }
    svg.mw-d3-scatterplot .mw-axis path {
      fill: none;
      stroke: #000;
      shape-rendering: crispEdges; }
    svg.mw-d3-scatterplot .mw-axis line {
      shape-rendering: crispEdges;
      stroke: #eaeaea; }
    svg.mw-d3-scatterplot .mw-axis.mw-no-guides line {
e09a3d19   mwasiluk   charts-d3 update,...
51
      stroke: #a1a1a1; }