Fixes styling issues in test reports

In the Merge Request widget, the reports for tests
had an extra border.
The loading icon in the mr widget used in all
report sections had an extra margin causing text
to be misaligned.
This commit fixes both issues

Closes #52147
This commit is contained in:
Filipa Lacerda 2018-10-08 18:02:48 +01:00
parent f5c8923ac2
commit 2fa9b1fe8b
3 changed files with 9 additions and 5 deletions

View File

@ -268,11 +268,11 @@ export default {
:key="deployment.id"
:deployment="deployment"
/>
<grouped-test-reports-app
v-if="mr.testResultsPath"
:endpoint="mr.testResultsPath"
/>
<div class="mr-section-container">
<grouped-test-reports-app
v-if="mr.testResultsPath"
:endpoint="mr.testResultsPath"
/>
<div class="mr-widget-section">
<component
:is="componentName"

View File

@ -201,7 +201,6 @@
.mr-widget-icon {
font-size: 22px;
margin-right: $gl-btn-padding;
}
.ci-status-icon svg {

View File

@ -0,0 +1,5 @@
---
title: Removes extra border from test reports in the merge request widget
merge_request:
author:
type: fixed