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

pipeline_schedules.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: c10d824339b46541a845f50704f298f3a8747eb0 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
@import 'mixins_and_variables_and_functions';

.ci-variable-list {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  clear: both;
}

.ci-variable-row {
  display: flex;
  align-items: flex-start;

  @include media-breakpoint-down(xs) {
    align-items: flex-end;
  }

  &:not(:last-child) {
    margin-bottom: $gl-btn-padding;

    @include media-breakpoint-down(xs) {
      margin-bottom: 3 * $gl-btn-padding;
    }
  }

  &:last-child {
    .ci-variable-body-item:last-child {
      margin-right: $ci-variable-remove-button-width;

      @include media-breakpoint-down(xs) {
        margin-right: 0;
      }
    }

    .ci-variable-row-remove-button {
      display: none;
    }

    @include media-breakpoint-down(xs) {
      .ci-variable-row-body {
        margin-right: $ci-variable-remove-button-width;
      }
    }
  }
}

.ci-variable-row-body {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-bottom: $gl-padding;

  @include media-breakpoint-down(xs) {
    display: block;
  }
}

.ci-variable-body-item {
  flex: 1;

  &:not(:last-child) {
    margin-right: $gl-btn-padding;

    @include media-breakpoint-down(xs) {
      margin-right: 0;
      margin-bottom: $gl-btn-padding;
    }
  }
}

.pipeline-schedule-form {
  .gl-field-error {
    margin: 10px 0 0;
  }
}

.interval-pattern-form-group {
  label {
    margin-right: 10px;
    font-weight: $gl-font-weight-normal;

    &[for='custom'] {
      margin-right: 0;
    }
  }

  .cron-interval-input-wrapper {
    padding-left: 0;
  }

  .cron-interval-input {
    margin: 10px 10px 0 0;
  }
}

.pipeline-schedule-table-row {
  .branch-name-cell {
    max-width: 300px;
  }

  a {
    color: var(--gl-text-color, $gl-text-color);
  }

  svg {
    vertical-align: middle;
  }
}

.pipeline-schedules-user-callout {
  .bordered-box.content-block {
    border: 1px solid var(--border-color, $border-color);
    background-color: transparent;
  }
}

.cron-preset-radio-input {
  display: inline-block;

  @include media-breakpoint-down(md) {
    display: block;
    margin: 0 0 5px 5px;
  }

  input {
    margin-right: 3px;
  }
}