Welcome to mirror list, hosted at ThFree Co, Russian Federation.

calendar.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fe114fe337d127baed1044a63e4cc5659716fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.user-contrib-cell {
  &:hover {
    cursor: pointer;
    stroke: $black;
  }

  &:focus {
    outline: none;
    stroke: $white;
    filter: drop-shadow(1px 0 0.5px $blue-400) drop-shadow(0 1px 0.5px $blue-400) drop-shadow(-1px 0 0.5px $blue-400) drop-shadow(0 -1px 0.5px $blue-400);
  }

  // `app/assets/javascripts/pages/users/activity_calendar.js` sets this attribute
  @for $i from 1 through length($calendar-activity-colors) {
    $color: nth($calendar-activity-colors, $i);
    $level: $i - 1;

    &[data-level='#{$level}'] {
      fill: $color;
    }
  }
}