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

awards.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 895bafebcef6ade40f9ed52dd00dfea53c77eea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.awards {
  @include clearfix;
  line-height: 34px;
  margin-top: $gl-padding;

  .award {
    @include border-radius(5px);

    border: 1px solid;
    padding: 0px 10px;
    float: left;
    margin-right: 5px;
    border-color: $border-color;
    cursor: pointer;

    &.active {
      border-color: $border-gray-light;
      background-color: $gray-light;

      .counter {
        font-weight: bold;
      }
    }

    .icon {
      float: left;
      margin-right: 10px;
    }

    .counter {
      float: left;
    }
  }

  .awards-controls {
    margin-left: 10px;
    float: left;

    .add-award {
      font-size: 24px;
      color: $gl-gray;
      position: relative;
      top: 2px;

      &:hover,
      &:link {
        text-decoration: none;
      }
    }

    .awards-menu {
      padding: $gl-padding;
      min-width: 214px;

      > li {
        cursor: pointer;
        margin: 5px;
      }
    }
  }

  .awards-menu{
    li {
      float: left;
      margin: 3px;
    }
  }
}