summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/pipeline_schedules.scss
blob: bc7fa8a26d92607f80328bef53f2863948507ea1 (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
.js-pipeline-schedule-form {
  .dropdown-select,
  .dropdown-menu-toggle {
    width: 100% !important;
  }

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

  .cron-syntax-link-wrap {
    margin-right: 10px;
    font-size: 12px;
  }
}

.pipeline-schedule-table-row {
  .branch-name-cell {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    svg {
      vertical-align: middle;
    }
  }

  .next-run-cell {
    color: $gl-text-color-secondary;
  }

  a {
    color: $text-color;
  }
}

.pipeline-schedules-user-callout {
  .bordered-box.content-block {
    border: 1px solid $border-color;
    background-color: transparent;
    padding: 16px;
  }

  #dismiss-callout-btn {
    color: $gl-text-color;
  }
}

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

  @media (max-width: $screen-md-max) {
    display: block;
    margin: 0 0 5px 5px;
  }

  input {
    margin-right: 3px;
  }
}