Skip to content

Commit

Permalink
Dev UI Test result screen make sure dark background use light test (Fix
Browse files Browse the repository at this point in the history
quarkusio#19374)

Signed-off-by:Phillip Kruger <[email protected]>

(cherry picked from commit c83c608)
  • Loading branch information
phillip-kruger authored and gsmet committed Sep 6, 2021
1 parent efd47f8 commit 7ddf5fe
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 7ddf5fe

Please sign in to comment.