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

62 lines
868 B
SCSS
Raw Normal View History

.tint-box {
2016-11-30 08:25:25 -05:00
background: $stat-graph-common-bg;
position: relative;
margin-bottom: 10px;
}
.area {
2016-11-30 08:25:25 -05:00
fill: $stat-graph-area-fill;
fill-opacity: 0.5;
}
.axis {
font-size: 10px;
}
2016-06-15 13:01:58 -04:00
#contributors-master {
@include make-md-column(12);
svg {
width: 100%;
}
}
#contributors {
.contributors-list {
margin: 0 0 10px;
list-style: none;
padding: 0;
2016-06-15 13:01:58 -04:00
svg {
width: 100%;
}
2013-06-11 02:36:15 -04:00
}
.person {
2016-06-15 13:01:58 -04:00
@include make-md-column(6);
margin-top: 10px;
2016-12-01 00:27:58 -05:00
@media (max-width: $screen-xs-max) {
width: 100%;
}
2017-07-12 05:50:26 -04:00
.spark {
display: block;
background: $stat-graph-common-bg;
width: 100%;
}
2017-07-12 05:50:26 -04:00
.area-contributor {
fill: $stat-graph-orange-fill;
}
}
}
.selection rect {
fill-opacity: 0.1;
stroke-width: 1px;
stroke-opacity: 0.4;
shape-rendering: crispedges;
stroke-dasharray: 3 3;
}