Issue #3293215 by longwave: Remove remnants of Simpletest UI
(cherry picked from commit f5bdc0f1a9
)
merge-requests/1691/head
parent
356d019201
commit
7bab6e696b
|
@ -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
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
{#
|
||||
/**
|
||||
* @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>
|
Loading…
Reference in New Issue