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: 71dbb8551034e9733b114e2cee7f7bf865bb4846 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@import 'page_bundles/mixins_and_variables_and_functions';

.group-home-panel {
  margin-top: $gl-padding;
  margin-bottom: $gl-padding;

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

  .home-panel-title {
    font-size: 20px;
    line-height: $gl-line-height-24;
    font-weight: bold;

    .icon {
      vertical-align: -1px;
    }

    .home-panel-topic-list {
      font-size: $gl-font-size;
      font-weight: $gl-font-weight-normal;

      .icon {
        position: relative;
        top: 3px;
        margin-right: $gl-padding-4;
      }
    }
  }

  .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-topic-list,
      .home-panel-metadata {
        font-size: $gl-font-size-small;
      }
    }
  }

  .home-panel-metadata {
    font-weight: normal;
    font-size: 14px;
    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%;
  }
}