bug #37395 add .body wrapper element (Nemo64)

This PR was merged into the 4.4 branch.

Discussion
----------

add .body wrapper element

This change makes the notification email responsive.

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | none
| License       | MIT

There was a wrapper missing from the foundation template.
This wrapper applies all `table.body table.container` styles from the foundation stylesheet
including font's and the responsive rules that were missing.

Commits
-------

5b74bbd288 add .body wrapper element
This commit is contained in:
Fabien Potencier 2020-06-24 10:39:13 +02:00
commit aeb0946df0

View File

@ -10,6 +10,7 @@
</head>
<body>
<spacer size="32"></spacer>
<wrapper class="body">
<container class="body_{{ ("urgent" == importance ? "alert" : ("high" == importance ? "warning" : "default")) }}">
<spacer size="16"></spacer>
<row>
@ -58,6 +59,7 @@
{% endblock %}
</wrapper>
</container>
</wrapper>
</body>
</html>
{% endapply %}