You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
714 B
22 lines
714 B
{# |
|
/** |
|
* @file |
|
* Theme override for a progress bar. |
|
* |
|
* Note that the core Batch API uses this only for non-JavaScript batch jobs. |
|
* |
|
* Available variables: |
|
* - label: The label of the working task. |
|
* - percent: The percentage of the progress. |
|
* - message: A string containing information to be displayed. |
|
*/ |
|
#} |
|
{{ attach_library('roblib_2023/progress') }} |
|
<div class="progress" data-drupal-progress> |
|
{% if label %} |
|
<div class="progress__label">{{ label }}</div> |
|
{% endif %} |
|
<div class="progress__track"><div class="progress__bar" style="width: {{ percent }}%"></div></div> |
|
<div class="progress__percentage">{{ percent }}%</div> |
|
<div class="progress__description">{{ message }}</div> |
|
</div>
|
|
|