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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/page_bundles/incidents.scss')
-rw-r--r--app/assets/stylesheets/page_bundles/incidents.scss22
1 files changed, 20 insertions, 2 deletions
diff --git a/app/assets/stylesheets/page_bundles/incidents.scss b/app/assets/stylesheets/page_bundles/incidents.scss
index e807c4c0bbb..493add1ea0f 100644
--- a/app/assets/stylesheets/page_bundles/incidents.scss
+++ b/app/assets/stylesheets/page_bundles/incidents.scss
@@ -7,7 +7,13 @@
}
.timeline-event {
- grid-template-columns: #{$gl-spacing-scale-9} minmax(0, 1fr) #{$gl-spacing-scale-7};
+ grid-template-columns: auto minmax(0, 1fr) #{$gl-spacing-scale-7};
+}
+
+.create-timeline-event,
+.edit-timeline-event,
+.timeline-event {
+ gap: $gl-spacing-scale-5;
}
/**
@@ -51,8 +57,10 @@
}
.timeline-entry:not(:last-child) {
+ @include gl-pb-0;
+
.timeline-event-border {
- @include gl-pb-5;
+ @include gl-pb-3;
@include gl-border-gray-50;
@include gl-border-1;
@include gl-border-b-solid;
@@ -68,3 +76,13 @@
}
}
}
+
+.timeline-event-note .md p {
+ @include gl-text-gray-700;
+}
+
+.timeline-event-note-date {
+ @media (max-width: $breakpoint-md) {
+ width: 100%;
+ }
+}