Fixed #28508 -- Set the foreground color to black in CSRF and 404 error templates.

This commit is contained in:
Stefan Sinca 2017-09-21 17:23:23 +03:00 committed by Tim Graham
parent 41a7876991
commit 347551c2a1
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ CSRF_FAILURE_TEMPLATE = """
html * { padding:0; margin:0; }
body * { padding:10px 20px; }
body * * { padding:0; }
body { font:small sans-serif; background:#eee; }
body { font:small sans-serif; background:#eee; color:#000; }
body>div { border-bottom:1px solid #ddd; }
h1 { font-weight:normal; margin-bottom:.4em; }
h1 span { font-size:60%; color:#666; font-weight:normal; }

View File

@ -8,7 +8,7 @@
html * { padding:0; margin:0; }
body * { padding:10px 20px; }
body * * { padding:0; }
body { font:small sans-serif; background:#eee; }
body { font:small sans-serif; background:#eee; color:#000; }
body>div { border-bottom:1px solid #ddd; }
h1 { font-weight:normal; margin-bottom:.4em; }
h1 span { font-size:60%; color:#666; font-weight:normal; }