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

settings.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d78ab82b7def0ccaca450e59c71cec60c9ea084 (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
115
116
.integration-settings-form {
  .card.card-body,
  .info-well {
    padding: $gl-padding / 2;
    box-shadow: none;
  }

  .svg-container {
    max-width: 150px;
  }
}

.visibility-level-setting {
  .option-title {
    font-weight: $gl-font-weight-normal;
    display: inline-block;
    color: var(--gl-text-color, $gl-text-color);
    vertical-align: top;
  }

  .option-description,
  .option-disabled-reason {
    color: var(--gray-700, $gray-700);
  }

  .option-disabled-reason {
    display: none;
  }

  .disabled {
    svg {
      opacity: 0.5;
    }

    .option-description {
      display: none;
    }

    .option-disabled-reason {
      display: block;
    }
  }
}

.saml-settings.info-well {
  .form-control[readonly] {
    background: var(--white, $white);
  }
}

.doorkeeper-authorize {
  max-width: px-to-rem(500px);
}

.created-deploy-token-container {
  .deploy-token-field {
    width: 90%;
    display: inline;
  }

  .btn-clipboard {
    background-color: var(--white, $white);
    border: 1px solid var(--gray-100, $gray-100);
  }

  .deploy-token-help-block {
    display: block;
    margin-bottom: 0;
  }
}

.push-pull-table {
  margin-top: 1em;
}

.ci-variable-table,
.deploy-freeze-table,
.ci-secure-files-table {
  table {
    thead {
      border-bottom: 1px solid var(--gray-50, $gray-50);
    }

    tr {
      td,
      th {
        padding-left: 0;
      }

      th {
        background-color: transparent;
        font-weight: $gl-font-weight-bold;
        border: 0;
      }

      // When tables are "stacked", restore td padding
      @media(max-width: map-get($grid-breakpoints, lg)) {
        td {
          padding-left: $gl-spacing-scale-5;
        }
      }
    }
  }

  @media(max-width: map-get($grid-breakpoints, lg)-1) {
    .truncated-container {
      justify-content: flex-end;
    }
  }
}

.gl-md-flex-wrap-nowrap.gl-md-flex-wrap-nowrap {
  @include gl-media-breakpoint-up(md) {
    @include gl-flex-wrap-nowrap;
  }
}