summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/groups.scss
blob: 3d79f4400e24a0a73eb853610b71d50fb67d698e (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
.member-search-form {
  float: left;

  input[type='search'] {
    width: 225px;
    vertical-align: bottom;

    @media (max-width: $screen-xs-max) {
      width: 100px;
      vertical-align: bottom;
    }
  }
}

.milestone-row {
  @include str-truncated(90%);
}

.dashboard .side .panel .panel-heading .input-group {
  .form-control {
    height: 42px;
  }
}

.group-row {
  &.no-description {
    .group-name {
      line-height: 44px;
    }
  }

  .stats {
    float: right;
    line-height: 44px;
    color: $gl-gray;

    span {
      margin-right: 15px;
    }
  }
}

.groups-cover-block {
  .container-fluid {
    position: relative;
  }

  .group-right-buttons {
    position: absolute;
    right: 16px;
    .btn {
      @include btn-gray;
      padding: 3px 10px;
      background-color: $background-color;
    }
  }
}