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

group.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5086cdbf9bc5337fe46e69f42028e89d2f49874d (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
91
92
93
@import 'page_bundles/mixins_and_variables_and_functions';

.group-home-panel {
  .home-panel-avatar {
    width: $home-panel-title-row-height;
    height: $home-panel-title-row-height;
    flex-basis: $home-panel-title-row-height;
  }

  .home-panel-title {
    .icon {
      vertical-align: -1px;
    }
  }

  .home-panel-title-row {
    @include media-breakpoint-down(sm) {
      .home-panel-avatar {
        width: $home-panel-avatar-mobile-size;
        height: $home-panel-avatar-mobile-size;
        flex-basis: $home-panel-avatar-mobile-size;

        .avatar {
          font-size: 20px;
          line-height: 46px;
        }
      }

      .home-panel-title {
        margin-top: 4px;
        margin-bottom: 2px;
        font-size: $gl-font-size;
        line-height: $gl-font-size-large;
      }


      .home-panel-metadata {
        font-size: $gl-font-size-small;
      }
    }
  }

  .home-panel-metadata {
    line-height: $gl-btn-line-height;
  }

  .home-panel-description {
    @include media-breakpoint-up(md) {
      font-size: $gl-font-size-large;
    }
  }
}

.group-nav-container {
  .nav-controls {
    .group-filter-form {
      flex: 1 1 auto;
      margin-right: $gl-padding-8;
    }

    .dropdown-menu-right {
      margin-top: 0;
    }

    @include media-breakpoint-down(sm) {
      .dropdown,
      .dropdown .dropdown-toggle,
      .btn-success {
        display: block;
      }

      .group-filter-form,
      .dropdown {
        margin-bottom: 10px;
        margin-right: 0;
      }

      &,
      .group-filter-form,
      .group-filter-form-field,
      .dropdown,
      .dropdown .dropdown-toggle,
      .btn-success {
        width: 100%;
      }
    }
  }

  // Remove this selector once https://gitlab.com/gitlab-org/gitlab/-/issues/370050 is addressed.
  .scrolling-tabs-container {
    width: 100%;
  }
}