Verified Commit 7bab6e69 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3293215 by longwave: Remove remnants of Simpletest UI

(cherry picked from commit f5bdc0f1)
parent 356d0192
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -30,9 +30,6 @@ summary,
  text-transform: uppercase;
  font-weight: bold;
}
.simpletest-results-form summary {
  text-transform: none;
}

/**
 * Reusable heading classes are included to help modules change the styling of
+0 −20
Original line number Diff line number Diff line
{#
/**
 * @file
 * Theme override for simpletest result summaries.
 *
 * Available variables:
 * - label: An optional label to be rendered before the results.
 * - items: Pluralized summaries for each result type (number of passes, fails,
 *   exceptions, and debug messages).
 * - pass: The number of passes.
 * - fail: The number of fails.
 * - exception: The number of exceptions.
 * - debug: The number of debug messages.
 *
 * @see template_preprocess_simpletest_result_summary()
 */
#}
<div class="simpletest-{{ fail + exception == 0 ? 'pass' : 'fail' }}">
  {{ label }} {{ items|join(', ') }}
</div>