gitlab-org--gitlab-foss/app/assets/stylesheets/pages/graph.scss

34 lines
554 B
SCSS
Raw Normal View History

.project-network {
border: 1px solid $border-color;
2012-06-13 13:02:30 -04:00
.controls {
2016-11-30 08:25:25 -05:00
color: $project-network-controls-color;
font-size: 14px;
padding: 5px;
border-bottom: 1px solid $border-color;
2016-11-30 08:25:25 -05:00
background: $gray-darker;
2012-06-13 13:02:30 -04:00
}
.network-graph {
2016-11-30 08:25:25 -05:00
background: $white-light;
2013-03-19 06:27:15 -04:00
height: 500px;
overflow-y: scroll;
overflow-x: hidden;
2012-06-13 13:02:30 -04:00
}
}
.graphs {
2013-08-13 09:26:48 -04:00
.graph-author-email {
float: right;
2016-11-30 08:25:25 -05:00
color: $graph-author-email-color;
2013-08-13 09:26:48 -04:00
}
.graph-additions {
2016-11-30 08:25:25 -05:00
color: $gl-text-green;
}
.graph-deletions {
2016-11-30 08:25:25 -05:00
color: $gl-text-red;
}
}