]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #3201 updating failsafe viewtype to Elgg standards for CSS
authorcash <cash.costello@gmail.com>
Tue, 25 Oct 2011 02:21:31 +0000 (22:21 -0400)
committercash <cash.costello@gmail.com>
Tue, 25 Oct 2011 02:21:31 +0000 (22:21 -0400)
views/failsafe/messages/exceptions/exception.php
views/failsafe/page/default.php

index 9fa7dc2a414a9133bc1383ea59b66ac3c8d2111c..c35d80c8793b400a5ae76e272e92f3f7ccff749a 100644 (file)
@@ -11,7 +11,7 @@
 
 ?>
 
-<p class="messages_exception">
+<p class="elgg-messages-exception">
        <span title="<?php echo get_class($vars['object']); ?>">
        <?php
 
@@ -26,7 +26,7 @@
 if (elgg_get_config('debug')) {
 ?>
 
-<p class="messages_exception">
+<p class="elgg-messages-exception">
        <?php
 
                echo nl2br(htmlentities(print_r($vars['object'], true), ENT_QUOTES, 'UTF-8'));
index 0ce63cc1db0dbe8183e8d6350d6225eef6f5c824..6d628ebbbd5df90c5d88249a8d1f1bc164b0c334 100644 (file)
@@ -33,7 +33,7 @@ header('Content-type: text/html; charset=utf-8');
                p {
                        margin: 0px 0px 15px 0;
                }
-               #wrapper {
+               #elgg-wrapper {
                        background:white;
                        width:570px;
                        margin:auto;
@@ -43,7 +43,7 @@ header('Content-type: text/html; charset=utf-8');
                        border-right: 1px solid #666666;
                        border-bottom: 1px solid #666666;
                }
-               .messages_exception {
+               .elgg-messages-exception {
                        background:#FDFFC3;
                        display:block;
                        padding:10px;
@@ -52,7 +52,7 @@ header('Content-type: text/html; charset=utf-8');
 
        </head>
        <body>
-       <div id="wrapper">
+       <div id="elgg-wrapper">
                <h1><?php echo $vars['title']; ?></h1>
                <?php echo $vars['body']; ?>
        </div>