BigW Consortium Gitlab

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

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

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

20 21 22 23
.graphs {
  .graph-author-commits-count {
  }

24 25 26 27 28
  .graph-author-email {
    float: right;
    color: #777;
  }

29 30 31 32 33 34 35 36 37
  .graph-additions {
    color: #4a2;
  }

  .graph-deletions {
    color: #d12f19;
  }
}