diff options
author | Alfredo Sumaran <alfredo@gitlab.com> | 2016-11-17 16:18:24 -0500 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-11-21 13:57:10 -0500 |
commit | cdafef9be0c375ce7f59fac383ff390819728d8f (patch) | |
tree | daf561168d390134d0e49560569f3718362dcc66 /app/assets/stylesheets/pages/cycle_analytics.scss | |
parent | c0c4b2767f8ec0ab827675f1ba37de15f286c308 (diff) | |
download | gitlab-ce-cdafef9be0c375ce7f59fac383ff390819728d8f.tar.gz |
Update ItemBuildComponent html structure
Diffstat (limited to 'app/assets/stylesheets/pages/cycle_analytics.scss')
-rw-r--r-- | app/assets/stylesheets/pages/cycle_analytics.scss | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/cycle_analytics.scss b/app/assets/stylesheets/pages/cycle_analytics.scss index 02262b1c613..3bedb16cc56 100644 --- a/app/assets/stylesheets/pages/cycle_analytics.scss +++ b/app/assets/stylesheets/pages/cycle_analytics.scss @@ -295,7 +295,7 @@ .item-title { margin: 0 0 2px 0; - a { + .issue-title { color: $gl-dark-link-color; max-width: 100%; display: block; @@ -342,6 +342,49 @@ } } } + + // Custom Styles for stage items + .item-build-component { + + .item-title { + .icon-build-status { + float: left; + margin-right: 5px; + } + + .item-build-name { + color: $gl-title-color; + } + + .pipeline-id { + color: $gl-title-color; + padding: 0 3px 0 0; + } + + .branch-name { + color: $black; + display: inline-block; + max-width: 180px; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + line-height: 1.3; + vertical-align: top; + } + + .short-sha { + color: $gl-link-color; + line-height: 1.3; + vertical-align: top; + font-weight: normal; + } + + .fa { + color: $gl-text-color-light; + font-size: $code_font_size; + } + } + } .empty-stage { text-align: center; |