debian-mirror-gitlab/app/assets/stylesheets/pages/stat_graph.scss

69 lines
988 B
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.tint-box {
2017-08-17 22:00:37 +05:30
background: $stat-graph-common-bg;
2014-09-02 18:07:02 +05:30
position: relative;
margin-bottom: 10px;
}
.area {
2018-11-20 20:47:30 +05:30
fill: $green-500;
2014-09-02 18:07:02 +05:30
fill-opacity: 0.5;
}
.axis {
font-size: 10px;
}
2016-06-22 15:30:34 +05:30
#contributors-master {
2018-11-08 19:23:39 +05:30
@include media-breakpoint-up(md) {
@include make-col-ready();
@include make-col(12);
}
2016-06-22 15:30:34 +05:30
svg {
width: 100%;
}
}
2014-09-02 18:07:02 +05:30
#contributors {
.contributors-list {
2016-06-02 11:05:42 +05:30
margin: 0 0 10px;
2014-09-02 18:07:02 +05:30
list-style: none;
padding: 0;
2016-06-22 15:30:34 +05:30
svg {
width: 100%;
}
2014-09-02 18:07:02 +05:30
}
.person {
2018-11-08 19:23:39 +05:30
@include media-breakpoint-up(md) {
@include make-col-ready();
@include make-col(6);
}
2014-09-02 18:07:02 +05:30
margin-top: 10px;
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2016-08-24 12:49:21 +05:30
width: 100%;
}
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
.spark {
display: block;
background: $stat-graph-common-bg;
width: 100%;
}
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
.area-contributor {
2018-11-20 20:47:30 +05:30
fill: $orange-500;
2018-03-17 18:26:18 +05:30
}
2014-09-02 18:07:02 +05:30
}
}
.selection rect {
fill-opacity: 0.1;
stroke-width: 1px;
stroke-opacity: 0.4;
shape-rendering: crispedges;
stroke-dasharray: 3 3;
}