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

63 lines
934 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 {
fill: $green-500;
fill-opacity: 0.5;
}
.axis {
font-size: 10px;
}
2016-06-15 13:01:58 -04:00
#contributors-master {
2018-04-09 12:28:30 -04:00
@include media-breakpoint-up(md) {
2018-05-09 13:51:01 -04:00
@include make-col-ready();
2018-04-09 12:28:30 -04:00
@include make-col(12);
}
2016-06-15 13:01:58 -04:00
}
#contributors {
flex: 1;
.contributors-list {
margin: 0 0 10px;
list-style: none;
padding: 0;
2013-06-11 02:36:15 -04:00
}
.person {
2018-04-09 12:28:30 -04:00
@include media-breakpoint-up(md) {
2018-05-09 13:51:01 -04:00
@include make-col-ready();
2018-04-09 12:28:30 -04:00
@include make-col(6);
}
margin-top: 10px;
2018-04-09 11:26:28 -04:00
@include media-breakpoint-down(xs) {
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: $orange-500;
2017-07-12 05:50:26 -04:00
}
}
}
.selection rect {
fill-opacity: 0.1;
stroke-width: 1px;
stroke-opacity: 0.4;
shape-rendering: crispedges;
stroke-dasharray: 3 3;
}