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: 84da9180f936d529e8a6557b61a4ee5bb059ff29 (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
.project-network {
  border: 1px solid $border-color;

  .controls {
    color: $project-network-controls-color;
    font-size: 14px;
    padding: 5px;
    border-bottom: 1px solid $border-color;
    background: $gray-darker;
  }

  .network-graph {
    background: $white-light;
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

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

  .graph-additions {
    color: $gl-text-green;
  }

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