1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/templates/components/gh-theme-error-li.hbs
Peter Zimon ca5f9f1f6e Improved theme upload/activate flow and error styles (#1142)
no issue 

* Update error and warning styles
* Refined upload dialog
* Theme upload and activation style refinements
2019-04-05 17:27:14 +01:00

31 lines
995 B
Handlebars

<a href="" class="theme-validation-toggle-details" {{action "toggleDetails"}} data-test-toggle-details>
<div class="theme-validation-type-label"></div>
<div class="flex items-center flex-auto">
<h4 class="theme-validation-rule-text">
{{{error.rule}}}
</h4>
<div class="theme-validation-rule-icon">
{{#if showDetails}}
{{svg-jar "arrow-down"}}
{{else}}
{{svg-jar "arrow-right"}}
{{/if}}
</div>
</div>
</a>
{{#if showDetails}}
<p class="theme-validation-details">
{{{error.details}}}
</p>
{{#if error.failures}}
<div class="theme-validation-list">
<h6>Affected files:</h6>
<ul>
{{#each error.failures as |failure|}}
<li><code>{{failure.ref}}</code>{{#if failure.message}}: {{failure.message}}{{/if}}</li>
{{/each}}
</ul>
</div>
{{/if}}
{{/if}}