From 1e79ca2dcbad102aab876169f706e7c5eef587f3 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Sun, 30 Aug 2009 23:22:54 -0600 Subject: Move header and footer into page.html.php since they're not included in any other view template. --- themes/default/views/footer.html.php | 11 ---------- themes/default/views/header.html.php | 28 -------------------------- themes/default/views/page.html.php | 39 ++++++++++++++++++++++++++++++++++-- 3 files changed, 37 insertions(+), 41 deletions(-) delete mode 100644 themes/default/views/footer.html.php delete mode 100644 themes/default/views/header.html.php (limited to 'themes/default') diff --git a/themes/default/views/footer.html.php b/themes/default/views/footer.html.php deleted file mode 100644 index 040a4062..00000000 --- a/themes/default/views/footer.html.php +++ /dev/null @@ -1,11 +0,0 @@ - -footer() ?> - - - - - - - diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php deleted file mode 100644 index dcfa6fd8..00000000 --- a/themes/default/views/header.html.php +++ /dev/null @@ -1,28 +0,0 @@ - -
- header_top() ?> - - - - - -
- site_menu() ?> -
- header_bottom() ?> -
- - - - diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 2696442b..636b2f99 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -76,7 +76,33 @@
site_status() ?>
- +
+ header_top() ?> + + + + + +
+ site_menu() ?> +
+ header_bottom() ?> +
+ + + +
@@ -94,7 +120,16 @@
- + footer() ?> + + + + + +
    + credits() ?> +
+
page_bottom() ?> -- cgit v1.2.3 From e6c2fe60c42efee8ce898e208befe63565d98ffc Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Sun, 30 Aug 2009 17:17:14 -0700 Subject: Use $theme->item() instead of $item. --- themes/default/views/page.html.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'themes/default') diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 636b2f99..ebe6b0cf 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -95,12 +95,12 @@ -- cgit v1.2.3 From 74a124b261dabfae2613449addbcabc4310994ac Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Sun, 30 Aug 2009 17:41:34 -0700 Subject: Oops, fix up the show argument that I "fixed" in the last change. --- themes/default/views/page.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'themes/default') diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index ebe6b0cf..7d181ea0 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -95,7 +95,7 @@
  • - id}?show=$theme->item()->id") ?>"> + id}?show={$theme->item()->id}") ?>"> title) ?>
  • -- cgit v1.2.3 From 80ae2fe4bf8d5872d0aeb18559fa8b099d07282f Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Sun, 30 Aug 2009 23:51:31 -0600 Subject: Finish this pass at the Admin Maintenance view. Re-introduce status icons, put Cancel All, Delete All buttons in the action heading cell. --- modules/gallery/views/admin_maintenance.html.php | 20 +++++++++----------- themes/admin_default/css/screen.css | 7 +------ themes/default/css/screen.css | 1 - 3 files changed, 10 insertions(+), 18 deletions(-) (limited to 'themes/default') diff --git a/modules/gallery/views/admin_maintenance.html.php b/modules/gallery/views/admin_maintenance.html.php index 05bc0923..4bca8653 100644 --- a/modules/gallery/views/admin_maintenance.html.php +++ b/modules/gallery/views/admin_maintenance.html.php @@ -22,7 +22,7 @@ "> - + name ?> @@ -42,10 +42,6 @@ count()): ?>
    - " - class="gButtonLink ui-icon-left ui-state-default ui-corner-all right"> - -

    @@ -66,12 +62,15 @@ "> -
    + " + class="gButtonLink ui-icon-left ui-state-default ui-corner-all right"> +
    + "> updated) ?> @@ -116,10 +115,6 @@ count()): ?>
    - " - class="gButtonLink ui-icon-left ui-state-default ui-corner-all right"> - -

    @@ -140,12 +135,15 @@ "> -
    + " + class="gButtonLink ui-icon-left ui-state-default ui-corner-all right"> +
    + "> updated) ?> diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css index c275eb10..21b2b31c 100644 --- a/themes/admin_default/css/screen.css +++ b/themes/admin_default/css/screen.css @@ -312,7 +312,6 @@ li.gError select { .gError { background-color: #f6cbca; - color: red; background-image: url('../images/ico-error.png'); } @@ -346,11 +345,7 @@ table .gSuccess { background-color: transparent !important; } -.gPager .gInfo, -table .gError, -table .gInfo, -table .gSuccess, -table .gWarning { +.gPager .gInfo { background-image: none !important; } diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index 5eb30bde..7cf4cfbe 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -308,7 +308,6 @@ li.gError select { .gError { background-color: #f6cbca; - color: #f00; background-image: url('../images/ico-error.png'); } -- cgit v1.2.3