civicspace/admin/visual.css has two image paths wrong, here's a patch:

--- drupal/themes/civicspace/admin/visual.css.dist      2005-07-16 16:43:37.000000000 +0300
+++ drupal/themes/civicspace/admin/visual.css   2005-07-16 16:45:59.000000000 +0300
@@ -644,7 +644,7 @@
   padding:                    4px 7px;
   text-decoration:            none;
   margin-bottom:              4px;
-  background:                 url(../global/images/bg_local_tasks_secondary.png) repeat-x 50% 0px;
+  background:                 url(../images/bg_local_tasks_secondary.png) repeat-x 50% 0px;
 }
 ul.secondary a.active, ul.secondary a.active:hover {
   color:                      #333;
@@ -778,7 +778,7 @@
  */

 .messages .status {
-  background:                 url(../global/images/bg_status.png) repeat;
+  background:                 url(../images/bg_status.png) repeat;
   margin:                     0.8em 0;
   padding:                    12px;
   font-weight:                bold;

Comments

mr700’s picture

PS: I use this script locates them easy (I first saw their absense in the logs):
CHKCSS.sh

#!/bin/bash

echo "Searching for missing images/files..."
for CSS in *.css; do
    for PIC in $(cat "$CSS" \
        | egrep 'url\([^)]+\)' \
        | sed -r 's/.*url\([[:space:]]*(.*?)[[:space:]]*\).*/\1/g'
        ); do
        # remove ""s around the filename
        if [ "${PIC:0:1}" == '"' ] && [ "${PIC:${#PIC}-1:1}" == '"' ]; then
                PIC="${PIC:1:${#PIC}-2}"
        fi
        # remove ''s around the filename
        if [ "${PIC:0:1}" == "'" ] && [ "${PIC:${#PIC}-1:1}" == "'" ]; then
                PIC="${PIC:1:${#PIC}-2}"
        fi
        if [ ! -f "$PIC" ]; then
            echo -e "\tERR $CSS -\t$PIC"
            ls -al "$PIC"
        else
            echo -e "\tOK  $CSS -\t$PIC"
        fi
    done
done
echo "Done"
traemccombs’s picture

Assigned: Unassigned » traemccombs
traemccombs’s picture

Status: Active » Closed (fixed)

I can confirm these have been fixed and the paths are correct.

Closing.

Trae