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:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-09-14 14:51:36 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-10-10 18:48:50 +0300
commitff0f70c0fe75773d060ecf5cf75d6fc5f879283b (patch)
tree585a39854dfc79576988fd6e4d3e406a4eec0e94 /app/assets/stylesheets
parentcc8ad60fc42e9a115da63f0e0eca71c4b2567c35 (diff)
Change length of connecting lines based on number of builds
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/pages/pipelines.scss24
1 files changed, 21 insertions, 3 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss
index e7e1a2a9b18..37df702ea13 100644
--- a/app/assets/stylesheets/pages/pipelines.scss
+++ b/app/assets/stylesheets/pages/pipelines.scss
@@ -303,11 +303,26 @@
.stage-column {
display: inline-block;
vertical-align: top;
- margin-right: 48px;
+
+ &:not(:last-child) {
+ margin-right: 44px;
+ }
&.left-margin {
&:not(:first-child) {
- margin-left: 48px;
+ margin-left: 44px;
+
+ .left-connector {
+ &::before {
+ content: '';
+ position: absolute;
+ top: 50%;
+ left: -48px;
+ border-top: 2px solid $border-color;
+ width: 48px;
+ height: 1px;
+ }
+ }
}
}
@@ -348,7 +363,10 @@
}
.build-content {
- width: 130px;
+ width: 164px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
.ci-status-text {
width: 110px;