Skip to content

Commit

Permalink
Merge pull request #19846 from phillip-kruger/dev-ui-test-report-fix
Browse files Browse the repository at this point in the history
Dev UI Test result screen make sure dark background use light text
  • Loading branch information
gastaldi authored Sep 1, 2021
2 parents 6d695ce + c83c608 commit b376a0f
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@

<div id="failedTests{parentCount}LogFailed{count}" class="collapse">
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap text-info" style="font-size: 0.9em;">
{#for throwable in r.problems}
<pre class="text-danger">{throwable.message}</pre>
Expand All @@ -100,7 +100,7 @@
</div>
{#if !r.logOutput.empty}
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap " style="font-size: 0.9em;">
{#for log in r.logOutput}
{log.raw} <br/>
Expand All @@ -124,7 +124,7 @@
<div id="failedTests{parentCount}LogPassed{count}" class="collapse">
{#if !r.logOutput.empty}
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap " style="font-size: 0.9em;">
{#for log in r.logOutput}
{log.raw} <br/>
Expand All @@ -149,7 +149,7 @@
<div id="failedTests{parentCount}LogSkipped{count}" class="collapse">
{#if !r.logOutput.empty}
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap " style="font-size: 0.9em;">
{#for log in r.logOutput}
{log.raw} <br/>
Expand Down Expand Up @@ -191,7 +191,7 @@

<div id="passedTests{parentCount}LogPassed{count}" class="collapse">
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap " style="font-size: 0.9em;">
{#for log in r.logOutput}
{log.raw} <br/>
Expand All @@ -214,7 +214,7 @@

<div id="passedTests{parentCount}LogSkipped{count}" class="collapse">
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap " style="font-size: 0.9em;">
{#for log in r.logOutput}
{log.raw} <br/>
Expand Down Expand Up @@ -256,7 +256,7 @@

<div id="skippedTests{parentCount}LogSkipped{count}" class="collapse">
<br/>
<div class="bg-dark p-2">
<div class="bg-dark text-light p-2">
<samp class="text-wrap " style="font-size: 0.9em;">
{#for log in r.logOutput}
{log.raw} <br/>
Expand Down

0 comments on commit b376a0f

Please sign in to comment.