Skip to content

Commit

Permalink
Fixed #35195 -- Removed unnecessary type="text/css" attributes from <…
Browse files Browse the repository at this point in the history
…style> tags.
  • Loading branch information
cosmicproc authored Feb 14, 2024
1 parent e6fa74f commit c783e7a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{% block extrahead %}
{{ block.super }}
<style type="text/css">
<style>
.module table { width:100%; }
.module table p { padding: 0; margin: 0; }
</style>
Expand Down
2 changes: 1 addition & 1 deletion django/views/templates/csrf_403.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="robots" content="NONE,NOARCHIVE">
<title>403 Forbidden</title>
<style type="text/css">
<style>
html * { padding:0; margin:0; }
body * { padding:10px 20px; }
body * * { padding:0; }
Expand Down
2 changes: 1 addition & 1 deletion django/views/templates/technical_404.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Page not found at {{ request.path_info }}</title>
<meta name="robots" content="NONE,NOARCHIVE">
<style type="text/css">
<style>
html * { padding:0; margin:0; }
body * { padding:10px 20px; }
body * * { padding:0; }
Expand Down
2 changes: 1 addition & 1 deletion django/views/templates/technical_500.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="robots" content="NONE,NOARCHIVE">
<title>{% if exception_type %}{{ exception_type }}{% else %}Report{% endif %}
{% if request %} at {{ request.path_info }}{% endif %}</title>
<style type="text/css">
<style>
html * { padding:0; margin:0; }
body * { padding:10px 20px; }
body * * { padding:0; }
Expand Down

0 comments on commit c783e7a

Please sign in to comment.