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

escalation_policies.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: 604533e199c2d6d531d2be614d7027296a3780e3 (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
@import 'mixins_and_variables_and_functions';

.escalation-policy-modal {
  width: 640px;
}

.rule-control {
  width: 240px;
}

.rule-close-icon {
  right: 1rem;
}

$stroke-size: 1px;

.right-arrow {
  height: $stroke-size;

  &-head {
    top: -2 * $stroke-size;
    left: calc(100% - #{5 * $stroke-size});
    border-width: 0 $stroke-size $stroke-size 0;
    border-color: var(--gray-900, $gray-900);
    transform: rotate(-45deg);
  }
}

.escalation-rule-row {
  @media (max-width: $breakpoint-lg) {
    @include gl-flex-wrap;
  }
}

.rule-condition {
  @media (min-width: $breakpoint-lg) {
    flex-basis: 25%;
    @include gl-flex-shrink-0;
  }

  @media (max-width: $breakpoint-lg) {
    width: 100%;
  }
}

.escalation-email-user-dropdown {
  .show.dropdown .dropdown-menu {
    max-height: 300px;
  }
}