Projet

Général

Profil

0001-templates-fix-django-commenting-around-MSIE11-note-3.patch

Frédéric Péters, 20 février 2019 15:58

Télécharger (1,25 ko)

Voir les différences:

Subject: [PATCH] templates: fix django commenting around MSIE11 note (#30790)

 templates/combo/page_template.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
templates/combo/page_template.html
36 36
  --page-picture: url("{{site_base}}{{page.picture.url}}");
37 37
}
38 38
{% block msie_css_page_picture %}
39
{# IE11 doesn't support CSS variable and supports() API, so we set it here and
40
   themes that do need a different CSS will have to redefine the
41
   msie_css_page_picture block. #}
39
{# IE11 doesn't support CSS variable and supports() API, so we set it here #}
40
{# and themes that do need a different CSS will have to redefine the       #}
41
{# msie_css_page_picture block.                                            #}
42 42
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
43 43
  body.has-picture nav::after {
44 44
    background-image: url("{{site_base}}{{page.picture.url}}");
45
-