Welcome to mirror list, hosted at ThFree Co, Russian Federation.

graph.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7f9a9bb7700be56f292f89a8e2d1d85334035af (plain)
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
.project-network {
  border: 1px solid $border-color;

  .controls {
    color: #888;
    font-size: 14px;
    padding: 5px;
    border-bottom: 1px solid $border-color;
    background: #eee;
  }

  .network-graph {
    background: #fff;
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

.graphs {
  .graph-author-email {
    float: right;
    color: #777;
  }

  .graph-additions {
    color: #4a2;
  }

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