BigW Consortium Gitlab

graph.scss 554 Bytes
Newer Older
1
.project-network {
2
  border: 1px solid $border-color;
randx committed
3

Dmitriy Zaporozhets committed
4
  .controls {
5
    color: $project-network-controls-color;
6
    font-size: 14px;
Dmitriy Zaporozhets committed
7
    padding: 5px;
8
    border-bottom: 1px solid $border-color;
9
    background: $gray-darker;
randx committed
10 11
  }

12
  .network-graph {
13
    background: $white-light;
14
    height: 500px;
15 16
    overflow-y: scroll;
    overflow-x: hidden;
randx committed
17 18 19
  }
}

20
.graphs {
21 22
  .graph-author-email {
    float: right;
23
    color: $graph-author-email-color;
24 25
  }

26
  .graph-additions {
27
    color: $gl-text-green;
28 29 30
  }

  .graph-deletions {
31
    color: $gl-text-red;
32 33
  }
}