Skip to content
Snippets Groups Projects
Verified Commit f5bdc0f1 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3293215 by longwave: Remove remnants of Simpletest UI

parent fbc8bd2d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
{#
/**
* @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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment