diff --git a/cms/static/sass/elements/_header.scss b/cms/static/sass/elements/_header.scss index ede424804f..e6b06242f5 100644 --- a/cms/static/sass/elements/_header.scss +++ b/cms/static/sass/elements/_header.scss @@ -280,7 +280,8 @@ // ==================== // CASE: user not signed in -.not-signedin { +.not-signedin, +.view-util { .wrapper-header { diff --git a/cms/static/sass/views/_account.scss b/cms/static/sass/views/_account.scss index ecf301ad6a..e3566acf3e 100644 --- a/cms/static/sass/views/_account.scss +++ b/cms/static/sass/views/_account.scss @@ -1,7 +1,9 @@ // studio - views - sign up/in // ==================== -.view-signup, .view-signin { +.view-signup, +.view-signin, +.view-util { .wrapper-content { margin: ($baseline*1.5) 0 0 0; diff --git a/cms/templates/404.html b/cms/templates/404.html index 0c1d04b81c..455bd5ce14 100644 --- a/cms/templates/404.html +++ b/cms/templates/404.html @@ -1,21 +1,24 @@ <%! from django.utils.translation import ugettext as _ %> <%inherit file="base.html" /> <%block name="title">${_("Page Not Found")} +<%block name="bodyclass">view-util util-404 + <%block name="content"> -
- -

${_("Page not found")}

-

${_('The page that you were looking for was not found.')} +

+

${_("Page not found")}

+
+
+

${_('The page that you were looking for was not found.')} ${_('Go back to the {homepage} or let us know about any pages that may have been moved at {email}.').format( homepage='homepage', email=u'{address}'.format( address=settings.TECH_SUPPORT_EMAIL, ))} -

+

+
- diff --git a/cms/templates/500.html b/cms/templates/500.html index 9e5cda3691..8a336bef53 100644 --- a/cms/templates/500.html +++ b/cms/templates/500.html @@ -1,23 +1,25 @@ <%! from django.utils.translation import ugettext as _ %> <%inherit file="base.html" /> - <%block name="title">${_("Studio Server Error")} +<%block name="bodyclass">view-util util-500 <%block name="content"> -
-

${_("The Studio servers encountered an error")}

-

- ${_("An error occurred in Studio and the page could not be loaded. Please try again in a few moments.")} - ${_("We've logged the error and our staff is currently working to resolve this error as soon as possible.")} - ${_('If the problem persists, please email us at {email_link}.').format( - email_link=u'{email_address}'.format( - email_address=settings.TECH_SUPPORT_EMAIL, - ) - )} -

+
+

${_("The Studio servers encountered an error")}

+
+
+

+ ${_("An error occurred in Studio and the page could not be loaded. Please try again in a few moments.")} + ${_("We've logged the error and our staff is currently working to resolve this error as soon as possible.")} + ${_('If the problem persists, please email us at {email_link}.').format( + email_link=u'{email_address}'.format( + email_address=settings.TECH_SUPPORT_EMAIL, + ) + )} +

+
-