BigW Consortium Gitlab

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

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

Andrey committed
7 8 9
  .form-control {
    height: 42px;
  }
10
}
11

12 13 14 15 16 17 18
.group-root-path {
  max-width: 40vw;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: nowrap;
}

19
.group-row {
20
  @include basic-list-stats;
21 22 23 24 25 26
}

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

29 30 31 32 33 34 35 36 37 38 39
.groups-header {
  @media (min-width: $screen-sm-min) {
    .nav-links {
      width: 35%;
    }

    .nav-controls {
      width: 65%;
    }
  }
}
40 41 42 43 44

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

45
  @media (max-width: $screen-sm-max) {
46 47 48 49 50 51
    padding: 50px 0;
  }

  svg {
    float: right;

52
    @media (max-width: $screen-sm-max) {
53 54 55 56 57 58 59 60 61 62 63 64 65 66
      float: none;
      display: block;
      width: 250px;
      position: relative;
      left: 50%;
      margin-left: -125px;
    }
  }

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

67
    @media (max-width: $screen-sm-max) {
68 69 70 71 72 73 74
      float: none;
      margin-top: 60px;
      width: auto;
      text-align: center;
    }
  }
}
75

76
.mattermost-icon svg {
77 78 79 80
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}
81 82 83 84 85 86 87 88 89 90

.mattermost-team-name {
  color: $gl-text-color-secondary;
}

.mattermost-info {
  display: block;
  color: $gl-text-color-secondary;
  margin-top: 10px;
}