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

65 lines
975 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 {
2017-08-17 22:00:37 +05:30
fill: $stat-graph-area-fill;
2014-09-02 18:07:02 +05:30
fill-opacity: 0.5;
}
.axis {
2017-08-17 22:00:37 +05:30
fill: $stat-graph-axis-fill;
2014-09-02 18:07:02 +05:30
font-size: 10px;
}
2016-06-22 15:30:34 +05:30
#contributors-master {
@include make-md-column(12);
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 {
2016-06-22 15:30:34 +05:30
@include make-md-column(6);
2014-09-02 18:07:02 +05:30
margin-top: 10px;
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
@media (max-width: $screen-xs-max) {
2016-08-24 12:49:21 +05:30
width: 100%;
}
2014-09-02 18:07:02 +05:30
}
.person .spark {
display: block;
2017-08-17 22:00:37 +05:30
background: $stat-graph-common-bg;
2016-08-24 12:49:21 +05:30
width: 100%;
2014-09-02 18:07:02 +05:30
}
.person .area-contributor {
2017-08-17 22:00:37 +05:30
fill: $stat-graph-orange-fill;
2014-09-02 18:07:02 +05:30
}
}
.selection rect {
2017-08-17 22:00:37 +05:30
fill: $stat-graph-selection-fill;
2014-09-02 18:07:02 +05:30
fill-opacity: 0.1;
2017-08-17 22:00:37 +05:30
stroke: $stat-graph-selection-stroke;
2014-09-02 18:07:02 +05:30
stroke-width: 1px;
stroke-opacity: 0.4;
shape-rendering: crispedges;
stroke-dasharray: 3 3;
}