debian-mirror-gitlab/app/assets/stylesheets/page_bundles/escalation_policies.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
720 B
SCSS
Raw Normal View History

2021-09-04 01:27:46 +05:30
@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 {
2022-08-27 11:52:29 +05:30
top: -2 * $stroke-size;
left: calc(100% - #{5 * $stroke-size});
2021-09-04 01:27:46 +05:30
border-width: 0 $stroke-size $stroke-size 0;
border-color: var(--gray-900, $gray-900);
transform: rotate(-45deg);
}
}
2021-11-11 11:23:49 +05:30
.escalation-rule-row {
@media (max-width: $breakpoint-lg) {
@include gl-flex-wrap;
}
}
.rule-condition {
@media (min-width: $breakpoint-lg) {
flex-basis: 25%;
2022-08-27 11:52:29 +05:30
@include gl-flex-shrink-0;
2021-11-11 11:23:49 +05:30
}
@media (max-width: $breakpoint-lg) {
@include gl-w-full;
}
}