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: f188dde1183a89e157fc5beec517f02d06ce34fd (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
@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 {
  @include gl-relative;
  @include gl-mx-5;
  @include gl-display-inline-block;
  @include gl-vertical-align-middle;
  height: $stroke-size;
  background-color: var(--gray-900, $gray-900);
  min-width: $gl-spacing-scale-7;

  &-head {
    @include gl-absolute;
    top: -2*$stroke-size;
    left: calc(100% - #{5*$stroke-size});
    @include gl-display-inline-block;
    @include gl-p-1;
    @include gl-border-solid;
    border-width: 0 $stroke-size $stroke-size 0;
    border-color: var(--gray-900, $gray-900);
    transform: rotate(-45deg);
  }
}