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

groups.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 701b93884544af36289bb7661c1c6bc76bb720ce (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.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;
    }
  }

  &.group-admin {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    .group-avatar, .group-details, .group-controls {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }

    .group-details {
      flex: 1 1 auto;
      flex-direction: column;
      min-width: 0;
    }

    .group-controls {
      align-items: center;

      a {
        margin-left: 5px;
      }
    }
  }

}

.ldap-group-links {
  .form-actions {
    margin-bottom: $gl-padding;
  }
}

.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;
    }
  }
}