From 433a7ccdfdf0710abd34877e4977d8d44ad368a6 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sat, 8 Dec 2012 18:18:38 -0800 Subject: [PATCH] Fix resource path in CSS. Summary: Accidental overright of the URL. Test Plan: Reload apps page. Reviewers: btrahan, epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4133 --- .../base/phabricator-application-launch-view.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webroot/rsrc/css/application/base/phabricator-application-launch-view.css b/webroot/rsrc/css/application/base/phabricator-application-launch-view.css index 6cd4f66a2e..bf55270f3a 100644 --- a/webroot/rsrc/css/application/base/phabricator-application-launch-view.css +++ b/webroot/rsrc/css/application/base/phabricator-application-launch-view.css @@ -139,13 +139,13 @@ a.phabricator-application-launch-container:active { } .phabricator-application-status-type-needs { - background-image: url(/res/2c1e193b/rsrc/image/appstatus_needs.png); + background-image: url(/rsrc/image/appstatus_needs.png); } .phabricator-application-status-type-empty { - background-image: url(/res/2f8102e0/rsrc/image/appstatus_empty.png); + background-image: url(/rsrc/image/appstatus_empty.png); } .phabricator-application-status-type-info { - background-image: url(/res/407de6da/rsrc/image/appstatus_info.png); + background-image: url(/rsrc/image/appstatus_info.png); }