From e39cfcd22b369684ee88268b3a80b1d293867406 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 29 May 2003 15:36:17 +0000 Subject: - More CSS updates and fixes. Patch by Al. --- misc/drupal.css | 6 +++--- modules/aggregator.module | 1 + modules/aggregator/aggregator.module | 1 + modules/archive.module | 2 +- modules/archive/archive.module | 2 +- modules/import.module | 1 + 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/misc/drupal.css b/misc/drupal.css index 76c81a8a8..bf7d3a51b 100644 --- a/misc/drupal.css +++ b/misc/drupal.css @@ -6,10 +6,10 @@ .blog-it a { color: #000; text-decoration: none; } .blog-it a:hover { color: #000; text-decoration: none; } -.poll-foreground { background-color: #000; } -.poll-background { background-color: #ddd; } +.poll-foreground { background-color: #000; float: left; height: 1em; } +.poll-background { background-color: #ddd; float: left; height: 1em; } .form-item .title { font-weight: bold; margin-top: 1.1em; margin-bottom: 1px; } .form-item .description { font-size: 0.85em; } -.inline-container div { display: inline; } +.container-inline div { display: inline; } diff --git a/modules/aggregator.module b/modules/aggregator.module index 3dc3b22cc..b1aea5d6e 100644 --- a/modules/aggregator.module +++ b/modules/aggregator.module @@ -106,6 +106,7 @@ function import_feed_block($feed) { $output .= "
  • ". import_format_item($item) ."
  • "; } $output .= ""; + return $output; } diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 3dc3b22cc..b1aea5d6e 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -106,6 +106,7 @@ function import_feed_block($feed) { $output .= "
  • ". import_format_item($item) ."
  • "; } $output .= ""; + return $output; } diff --git a/modules/archive.module b/modules/archive.module index 45391227d..3bb06ebae 100644 --- a/modules/archive.module +++ b/modules/archive.module @@ -170,7 +170,7 @@ function archive_page() { $months = array(1 => t("January"), 2 => t("February"), 3 => t("March"), 4 => t("April"), 5 => t("May"), 6 => t("June"), 7 => t("July"), 8 => t("August"), 9 => t("September"), 10 => t("October"), 11 => t("November"), 12 => t("December")); for ($i = 1; $i <= 31; $i++) $days[$i] = $i; - $start = "
    "; + $start = "
    "; $start .= form_select("", "year", ($year ? $year : date("Y")), $years). form_select("", "month", ($month ? $month : date("m")), $months) . form_select("", "day", ($day ? $day : date("d")), $days) . form_submit(t("Show")); $start .= "
    "; theme("box", t("Archives"), form($start)); diff --git a/modules/archive/archive.module b/modules/archive/archive.module index 45391227d..3bb06ebae 100644 --- a/modules/archive/archive.module +++ b/modules/archive/archive.module @@ -170,7 +170,7 @@ function archive_page() { $months = array(1 => t("January"), 2 => t("February"), 3 => t("March"), 4 => t("April"), 5 => t("May"), 6 => t("June"), 7 => t("July"), 8 => t("August"), 9 => t("September"), 10 => t("October"), 11 => t("November"), 12 => t("December")); for ($i = 1; $i <= 31; $i++) $days[$i] = $i; - $start = "
    "; + $start = "
    "; $start .= form_select("", "year", ($year ? $year : date("Y")), $years). form_select("", "month", ($month ? $month : date("m")), $months) . form_select("", "day", ($day ? $day : date("d")), $days) . form_submit(t("Show")); $start .= "
    "; theme("box", t("Archives"), form($start)); diff --git a/modules/import.module b/modules/import.module index 3dc3b22cc..b1aea5d6e 100644 --- a/modules/import.module +++ b/modules/import.module @@ -106,6 +106,7 @@ function import_feed_block($feed) { $output .= "
  • ". import_format_item($item) ."
  • "; } $output .= "
    "; + return $output; } -- cgit v1.2.3