groups.scss 1.3 KB
Newer Older
1 2 3
.milestone-row {
  @include str-truncated(90%);
}
A
Andrey 已提交
4 5

.dashboard .side .panel .panel-heading .input-group {
6

A
Andrey 已提交
7 8 9
  .form-control {
    height: 42px;
  }
10
}
11 12

.group-row {
13

14 15
  .stats {
    float: right;
16
    line-height: $list-text-height;
17 18 19 20 21 22
    color: $gl-gray;

    span {
      margin-right: 15px;
    }
  }
23 24 25
}

.ldap-group-links {
26

27 28 29
  .form-actions {
    margin-bottom: $gl-padding;
  }
30
}
R
Rémy Coutable 已提交
31 32

.groups-cover-block {
33

R
Rémy Coutable 已提交
34 35 36 37
  .container-fluid {
    position: relative;
  }

38 39 40
  .group-right-buttons {
    position: absolute;
    right: 16px;
41

42 43 44 45 46
    .btn {
      @include btn-gray;
      padding: 3px 10px;
      background-color: $background-color;
    }
R
Rémy Coutable 已提交
47
  }
48 49 50 51

  .group-avatar {
    border: 0;
  }
R
Rémy Coutable 已提交
52
}
53 54

.groups-header {
55

56 57 58 59 60 61 62 63 64 65
  @media (min-width: $screen-sm-min) {
    .nav-links {
      width: 35%;
    }

    .nav-controls {
      width: 65%;
    }
  }
}
F
Fatih Acet 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

.groups-empty-state {
  padding: 50px 100px;
  overflow: hidden;

  @media (max-width: $screen-md-min) {
    padding: 50px 0;
  }

  svg {
    float: right;

    @media (max-width: $screen-md-min) {
      float: none;
      display: block;
      width: 250px;
      position: relative;
      left: 50%;
      margin-left: -125px;
    }
  }

  .text-content {
    float: left;
    width: 460px;
    margin-top: 120px;

    @media (max-width: $screen-md-min) {
      float: none;
      margin-top: 60px;
      width: auto;
      text-align: center;
    }
  }
}