diff options
author | mfluharty <mfluharty@gitlab.com> | 2019-09-15 21:50:26 -0600 |
---|---|---|
committer | mfluharty <mfluharty@gitlab.com> | 2019-09-16 09:27:01 -0600 |
commit | 812cefb62db3f4b82705a9c07b6e294be2c292f8 (patch) | |
tree | 6a4bbf7aaba770a7dd7a6e7dc54c4d1cabf72160 | |
parent | 78cc72220dea62b1df81cbd07940db997e799efe (diff) | |
download | gitlab-ce-812cefb62db3f4b82705a9c07b6e294be2c292f8.tar.gz |
Improve pipeline CSS54331-pipeline-graph-css-update
Use utility class for unstyled list
Remove direct child requirement for highlighting expanded job
-rw-r--r-- | app/assets/javascripts/pipelines/components/graph/stage_column_component.vue | 7 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue b/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue index e9a250effd4..c98f2e0de97 100644 --- a/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue +++ b/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue @@ -61,7 +61,12 @@ export default { <div class="builds-container"> <ul> - <li v-for="group in groups" :id="groupId(group)" :key="group.id" class="build"> + <li + v-for="group in groups" + :id="groupId(group)" + :key="group.id" + class="build list-unstyled" + > <job-item v-if="group.size === 1" :job="group.jobs[0]" diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index 5cb538ec03e..7a90777487a 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -494,10 +494,6 @@ @include flat-connector-before; } } - - li { - list-style: none; - } } .stage-name { @@ -518,7 +514,7 @@ .ci-job-dropdown-container { // highlight job whose dropdown is shown - &.dropdown.show > .build-content { + &.dropdown.show .build-content { background-color: $ci-action-dropdown-expanded-background; &:hover { |