From 45e4efa737559fd69c961b50ace7e7b1b3011dcb Mon Sep 17 00:00:00 2001
From: Chris Ruppel <chris.ruppel@gmail.com>
Date: Tue, 9 Aug 2011 14:16:08 -0500
Subject: [PATCH] Issue 1216950: renamed block.css to block.admin.css

---
 modules/block/block.admin.css |   36 ++++++++++++++++++++++++++++++++++++
 modules/block/block.admin.inc |    4 ++--
 modules/block/block.css       |   36 ------------------------------------
 3 files changed, 38 insertions(+), 38 deletions(-)
 create mode 100644 modules/block/block.admin.css
 delete mode 100644 modules/block/block.css

diff --git a/modules/block/block.admin.css b/modules/block/block.admin.css
new file mode 100644
index 0000000..214c8a2
--- /dev/null
+++ b/modules/block/block.admin.css
@@ -0,0 +1,36 @@
+
+#blocks tr.region-title td {
+  font-weight: bold;
+}
+#blocks tr.region-message {
+  font-weight: normal;
+  color: #999;
+}
+#blocks tr.region-populated {
+  display: none;
+}
+.block-region {
+  background-color: #ff6;
+  margin-top: 4px;
+  margin-bottom: 4px;
+  padding: 3px;
+}
+a.block-demo-backlink,
+a.block-demo-backlink:link,
+a.block-demo-backlink:visited {
+  background-color: #B4D7F0;
+  -moz-border-radius: 0 0 10px 10px;
+  -webkit-border-radius: 0 0 10px 10px;
+  border-radius: 0 0 10px 10px;
+  color: #000;
+  font-family: "Lucida Grande", Verdana, sans-serif;
+  font-size: small;
+  line-height: 20px;
+  left: 20px; /*LTR*/
+  padding: 5px 10px;
+  position: fixed;
+  z-index: 499;
+}
+a.block-demo-backlink:hover {
+  text-decoration: underline;
+}
diff --git a/modules/block/block.admin.inc b/modules/block/block.admin.inc
index c91cc80..d13c76c 100644
--- a/modules/block/block.admin.inc
+++ b/modules/block/block.admin.inc
@@ -9,7 +9,7 @@
  * Menu callback for admin/structure/block/demo.
  */
 function block_admin_demo($theme = NULL) {
-  drupal_add_css(drupal_get_path('module', 'block') . '/block.css');
+  drupal_add_css(drupal_get_path('module', 'block') . '/block.admin.css');
   return '';
 }
 
@@ -77,7 +77,7 @@ function block_admin_display_prepare_blocks($theme) {
  */
 function block_admin_display_form($form, &$form_state, $blocks, $theme, $block_regions = NULL) {
 
-  drupal_add_css(drupal_get_path('module', 'block') . '/block.css');
+  drupal_add_css(drupal_get_path('module', 'block') . '/block.admin.css');
 
   // Get a list of block regions if one was not provided.
   if (!isset($block_regions)) {
diff --git a/modules/block/block.css b/modules/block/block.css
deleted file mode 100644
index 214c8a2..0000000
--- a/modules/block/block.css
+++ /dev/null
@@ -1,36 +0,0 @@
-
-#blocks tr.region-title td {
-  font-weight: bold;
-}
-#blocks tr.region-message {
-  font-weight: normal;
-  color: #999;
-}
-#blocks tr.region-populated {
-  display: none;
-}
-.block-region {
-  background-color: #ff6;
-  margin-top: 4px;
-  margin-bottom: 4px;
-  padding: 3px;
-}
-a.block-demo-backlink,
-a.block-demo-backlink:link,
-a.block-demo-backlink:visited {
-  background-color: #B4D7F0;
-  -moz-border-radius: 0 0 10px 10px;
-  -webkit-border-radius: 0 0 10px 10px;
-  border-radius: 0 0 10px 10px;
-  color: #000;
-  font-family: "Lucida Grande", Verdana, sans-serif;
-  font-size: small;
-  line-height: 20px;
-  left: 20px; /*LTR*/
-  padding: 5px 10px;
-  position: fixed;
-  z-index: 499;
-}
-a.block-demo-backlink:hover {
-  text-decoration: underline;
-}
-- 
1.7.3.4

