summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-30 12:19:10 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-30 12:19:10 +0000
commite9f52b4248a5268630b51ee0746dcf8b6449d445 (patch)
tree2a75a607895da5e9ec5271971426a5344e8911a4 /misc
parent6d4b0a24fad35cfbbf48d3b3f82ff5dbc243e5cb (diff)
downloadbrdo-e9f52b4248a5268630b51ee0746dcf8b6449d445.tar.gz
brdo-e9f52b4248a5268630b51ee0746dcf8b6449d445.tar.bz2
#141727 by merlinofchaos, dvessel, sun: restore themeability support for maintenance pages (regression)
Diffstat (limited to 'misc')
-rw-r--r--misc/maintenance.css23
-rw-r--r--misc/maintenance.tpl.php62
2 files changed, 0 insertions, 85 deletions
diff --git a/misc/maintenance.css b/misc/maintenance.css
deleted file mode 100644
index a18f10c1a..000000000
--- a/misc/maintenance.css
+++ /dev/null
@@ -1,23 +0,0 @@
-/* $Id$ */
-
-/* Update styles */
-#update-results {
- margin-top: 3em;
- padding: 0.25em;
- border: 1px solid #ccc;
- background: #eee;
- font-size: smaller;
-}
-#update-results h2 {
- margin-top: 0.25em;
-}
-#update-results h4 {
- margin-bottom: 0.25em;
-}
-#update-results li.none {
- color: #888;
- font-style: italic;
-}
-#update-results li.failure strong {
- color: #b63300;
-}
diff --git a/misc/maintenance.tpl.php b/misc/maintenance.tpl.php
deleted file mode 100644
index 24d554f4a..000000000
--- a/misc/maintenance.tpl.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-// $Id$
-?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title><?php print $head_title ?></title>
- <?php print $head ?>
- <?php print $styles ?>
- <?php print $scripts ?>
- <link type="text/css" rel="stylesheet" media="all" href="<?php print $path_to_theme ?>/style.css" />
- <!--[if lt IE 7]>
- <link type="text/css" rel="stylesheet" media="all" href="<?php print $path_to_theme ?>/fix-ie.css" />
- <![endif]-->
- </head>
- <body class="<?php
- $classes = array('', 'sidebar-left', 'sidebar-right', 'sidebar-both');
- print $classes[((bool)$left) + 2 * ((bool)$right)];
- ?>">
-
-<!-- Layout -->
- <div id="header-region" class="clear-block"></div>
-
- <div id="wrapper">
- <div id="container" class="clear-block">
-
- <div id="header">
- <div id="logo-floater">
- <h1><a href="<?php print check_url($base_path) ?>"><img src="<?php print check_url($logo) ?>" alt="Drupal" id="logo" /><span><?php print $site_title ?></span></a></h1>
- </div>
- </div> <!-- /header -->
-
- <?php if ($left): ?>
- <div id="sidebar-left" class="sidebar">
- <?php print $left ?>
- </div>
- <?php endif; ?>
-
- <div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
- <?php if ($title): print '<h2>'. $title .'</h2>'; endif; ?>
-
- <?php if ($messages): print $messages; endif; ?>
- <div class="clear-block">
- <?php print $content ?>
- </div>
-
- <!--partial-->
-
- </div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
-
- <?php if ($right): ?>
- <div id="sidebar-right" class="sidebar">
- <?php print $right ?>
- </div>
- <?php endif; ?>
-
- </div> <!-- /container -->
- </div>
-<!-- /layout -->
-
- </body>
-</html>