82 lines
1.4 KiB
SCSS
82 lines
1.4 KiB
SCSS
@import 'mixins_and_variables_and_functions';
|
|
|
|
.ci-variable-list {
|
|
margin-left: 0;
|
|
margin-bottom: 0;
|
|
padding-left: 0;
|
|
list-style: none;
|
|
clear: both;
|
|
}
|
|
|
|
.ci-variable-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: $gl-btn-padding;
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
margin-bottom: 3 * $gl-btn-padding;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.ci-variable-body-item:last-child {
|
|
margin-right: $ci-variable-remove-button-width;
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.ci-variable-row-remove-button {
|
|
display: none;
|
|
}
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
.ci-variable-row-body {
|
|
margin-right: $ci-variable-remove-button-width;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.ci-variable-row-body {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
width: 100%;
|
|
padding-bottom: $gl-padding;
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.ci-variable-body-item {
|
|
flex: 1;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: $gl-btn-padding;
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
margin-right: 0;
|
|
margin-bottom: $gl-btn-padding;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pipeline-schedule-form {
|
|
.gl-field-error {
|
|
margin: 10px 0 0;
|
|
}
|
|
}
|
|
|
|
.pipeline-schedule-table-row {
|
|
a {
|
|
color: var(--gl-text-color, $gl-text-color);
|
|
}
|
|
}
|