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: 0c73bece0359da07223b1609c0741a9b7ecdd35c (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
@import 'mixins_and_variables_and_functions';

.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;
  }
}